使用 Handler.post() 更新 ListView

Use Handler.post() to update ListView

我有一个 listView 我用 ArrayAdapter.addAll 加载 data.I 想在 once.But 使用 ArrayAdapter.addAll 后使用 ListView.getChild(0) NullPointerException 被抛出。

我尝试使用 Handler.post.The 应用程序将 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.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)

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

更简洁的方法是在 Adapter class 的 getView() 方法中添加此代码并检查所请求视图的索引。如果它的 0 然后执行你的代码。这样您就可以在正确的时间正确的地点做事。