将旋转轮定位在自定义进度对话框中

时间:2011-10-12 10:16:20

标签: android progressdialog

我正在使用here给出的自定义进度对话框,其格式如下所示。旋转轮居中,我找不到如何设置自定义位置。

有人可以帮忙吗?

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="NewDialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowTitleStyle">@null</item>
        <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
        <item name="android:background">@android:color/transparent</item>
    </style>    
</resources>

1 个答案:

答案 0 :(得分:0)

在布局中使用 ProgressBar 。您可以将它放在屏幕上任意位置。

<ProgressBar android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="?android:attr/progressBarStyle"              
                android:id="@+id/showProgress"/>