0

在网络调用时,我在我的应用程序中显示进度对话框。在当前屏幕上,我有三个按钮。如何在显示进度对话框时启用这些按钮?有没有办法做到这一点?

显示进度对话框时是否可以启用按钮?

4

1 回答 1

0

您可以将自定义对话框与以下 xml 一起使用:

<?xml version="1.0" encoding="utf-8"?>
<Layout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1" >
        <ProgressBar
            android:id="@+id/progressbar"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
           />
           <Button  android:layout_height="match_parent"  android:layout_width="wrap_content"/>
    </LinearLayout>

</LinearLayout>

这只是一个示例 您可以有一个进度条和一个可见的按钮。

于 2013-12-06T10:20:04.677 回答