在Android中,可以通過以下幾種方式刷新ListView的數據:
notifyDataSetChanged()
方法:這是最簡單的方法,在數據源發生變化后,調用ListView的notifyDataSetChanged()
方法即可刷新數據。例如:listAdapter.notifyDataSetChanged();
notifyDataSetInvalidated()
方法:當數據源發生較大的變化時,可以使用notifyDataSetInvalidated()
方法來刷新數據。這個方法會清除ListView中的所有緩存,并重新繪制列表。例如:listAdapter.notifyDataSetInvalidated();
listView.setAdapter(newListAdapter);
notifyDataSetChanged()
方法刷新數據。例如:<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
SwipeRefreshLayout swipeRefreshLayout = findViewById(R.id.swipeRefreshLayout);
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
// 更新數據源
// 例如:dataList.clear(); dataList.add(...);
// 刷新數據
listAdapter.notifyDataSetChanged();
// 停止刷新動畫
swipeRefreshLayout.setRefreshing(false);
}
});