高分辨率的设备就放在hdip下面,中等分辨率的就放在mdip下面。
2、圆形进度条
这以ImageView来实现播放动画,代码如下:
res/anim/anim.xml
<?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> <item android:drawable="@drawable/c1" android:duration="100"/> <item android:drawable="@drawable/c2" android:duration="100"/> <item android:drawable="@drawable/c3" android:duration="100"/> <item android:drawable="@drawable/c4" android:duration="100"/> <item android:drawable="@drawable/c5" android:duration="100"/> <item android:drawable="@drawable/c6" android:duration="100"/> <item android:drawable="@drawable/c7" android:duration="100"/> <item android:drawable="@drawable/c8" android:duration="100"/> </animation-list>
ImageView android:id="@+id/progress2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@anim/anim" />
ImageView mProgress2 ; AnimationDrawable animationDrawable=(AnimationDrawable) mProgress2.getBackground(); animationDrawable.start();