ANR Warning,RemoteViews can only be used once ,if not 问题

转载请注明出处,谢谢!

今天做android开发,出现报错,找了半天终于知道哪里错了

ANR Warning,RemoteViews can only be used once ,if not ,it may cause ANR in hosts such as Laucher,SystemUI. keys for search

出错原因是

MainActivity的onCreate方法中的

setContentView(R.layout.activity_main3);方法的位置写的不对

经过我的测试发现,这个方法的调用必须写在控件的findviewbyId之前,不然会上面的错,具体原理我还不知道。

所以大家尽量把setContentView(R.layout.activity_main3);写在onCreate()方法的第一句,避免这样的错误发生

你可能感兴趣的:(ANR Warning,RemoteViews can only be used once ,if not 问题)