亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

怎樣在AlertDialog中顯示進度條

小樊
85
2024-09-04 16:56:34
欄目: 編程語言

在Android中,要在AlertDialog中顯示進度條,可以使用ProgressBar組件和AlertDialog.Builder

  1. 首先,在XML布局文件中創建一個自定義的對話框布局。例如,創建一個名為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>
  1. 接下來,在你的Activity或Fragment中創建并顯示一個包含進度條的AlertDialog。
// 使用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的進度值來使用確定的進度條。

0
洱源县| 屏东市| 牡丹江市| 姜堰市| 和林格尔县| 沙坪坝区| 东源县| 襄汾县| 麻栗坡县| 平远县| 兴隆县| 普格县| 梅河口市| 西昌市| 玉门市| 玉环县| 蒲江县| 西安市| 明水县| 克山县| 拜泉县| 苏尼特右旗| 蚌埠市| 永吉县| 永清县| 新晃| 东方市| 拉萨市| 桂林市| 马鞍山市| 丰镇市| 永平县| 永新县| 安国市| 蒙自县| 东平县| 静宁县| 望江县| 沙坪坝区| 石柱| 南丰县|