其他分享
首页 > 其他分享> > android – 九个补丁图像在TextView周围绘制1个像素边框

android – 九个补丁图像在TextView周围绘制1个像素边框

作者:互联网

< - 这是3x3图像.抱歉. 我使用以下3×3图像. 因此,当我用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补丁图片,用于测试目的.

解决方法:

尝试在其周围添加1px空白区域.见附图.

标签:android,nine-patch
来源: https://codeday.me/bug/20190626/1289382.html