在Android中使用xml定义(drawable)创建一个矩形形状的视图

时间:2015-06-04 05:13:57

标签: android xml shape

https://drive.google.com/file/d/0B0vP0ppNf8G3MFdBRmF5WkJEZ3c/view?usp=sharing

我想创建如上所述的形状。 你如何使用xml创建它?

1 个答案:

答案 0 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:right="-100dp">
        <rotate
            android:fromDegrees="-5"
            android:pivotX="0%"
            android:pivotY="100%">
            <shape android:shape="rectangle">
                <solid android:color="#f9c" />
            </shape>
        </rotate>
    </item>
</layer-list>