使用Handler.post()更新ListView

时间:2016-07-20 06:23:39

标签: android listview android-arrayadapter handler

我有listView并且我使用ArrayAdapter.addAll来加载数据。我希望在使用ListView.getChild(0)后立即使用ArrayAdapter.addAll。但是NullPointerException是抛出。

我尝试使用Handler.post将ListView.getChild(0)添加到MessageQueue。应用程序有时可以正常工作,但有时也会抛出NullPointerException

我的代码:

mRightAdapter.addAll(mRightDisplayDatas); 
mHandler.post(new Runnable() {
    @Override public void run() { 
    ((TextView) mLeftListView.getChildAt(0)).setCompoundDrawablesWithIntrinsicBounds(null, null, getResources().getDrawable(R.mipmap.ic_right, mContext.getTheme()), null);
   }
});

日志:

FATAL EXCEPTION: main
                                                                    Process: com.buledon.volunteerapp, PID: 4787
                                                                    java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setCompoundDrawablesWithIntrinsicBounds(android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable)' on a null object reference
                                                                        at com.buledon.volunteerapp.widget.CitySelectView$3.run(CitySelectView.java:130)
                                                                        at android.os.Handler.handleCallback(Handler.java:739)
                                                                        at android.os.Handler.dispatchMessage(Handler.java:95)
                                                                        at android.os.Looper.loop(Looper.java:135)
                                                                        at android.app.ActivityThread.main(ActivityThread.java:5669)
                                                                        at java.lang.reflect.Method.invoke(Native Method)
                                                                        at java.lang.reflect.Method.invoke(Method.java:372)
                                                                        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:960)
                                                                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)

1 个答案:

答案 0 :(得分:2)

也可以使用mRightAdapter.notifyDataSetChanged。添加的值也不会立即反映在listview中。使用mHandler.postDelayed并添加几毫秒的延迟。您可以检查getChild(0)是否为空。如果它的null再次发布处理程序。

更简洁的方法是在Adapter类的getView()方法中添加此代码,并检查所请求视图的索引。如果为0则执行代码。通过这种方式,您可以在正确的时间和地点完成您的工作。