标签:code 程序 nbsp androi ted try 系统 子线程 isp
1 method1: try { 2 Thread.sleep(3000); 3 } catch (InterruptedException e) { 4 e.printStackTrace(); 5 } 6 method2: SystemClock.sleep(3000);
1:KeyDispatchTimeout(5 seconds) --主要类型
(Activity内主线程5s内无响应) 按键或触摸事件在特定时间内无响应
2:BroadcastTimeout(10 seconds)
(BroadcastReceiver 10s) BroadcastReceiver在特定时间内无法处理完成
3:ServiceTimeout(20 seconds) --小概率类型
(Service 20s) Service在特定的时间内无法处理完成
Service运行在主线程中,不可以做耗时操作,会导致ANR(20s),如果需要在服务中做耗时操作,需要开子线程
标签:code 程序 nbsp androi ted try 系统 子线程 isp
原文地址:http://www.cnblogs.com/mycharming/p/6883926.html