如何创建 android linearlayout cornar 废话颜色?

how to create android linearlayout cornar crap color?

我是新手android开发者..

我想做 android linearlayout cornar 废话颜色。我试过。我没有得到我看到的角落抓斗。下面是我的丝绸给我的线性布局。

线性布局

<LinearLayout
    android:orientation="horizontal"

    android:background="@color/gnt_ad_green"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"

    android:weightSum="4.0">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1.0"
        android:text="Intergiration"
        android:drawableLeft="@drawable/ic_filter"
        android:drawablePadding="10.0dip"
        android:gravity="center|left"
        android:padding="15.0dip"
        android:textColor="@color/colorWhite"
        android:textSize="16.0sp" />

    <LinearLayout
        android:background="@color/colorBackgroundLight"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="3.0">
        <TextView android:textSize="12.0sp"
            android:textColor="@color/colorPrimary"
            android:gravity="center"
            android:text="sdfsdf gd"

            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />
    </LinearLayout>
</LinearLayout>

我想要这样的设计 simple image

也许您必须为此使用图像(添加包含这样形状的图像)并将该图像设置为线性布局的背景。

你可以试试这个

rect_background.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item>
        <shape android:shape="rectangle" >
            <solid android:color="#F00" />
        </shape>
    </item>
    <item>
        <rotate
            android:fromDegrees="110"
            android:pivotX="90%"
            android:pivotY="90%"
            >
            <shape android:shape="rectangle" >
                <solid android:color="#FFF" />
            </shape>
        </rotate>
    </item>

</layer-list>

layout.xml

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

    <View
        android:layout_width="200dp"
        android:layout_height="50dp"
        android:background="@drawable/rect_background"/>

</LinearLayout>