当前位置: 代码迷 >> Android >> Android 关键字 搜集
  详细解决方案

Android 关键字 搜集

热度:400   发布时间:2016-04-28 03:21:02.0
Android 关键字 收集

1.生命周期

? OnCreate->OnStart->OnStop->OnPause->OnResuse->OnDestory

?

2.Service

? IntentService; Android的主进程尽可能的保留Service;避免内存的消耗

?

3.存储

? Sqlite,ContentProvider,SharePreferences,网络(3G/wifi...)

?

4.ANS

?ApplicationNotRespoding,应用层5秒,BrocadcastReceiver在10秒无反应,主进程会予以提示

?

?5.内存限制大小

ActivityManager activityManager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);activityManager.getMemoryClass();

?

?

  相关解决方案