0

我想创建一个自定义搜索栏。连同其他资源,我遵循了这两个示例:

http://developer-dot-android.blogspot.ro/2012/03/custom-seekbar-tutorial.html

http://www.mokasocial.com/2011/02/create-a-custom-styled-ui-slider-seekbar-in-android/

http://code.google.com/p/android-apktool/wiki/9PatchImages

我尝试过的所有内容都在这一行崩溃:

   ........
  <nine-patch
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:dither="true"
    android:src="@drawable/whitepatch">
  </nine-patch>

和:

Caused by: org.xmlpull.v1.XmlPullParserException: Binary XML file line #5: <nine-patch> requires a valid 9-patch source image
04-16 15:46:45.242: E/AndroidRuntime(20508):    at android.graphics.drawable.NinePatchDrawable.inflate(NinePatchDrawable.java:320)
04-16 15:46:45.242: E/AndroidRuntime(20508):    at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:881)
04-16 15:46:45.242: E/AndroidRuntime(20508):    at android.graphics.drawable.LayerDrawable.inflate(LayerDrawable.java:165)
.....

我尝试使用draw9patch.bat来自 sdk 的工具生成我自己的 9-patch 图像,如此处所述。(没有任何其他解决方法,因为我不知道如何,只需导入.png然后将其另存为.9.png)。

我尝试将whitepatch.9.png第一个教程中使用的复制/粘贴到我的项目中。结果相同。我真的不知道该怎么办。请帮我!

在此处输入图像描述

4

1 回答 1

0

九个补丁图像是扩展名为 9.png 的 PNG 图像。九个补丁图像包含有关可缩放区域(顶部和左侧)和内容区域(右侧和底部)的元信息。您必须通过在顶部和左侧标记 1 个像素(黑色)来提及强制可缩放区域,不包括缩放时扭曲的角,否则 Android 不会将其识别为九补丁图像。

下面的链接会更有帮助

http://radleymarx.com/blog/simple-guide-to-9-patch/

http://developer.android.com/guide/topics/graphics/2d-graphics.html#nine-patch

https://github.com/chrislondon/9-Patch-Image-for-Websites/wiki/What-Are-9-Patch-Images

http://www.androiddom.com/2011/05/android-9-patch-image-tutorial.html

于 2013-04-16T13:34:16.403 回答