Android 9补丁图像仅适用于单色方形图像?

时间:2014-05-07 04:57:12

标签: android image button nine-patch

Android 9补丁图像仅适用于单色方形图像。我有一个圆形的按钮,Button image

如何为此图片使用9个补丁?

1 个答案:

答案 0 :(得分:2)

您需要在drawable文件夹中创建一个类似于:

的形状drawable
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
    <gradient android:startColor="#FFFF0000" android:endColor="#80FF00FF"
        android:angle="270"/>
</shape>

修改您想要的颜色代码。

(对于这个例子,我将drawable保存为circle.xml,它将有一个渐变填充)

然后在您的布局中,您需要定义一个视图并将形状设置为背景:

<View android:layout_width="50dp"
    android:layout_height="50dp"
    android:background="@drawable/circle"/>

视图定义了形状的大小和尺寸。

编辑 - 代码结果的屏幕截图

Graphical View

Code Image