同时显示ProgressDialog启用应用程序功能

时间:2013-04-16 10:14:55

标签: android

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

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

1 个答案:

答案 0 :(得分: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>

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