温馨提示×

android自定义控件使用declare-styleable进行配置属性

小云
100
2023-09-23 09:10:44
栏目: 编程语言

在Android中,可以使用declare-styleable来定义和配置自定义控件的属性。下面是一个简单的示例:

首先,在res/values文件夹下创建attrs.xml文件,用于定义自定义属性:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CustomView">
<attr name="customText" format="string" />
<attr name="customColor" format="color" />
<attr name="customSize" format="dimension" />
</declare-styleable>
</resources>

然后,在布局文件中使用自定义控件,并配置相关属性:

<com.example.CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:customText="Hello"
app:customColor="@color/red"
app:customSize="16sp" />

接下来,在自定义控件的类中获取和使用这些属性:

public class CustomView extends View {
private String customText;
private int customColor;
private float customSize;
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CustomView);
customText = typedArray.getString(R.styleable.CustomView_customText);
customColor = typedArray.getColor(R.styleable.CustomView_customColor, Color.BLACK);
customSize = typedArray.getDimension(R.styleable.CustomView_customSize, 12);
typedArray.recycle();
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// 使用获取到的属性进行绘制
Paint paint = new Paint();
paint.setColor(customColor);
paint.setTextSize(customSize);
canvas.drawText(customText, 0, getHeight() / 2, paint);
}
}

在这个示例中,我们定义了三个自定义属性customText、customColor和customSize,并在布局文件中对其进行了配置。然后在CustomView类中使用TypedArray来获取这些属性的值,并在onDraw方法中使用这些值进行绘制操作。

0