Android设置一端折角

时间:2014-08-13 07:15:47

标签: android android-layout

我采用了这样的布局,设计了背景图像 enter image description here

我需要一个建议,这是使用背景图像或一端XML圆角的最佳方法

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:layout_weight="1"
    android:background="@drawable/test_back"
    android:padding="10dp">

   <TextView
       android:id="@+id/textView2"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="TextView" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

这里我附上了一些链接,请仔细阅读,如果您有任何疑问请告诉我。

如果您想将圆角添加到linear layout, relative layout, button etc.等任何类型的Android视图中,请按照我附上的链接进行操作。

将此drawable as background保留为您要keep rounded corner border的视图。让我们保留一个LinearLayout。

Rounded Corner Reference1

Rounded Corner Reference2

Rounded Corner Reference3