中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
永昌县| 东乡县| 利津县| 巴南区| 巴塘县| 繁昌县| 财经| 澜沧| 利津县| 泽普县| 四子王旗| 韶关市| 台州市| 革吉县| 雷波县| 遵化市| 罗源县| 伊川县| 扶沟县| 皋兰县| 阿荣旗| 如东县| 嘉荫县| 凤台县| 垣曲县| 台北县| 皮山县| 门头沟区| 丰原市| 怀安县| 花莲县| 会宁县| 收藏| 淮阳县| 闸北区| 绥德县| 南阳市| 禄劝| 泉州市| 札达县| 高阳县|