I create a thread to update my data and try to do notifyDataSetChanged at my ListView.
notifyDataSetChanged
private class ReceiverThread extends Thread { @Override
You can write in this way also.
new Handler().postDelayed(new Runnable() { public void run() { test(); } }, 100); private void test() { this.notifyDataSetChanged(); }
just test it.