如何在android

时间:2015-06-18 06:09:11

标签: java android android-layout

我需要一个矩形,其一边应该像所示的图像一样交叉或切割。

I need the same result like below image

到目前为止我尝试过:

<layer-list xmlns:android="schemas.android.com/apk/res/android">; 
    <!-- This is the line --> 
    <item android:bottom="2dp" > 
       <shape xmlns:android="schemas.android.com/apk/res/android"; android:shape="rectangle" > 
            <solid android:color="#ffffff" /> 
            <corners android:bottomLeftRadius="8dp" android:bottomRightRadius="8dp" android:topLeftRadius="8dp" android:topRightRadius="8dp" />
        </shape> 
     </item> 
  </layer-list> 
它只是在拐角处...我只需要一个角落,如图所示切割

1 个答案:

答案 0 :(得分:-1)

只需为背景绘制两个矩形和一个三角形。enter image description here

真的那么简单。