使用 Android 中的 xml 定义(可绘制)制作矩形视图

Make a view with rectangle shape using xml definitions (drawable) in Android

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

我想像上面那样创建形状。 如何使用 xml 创建此内容?

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