您好,登錄后才能下訂單哦!
在Android開發中,ProgressBar和ListView可以結合使用,以展示加載數據的進度。下面是一個簡單的示例:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/progressBar" />
</RelativeLayout>
ProgressBar progressBar = findViewById(R.id.progressBar);
ListView listView = findViewById(R.id.listView);
progressBar.setVisibility(View.VISIBLE);
// 加載數據
new Thread(new Runnable() {
@Override
public void run() {
// 模擬加載數據
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
runOnUiThread(new Runnable() {
@Override
public void run() {
// 更新UI,隱藏ProgressBar
progressBar.setVisibility(View.GONE);
listView.setAdapter(new ArrayAdapter<>(MainActivity.this, android.R.layout.simple_list_item_1, new String[]{"Item 1", "Item 2", "Item 3"}));
}
});
}
}).start();
在上面的示例中,ProgressBar在加載數據時顯示,加載完成后隱藏,ListView展示加載完成的數據。這樣可以讓用戶清晰地看到數據加載的進度,提升用戶體驗。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。