动态设置9patch背景

时间:2012-09-03 07:51:37

标签: android button background nine-patch

有没有人试图动态设置9Patch背景按钮?如果重要,则按钮的宽度和高度设置为wrap_content

如果是,您如何解决“黑线”问题?

由于

1 个答案:

答案 0 :(得分:5)

如果您看到在9补丁图像上绘制的黑点,那是因为您尚未预编译图像。

要在运行时将9补丁图像设置为背景,必须事先编译它们,当边框被移除并编码为PNG块时。

您可以通过将.9.png图像插入应用程序的res/drawable文件夹,编译它并生成.apk(在Eclipse上,右键单击project root > Android Tools > Export Unsigned Application Package)来实现。然后解压缩.apk,你将获得带有9补丁编译数据的.9.png图像。

使用预编译的9补丁图像,执行类似的操作来加载图像:

private Drawable loadNinePatch(String path, Context context) {
        Bitmap bitmap = BitmapFactory.decodeFile(path);
        byte[] chunk = bitmap.getNinePatchChunk();
        if(NinePatch.isNinePatchChunk(chunk)) {
            return new NinePatchDrawable(context.getResources(), bitmap, chunk, new Rect(), null);
        } else return new BitmapDrawable(bitmap);
}

然后将其设置为按钮的背景:

button.setBackgroundDrawable(loadNinePatch("/data/data/your.app/files/button_background.9.png", context));