8

我想在我的视图上显示一个模态进度“轮”覆盖。

ProgressDialog 接近,但我不想要对话框背景或边框。

我尝试设置对话框窗口的背景可绘制:

this.progressDialog = new ProgressDialog(Main.this);

this.progressDialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
this.progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
this.progressDialog.setCancelable(false);
this.progressDialog.setIndeterminate(true);

this.progressDialog.show();

但无济于事(即看起来仍然与没有 ...setBackgroundDrawable 代码相同)。

4

5 回答 5

13

不确定是否有更好的方法,但您可以通过使用ProgressBar并将其设置为相互确定的方式自行获得微调器。如果您使用的是AbsoluteLayout,您可以将其放在其他视图上。此布局应使用 XML 演示此方法:

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout android:id="@+id/AbsoluteLayout"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <ProgressBar android:id="@+id/ProgressBar"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:indeterminate="true" android:indeterminateOnly="true"
        android:isScrollContainer="true" android:layout_x="100dip"
        android:layout_y="10dip" android:soundEffectsEnabled="true"></ProgressBar>
    <TextView android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="@string/hello"
        android:layout_gravity="center_horizontal" android:gravity="center_horizontal"
        android:layout_y="25dip" />
</AbsoluteLayout>
于 2010-03-09T14:48:15.647 回答
11

为了在深色背景上创建全屏进度,我使用 FrameLayout 并在需要时将 RelativeLayout 的可见性设置为 VISIBLE,或者在完成长时间操作时将其设置为 GONE:

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

    <ScrollView 
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

        <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:orientation="vertical"
        android:padding="3dip" >

            <!-- Your regular UI here -->

    </LinearLayout>
   </ScrollView>

   <RelativeLayout
       android:id="@+id/relativelayout_progress"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:visibility="gone"
       android:background="#aa000022" >

       <ProgressBar 
           android:layout_centerInParent="true"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:indeterminateOnly="true" />

    </RelativeLayout>
</FrameLayout>
于 2013-06-23T20:47:01.010 回答
3

Klarth 的解决方案对我有用,谢谢!

在我的例子中,我使用 layout_gravity 来放置 progress_indicator 的中心,而不是使用显式坐标。

    <ProgressBar android:id="@+id/pb"
        android:layout_width="40dp" 
        android:layout_height="40dp"
        android:indeterminate="true" 
        android:indeterminateOnly="true"
        android:isScrollContainer="true" 
        android:layout_gravity="center_vertical|center_horizontal"
        android:soundEffectsEnabled="false"
        />
于 2011-03-24T23:49:19.957 回答
1

你检查过这个教程吗?在页面的末尾,它讨论了如何创建自定义对话框,这可能会帮助您放置一个带有自己背景的微调器进度对话框。

于 2010-03-09T13:55:39.713 回答
0

您只需添加.setCanceledOnTouchOutside(false);到您的 ProgressDialog。

 ProgressDialog dialog = new ProgressDialog(getApplicationContext());
 dialog.setMessage("your message...");
 dialog.setIndeterminate(true);
 dialog.setCanceledOnTouchOutside(false);
 dialog.show();
于 2020-08-23T14:22:04.070 回答