标签: android
ListView lv = (ListView) findViewById(R.id.list); lv.refreshDrawableState();
无效。
答案 0 :(得分:1)
清除你在适配器中传递的list / string []等中的所有数据,并通知你的适配器类对象的调用notifyDataSetChange()。
youlist.clear(); yourAdapter.notifyDataSetChanged();