<--这是一个 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 补丁图像有什么问题吗?
<-- 9 个补丁图像供您测试。