您的位置:首页 > 移动开发 > Android开发

Android 利用ClipDrawable 自定义进度条

2017-12-28 10:31 225 查看
一,整体布局

<?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">

<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="12dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="10dp"
android:src="@drawable/drawable_inset"/>

</LinearLayout>


二,drawable/drawable_inset 对应资源

<?xml version="1.0" encoding="utf-8"?>
<clip xmlns:android="http://schemas.android.com/apk/res/android"
android:clipOrientation="horizontal"
android:drawable="@drawable/progress_bar"
android:gravity="left">
</clip >


三,@drawable/progress_bar 对应shape

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/button_normal_color" />
<corners android:radius="8dp"/>
</shape>


四,对应java代码

public class Main2Activity extends Activity {

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.linear_test);
ImageView imageView = findViewById(R.id.image);
Drawable drawable = imageView.getDrawable();

ValueAnimator valueAnimator  =  ValueAnimator.ofInt(1,10000);
valueAnimator.setDuration(3000);
valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
drawable.setLevel((int)animation.getAnimatedValue());
}
});
valueAnimator.start();
}
}


五,效果图





内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android