3

我只是想创建一个旋转的进度对话框。没有文字,没有边框,没有背景。只是一个旋转的通知,轻轻地位于内容顶部的屏幕中心。

在创建此自定义对话框时,我看到了两个不同的 Stack Overflow 问题。

他们都使用这种样式:

   <style name="NewDialog" parent="@android:style/Theme.Dialog">

    <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:colorBackground">#ffffff</item>
    <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
    <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
    <item name="android:backgroundDimEnabled">true</item>
    <item name="android:width">600dip</item>
    <item name="android:height">100dip</item>
     <item name="android:textColor">#FF0000</item>

</style>

但是在 Java 方面,一个扩展了 Dialog 并包含了很多自定义内容,另一个就是这样:

public class MyProgressDialog extends ProgressDialog {

    public MyProgressDialog(Context context) {
        super(context, R.style.NewDialog);

    }

}

在第一个(扩展对话框)上,我得到一个空白。没有对话。没有。在上面的代码示例中,我看到一个缩小的小对话框在一个偏离中心的黑盒子内旋转。

哪种方法更正确,我可以提供有关如何实现此方法的示例吗?

另外,如何使该对话框透明/无边框?

4

3 回答 3

12

现在执行此操作的“正确方法”是扩展 DialogFragment http://developer.android.com/reference/android/app/DialogFragment.html

如果您没有使用兼容性库,那么您就不是在当前的 Android 世界中进行编程。

如果你想扩展 Dialog,那么我这里有一些示例代码:https ://github.com/tom-dignan/nifty/tree/master/src/com/tomdignan/nifty/dialogs在这段代码中,我实现了一种通过扩展 Dialog 来实现“进度对话框”。我扩展了 Dialog 因为我想要完全控制并且希望我的 Dialog 是全屏的。

不过,我建议阅读上面的 DialogFragment 文档并使用它。

所以说真的,这里没有对错之分。扩展这三个类中的任何一个都可以,但最简洁和最新的方法是 DialogFragment 方法。

于 2012-10-18T22:57:00.790 回答
5

一种方法是使用自定义对话框,请求功能 No_Title 并将背景可绘制资源设置为透明。

您可以使用以下代码,我刚刚在 Android 4.0.3 ICS 上编写并测试了它。

布局文件夹中的 xml 布局是 dialog_progress.xml

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

    <ProgressBar
        android:id="@+id/dialogProgressBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"/>

</LinearLayout>

显示对话框并使其透明的java代码如下。

Dialog dialog = new Dialog (this);

dialog.requestWindowFeature (Window.FEATURE_NO_TITLE);
dialog.setContentView (R.layout.dialog_progress);
dialog.getWindow ().setBackgroundDrawableResource (android.R.color.transparent);
dialog.show ();
于 2012-10-19T11:29:21.527 回答
2

通过在 ImageView 上使用逐帧动画而不是制作自定义进度对话框,可以很容易地实现类似的效果。为此,您只需要一系列图像(可以从任何 gif 中提取)。然后您可以在其上应用逐帧动画。它会做你想要的。

我用下面的代码做了类似的事情-:

// 逐帧动画的 XML

<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false" >

<item
    android:drawable="@drawable/frame00"
    android:duration="150"/>
<item
    android:drawable="@drawable/frame01"
    android:duration="150"/>
<item
    android:drawable="@drawable/frame02"
    android:duration="150"/>
<item
    android:drawable="@drawable/frame03"
    android:duration="150"/>
<item
    android:drawable="@drawable/frame04"
    android:duration="150"/>
<item
    android:drawable="@drawable/frame05"
    android:duration="150"/>
<item
    android:drawable="@drawable/frame06"
    android:duration="150"/>

用于启动动画的 Java 代码:-

ImageView iv = (ImageView)findViewById(R.id.progressDialog);
iv.setBackgroundResource(R.anim.progress_dialog_icon_drawable_animation);
AnimationDrawable aniFrame = (AnimationDrawable) iv.getBackground();
aniFrame = (AnimationDrawable) iv.getBackground();
aniFrame.start();

我从上面的代码中实现了这一点

希望能帮助到你 !

于 2012-10-19T14:04:41.577 回答