自定义循环ProgressBar,图像位于中心

时间:2015-03-24 09:54:08

标签: android progressdialog

对于我的Android应用程序,我想在circular progress bar中放置一个图像。 预期设计:

  

http://hpics.li/cd6acba

关于如何做到这一点的任何想法?

2 个答案:

答案 0 :(得分:7)

  1. 创建动画xml:

    <?xml version="1.0" encoding="utf-8"?>
    <animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
        android:drawable="@drawable/progress_bar"
        android:pivotX="50%"
        android:pivotY="50%" />
    
  2. 将以下内容设置为布局xml中的进度条视图:

    android:indeterminateDrawable="@animator/progressbar_animation"
    

答案 1 :(得分:4)

您可以采用普通的布局文件: loader.xml

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

    <ProgressBar
        android:id="@+id/progressBar1"
        style="@android:style/Widget.ProgressBar.Small.Inverse"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:indeterminate="true"
        android:layout_centerInParent="true"
        android:padding="30dp"
        android:clickable="false"/>

    <ImageView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@drawable/img"
        android:clickable="false"/>

</RelativeLayout>

根据您的设计做一点调整。

现在使用此布局作为可绘制的进度对话框。