您好,登錄后才能下訂單哦!
在Android開發(fā)中,ProgressBar和ListView可以結(jié)合使用,以展示加載數(shù)據(jù)的進(jìn)度。下面是一個簡單的示例:
<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);
// 加載數(shù)據(jù)
new Thread(new Runnable() {
@Override
public void run() {
// 模擬加載數(shù)據(jù)
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在加載數(shù)據(jù)時顯示,加載完成后隱藏,ListView展示加載完成的數(shù)據(jù)。這樣可以讓用戶清晰地看到數(shù)據(jù)加載的進(jìn)度,提升用戶體驗。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。