91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

android自定義控件使用declare-styleable進行配置屬性

小云
106
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
门头沟区| 汉阴县| 固阳县| 满洲里市| 秭归县| 明水县| 曲阜市| 涪陵区| 封丘县| 板桥市| 三都| 崇左市| 乌拉特中旗| 安塞县| 宜阳县| 景泰县| 营口市| 禹州市| 阜南县| 莱芜市| 新余市| 开江县| 沙田区| 盐池县| 中西区| 宾川县| 弥勒县| 揭东县| 遂宁市| 高州市| 金湖县| 凌源市| 和田县| 莱芜市| 平定县| 澄城县| 晋宁县| 湘潭市| 措勤县| 临泉县| 临清市|