所以我尝试了 9-patch 图像。我从一个 PNG 文件开始,其中有一个带圆角的半透明正方形:
然后,我创建了 9-patch,如下所示(注意顶部和左侧的小点):
我认为这足以处理这个问题,但是当将此 9-patch 添加到 Eclipse 时,我得到了奇怪的结果。
结果 nbr 1
基于此 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout6"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/taxibg3"
android:orientation="vertical" >
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/login_square" />
</LinearLayout>
我得到这个结果:
结果 nbr 2
基于此 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout6"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/taxibg3"
android:orientation="vertical" >
<ImageView
android:layout_width="300dp"
android:layout_height="158dp"
android:background="@drawable/login_square" />
</LinearLayout>
我得到这个结果:
我还尝试让顶部的“9 条补丁线”和左侧更长,但这也会产生奇怪的伪影。
有任何想法吗?
- 编辑 -
我还尝试了这个 9-patch(来自 9patch-tool 的屏幕截图):
这给出了这个糟糕的结果(注意黑线):
---- 编辑 2 ----
Leonidos 告诉我 9-patch 太大了,不能缩小。所以我试了一下,结果同样糟糕。
这是 9 补丁(在此处下载文件)
这就是它的外观(注意黑线):
--- 编辑 3 ---
我查看了路径中的“显示坏补丁”,这就是显示的内容:
但这并不重要。如果我改变它,它看起来像这样:
我仍然得到黑色条纹!
哦为什么哦为什么!?=)