如何在我的
Android应用程序中创建以下图像类型的进度环.我希望在我的整个应用程序加载到设备之前显示它10秒.而且我想旋转它.像窗口设备旋转.任何帮助表示赞赏.我是Andorid的新手.
图片 :
解决方法
我得到了完美的答案.
使用此链接,我找到了圆形进度环.
然后我使用此代码:
animation.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%" />
在我的主要xml文件中.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"> <ProgressBar android:id="@+id/progressbar1" android:layout_marginTop="80dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:indeterminateDrawable="@anim/animation"/> </RelativeLayout>
最后输出是: