< - 这是一张3x3图片。遗憾。
我使用以下3x3图像。
所以,当我用 draw9patch.bat 打开,并分别在顶部和左侧添加2个像素时,我得到以下图像。
我希望如果将此图片应用到TextView
,我的整个TextView
将围绕自身设置1个像素宽的边框。
然而,我只能设法获得“半边界”。右侧和底部的边框丢失了。
<?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:gravity="center_horizontal|center_vertical"
android:orientation="vertical"
android:background="#ffffff" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:background="@drawable/border" />
</LinearLayout>
我的9补丁图像有什么问题吗?
&lt; - 9补丁图片,用于测试目的。
答案 0 :(得分:3)
尝试在其周围添加1px空白区域。见附图。
答案 1 :(得分:1)
您是否尝试添加与内容相对应的2个像素,如下所示:
答案 2 :(得分:0)
对于astroturf很抱歉,但我建议你看看我对这个问题的回答:how create Gradient like Iphone Edittext box in android
简短回答:尽量不要猜测平台。 答案稍长:你背景中的shape drawable可能会给出更好的结果。链接的答案显示了如何执行此操作。