通过扩展Shape
类来创建我自己的自定义形状集,我一直在扩展RectShape
类的标准范围(OvalShape
,Shape
等等) 。例如,我创建了一个简单的TriangleShape
类,如下所示:
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.drawable.shapes.Shape;
public class TriangleLeftShape extends Shape {
@Override
public void draw(Canvas canvas, Paint paint) {
Path path = new Path();
path.setLastPoint(0, getHeight()/2);
path.lineTo(getWidth(), getHeight());
path.lineTo(getWidth(), 0);
path.close();
canvas.drawPath(path, paint);
}
}
我想要做的是使用此类完全使用XML创建Drawable
资源。这可能吗?
我知道使用其中一种标准形状只需通过以下示例实现,其中<shape>
元素代表ShapeDrawable
:
<?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>
我无法看到的是如何在XML中将自定义Shape
类传递给以XML格式定义的ShapeDrawable
。我知道android:shape
属性只是传递一个枚举值,它只能是矩形,椭圆形,直线或环形。似乎没有XML属性来指定自定义Shape
类。
但是,ShapeDrawable
有setShape()
方法,这似乎表明我可以通过编程方式设置我的自定义Shape
类,但不能通过XML进行。
如果可能,我如何在XML中使用自定义Shape
类?我意识到我可以非常轻松地创建自定义View
来绘制我的基本形状,但使用Drawables
似乎具有能够指定颜色等的优点以及XML或样式中的其他属性/ themes。
答案 0 :(得分:1)
无法从xml引用自定义drawable,但您可以轻松创建可在布局中使用的子类。
package com.example;
import android.content.Context;
import android.graphics.Canvas;
import android.text.Layout;
import android.util.AttributeSet;
import android.view.View;
public class TextView extends android.view.TextView {
public TextView(Context context, AttributeSet attrs) {
super(context, attrs);
setBackground(new MyCustomDrawable());
}
}
并在layout.xml中使用它
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="my textview with custom drawable as background"
/>
</FrameLayout>
通过使用此技巧,您不仅可以使用自定义drawable设置背景,还可以设置复合drawable(它的类派生自TextView / Button)