程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> on estroy-Android上onDestroy方法報錯

on estroy-Android上onDestroy方法報錯

編輯:編程綜合問答
Android上onDestroy方法報錯
@Override  
protected void onDestroy() { 
    System.out.println("onDestroy AppActivity");
    Intent intent = new Intent(AppActivity.this, Alarmreceiver.class);  
    intent.setAction("arui.alarm.action");
    sendBroadcast(intent);
    super.onDestroy();
}  

    退出游戲運行報錯:Activity org.cocos2dx.cpp.AppActivity has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@41751f98 that was originally added here 網上說這是什麼日志沒dismiss我壓根就沒日志。如過onDestroy方法裡不加廣播的代碼,就沒問題

最佳回答:


換了個手機就好了,Android真的是亂七八糟

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved