android ClipDrawable 使用

ClipDrawable,可以剪切图片,常用于进度条。

xml文件中的格式:

       <?xml version="1.0" encoding="utf-8"?>
              <clip
                    xmlns:android="http://schemas.android.com/apk/res/android"
                     android:drawable="@drawable/drawable_resource"
                     android:clipOrientation=["horizontal" | "vertical"]
                     android:gravity=["top" | "bottom" | "left" | "right" | "center_vertical" |          "fill_vertical" | "center_horizontal" | "fill_horizontal" | "center" | "fill" | "clip_vertical" | "clip_horizontal"] />
          

          android:clipOrientation属性:指明了剪切的方向
          android:gravity属性:指明了剪切的开始位置。
                    例如:top,则从Drawable下部开始剪切。left,则从Drawable右部开始剪切。
                 
          使用代码:
                    ImageView imageview = (ImageView) findViewById(R.id.image);
                    ClipDrawable drawable = (ClipDrawable) imageview.getDrawable();
                    drawable.setLevel(drawable.getLevel() + 1000);
                    其中setLevel的值从0到10000。0表示100%剪切,10000表示%0剪切。

你可能感兴趣的:(android ClipDrawable 使用)