在Android中,要在AlertDialog中顯示進度條,可以使用ProgressBar
組件和AlertDialog.Builder
dialog_progress.xml
的文件,并添加以下內容:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
android:max="100"/>
</LinearLayout>
// 使用LayoutInflater實例化自定義布局
LayoutInflater inflater = getLayoutInflater();
View dialogView = inflater.inflate(R.layout.dialog_progress, null);
// 創建一個AlertDialog.Builder
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(dialogView);
// 設置標題和按鈕
builder.setTitle("正在處理")
.setCancelable(false)
.setNegativeButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 在這里處理取消操作
}
});
// 顯示AlertDialog
AlertDialog alertDialog = builder.create();
alertDialog.show();
現在,當你運行應用程序時,將顯示一個包含進度條的AlertDialog。你可以根據需要自定義布局和對話框的外觀。請注意,此示例使用了一個不確定的進度條,但你也可以通過設置android:indeterminate
屬性為false
并更新ProgressBar
的進度值來使用確定的進度條。