Android 模拟ANR
2020-04-03 本文已影响0人
QXH313
在触发ANR的地方添加下面的代码即可
try{
Thread.sleep(1000000);
}catch(InterruptedExceptione){
e.printStackTrace();
}
在触发ANR的地方添加下面的代码即可
try{
Thread.sleep(1000000);
}catch(InterruptedExceptione){
e.printStackTrace();
}