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

avatar
作者
猴君
阅读量:2

在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方法中使用这些值进行绘制操作。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!