HistoryRecord 的活动暂停超时
当我开始主要活动时,我会检查首选项是否已设置。如果没有,我将开始偏好活动。在 android 1.6 上,没问题,但从下一个版本开始,我将为 HistoryRecord 设置此超时:
*08-19 22:21:18.705: WARN/ActivityManager(55): HistoryRecord 的活动暂停超时{4508b3f0 com.cartrafficlive /.view.ShowMap} *
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.show_map);
loadPreferences();
if (depAdd.equals("") || arrAdd.equals(""))
startActivity(new Intent(this, Preferences.class));
loadMap();
}
When I start my main activity I will check if the preferences are setted. If not I will start the preferences activity. On android 1.6 all right, but from the next versions I'm taking this timeout for HistoryRecord:
*08-19 22:21:18.705: WARN/ActivityManager(55): Activity pause timeout for HistoryRecord{4508b3f0 com.cartrafficlive/.view.ShowMap}
*
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.show_map);
loadPreferences();
if (depAdd.equals("") || arrAdd.equals(""))
startActivity(new Intent(this, Preferences.class));
loadMap();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我收到此消息可能是因为我的模拟器速度太慢,并且应用程序花费了太多时间来显示活动。
Probably I’m getting this message because my emulator is too slow and the app is taking too much time to show the activity.