TextView自定义设计没有图像

时间:2014-04-07 10:24:19

标签: android textview

我正在尝试创建一个自定义文本视图,如下所示 enter image description here

但我想在不使用底部任何图像的情况下创建它。我找到了一个问题here,但它建议9Patch我不想使用。{{3}}

我们可以为此创建自定义笔触,填充但我不知道如何创建它。

我没有任何代码可以向您展示,但这并不意味着我没有尝试过任何事情。

请给我提示或参考。

谢谢...

2 个答案:

答案 0 :(得分:0)

尝试将此图像设置为textview的背景

答案 1 :(得分:0)

您需要在drawables下创建新的custom.xml文件

尝试这样的事情

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <corners android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" android:topLeftRadius="5dp" android:topRightRadius="5dp" /> <stroke android:width="4dp" android:color="@color/color_black" /> <solid android:color="@color/color_white" /> </shape>

然后将新样式应用于您的布局背景

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_gravity="center_horizontal" android:background="@drawable/custom.xml" android:orientation="vertical" >