0

ダイアログは表示できたのですが、中央揃えにできず、背景が白くありません。プログラムで ProgressDialog を中央に配置し、背景を非表示にする方法を教えてください。ありがとう^^

ProgressDialog spinning circleからアイデアを得ましたが、 この xml は使用できません。

        <ProgressBar
            android:id="@+id/progressBar"
            style="?android:attr/progressBarStyleLarge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:visibility="gone"
            android:indeterminateDrawable="@drawable/progress" >
        </ProgressBar>  

++++++++ これは onPreExecute() 内にあります:

                pDialog = new ProgressDialog(Main_Activity.this);
                pDialog.setMessage("Loading products. Please wait...");
                pDialog.setIndeterminate(false);
                pDialog.setCancelable(false);
                pDialog.setIndeterminateDrawable(getResources().getDrawable(R.drawable.progress));
                pDialog.show();

進行状況.xml

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromDegrees="0"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toDegrees="360" >

    <shape
        android:innerRadiusRatio="3"
        android:shape="ring"
        android:thicknessRatio="8"
        android:useLevel="false" >
        <size
            android:height="48dip"
            android:width="48dip" />

        <gradient
            android:centerColor="#00FFFF"
            android:centerY="0.50"
            android:endColor="#0000FF"
            android:startColor="#0000A0"
            android:type="sweep"
            android:useLevel="false" />
    </shape>

</rotate>
4

1 に答える 1

0

本当にダイアログが必要ですか? もちろん可能ですが、レイアウトにプログレスバーを追加して表示/非表示にするだけでよいでしょうか?

于 2013-06-17T09:32:59.950 に答える