自定义视图中的Android属性

5

我有一个自定义的Android视图类,其中将直接在提供给其onDraw覆盖的画布中绘制大量文本。

我想做的是设置一个属性,比如"?android:attr/textAppearanceLarge",并获取常规文本设置而无需进一步进行样式处理。

在我的自定义视图的attrs.xml文件中,我有:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="MyView" >
        ...

        <attr name="textAppearance" format="reference" />

        ...
    </declare-styleable>
</resources>

然后在CustomView.java中

final int[] bogus = new int[] { android.R.attr.textColor, android.R.attr.textSize, android.R.attr.typeface, android.R.attr.textStyle, android.R.attr.fontFamily };
final int ap = styledAttributes.getResourceId(com.test.R.styleable.MyView_textAppearance, -1);
final TypedArray textAppearance = ap != -1 ? context.obtainStyledAttributes(ap, bogus) : null;

if (textAppearance != null) {
    for (int i = 0; i < textAppearance.getIndexCount(); i++) {
        int attr = textAppearance.getIndex(i);

        switch (attr) {
        case android.R.attr.textColor:  textColor = textAppearance.getColor(attr, textColor); break;
        case android.R.attr.textSize:   textSize = textAppearance.getDimensionPixelSize(attr, textSize); break;
        case android.R.attr.typeface:   typefaceIndex = textAppearance.getInt(attr, typefaceIndex); break;
        case android.R.attr.textStyle:  textStyle = textAppearance.getInt(attr, textStyle);  break;
        case android.R.attr.fontFamily: fontFamily = textAppearance.getString(attr); break;         
        }
    }

    textAppearance.recycle();
}

我尝试了各种不同的开关变量、情况常量等变化,但最终都没有得到任何有用的结果。

我在哪里做错了?

2个回答

3
"最初的回答"
我知道这是一个老问题,但我刚刚遇到了这个问题,这个解决方案适用于我:
在attrs.xml中:
<resources>
    <declare-styleable name="CustomView">
        ....
        <attr name="textAppearance" format="reference" />
    </declare-styleable>
</resources>

最初的回答:在CustomView.java中。
textAppearance = a.getResourceId(R.styleable.CustomView_textAppearance, -1);
TextViewCompat.setTextAppearance(textView, textAppearance);

then in activity.xml

<CustomView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:textAppearance="?android:attr/textAppearanceMedium"

0

我认为你可以访问不同的资源:

com.test.R.styleable.MyView_textAppearance

是你自己的,

android.R.attr.textColor

其他的是安卓的。

所以我成功地定义了自己的属性:

    <com.test.TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        myns:textColor="@android:color/darker_gray" 
        myns:textSize="18sp"
        myns:textStyle="normal"/>

和 attrs.xml:

<declare-styleable name="MyView_textAppearance">
    <attr name="textColor" format="reference|color" />

    <attr name="textSize" format="dimension" />
    <attr name="textStyle">
        <flag name="normal" value="0" />
        <flag name="bold" value="1" />
        <flag name="italic" value="2" />
    </attr>

</declare-styleable>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接