38

我制作了我的自定义组件,只是将几个 TextView 放在一起。现在我希望能够直接从代码初始化我的自定义控件,为每个电视独立传递文本大小

我的属性定义:

<resources>
    <declare-styleable name="BasicGauge">
        <attr name="valueTextSize" format="dimension" />
        <attr name="titleTextSize" format="dimension" />
        <attr name="unitsTextSize" format="dimension" />
    </declare-styleable>
</resources>

组件初始化示例:

<pl.com.digita.BikeComputerUi.customviews.BasicGauge
    android:id="@+id/basicGauge1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:padding="10dp"
    valueTextSize="40sp">

</pl.com.digita.BikeComputerUi.customviews.BasicGauge>

我如何尝试在组件的构造函数中读取这些属性:

final int N = typedArray.getIndexCount();
for (int i = 0; i < N; i++) {
    int attribute = typedArray.getIndex(i);
    switch (attribute) {
        case R.styleable.BasicGauge_valueTextSize:
            valueTextSize = typedArray.getString(attribute);
            break;
        case R.styleable.BasicGauge_titleTextSize:
            titleTextSize = typedArray.getString(attribute);
            break;
        case R.styleable.BasicGauge_unitsTextSize:
            unitsTextSize = typedArray.getString(attribute);
            break;
    }
    typedArray.recycle();
}

问题: 创建后我的所有值仍然为空。40sp正是我想要的值。

4

2 回答 2

70

有几件事要说:

  • 首先,您需要在 xml 的顶部有一个 xml 名称空间声明行,与使用 android xmlns 的方式完全相同: xmlns:foo="http://schemas.android.com/apk/res-auto"
  • 那么你需要在 valueTextSize 前面加上你的 xmlns : foo:valueTextSize="40sp"

之后,获取字符串不是一个好主意,android 提供了更强大的解决方案来处理维度:

int unitsTextSize = typedArray.getDimensionPixelSize(R.styleable.BasicGauge_unitsTextSize, textSize);

然后有一些微妙之处:

  • 对于 Paint 或 TextPaint,您可以按原样使用此值:paint.setTextSize(unitTextSize):
  • 对于 textview,上述方法将失败,您必须使用 setText 的重载才能获得正确的结果:textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, unitTextSize);

区别来自所谓的“原始像素”(根据密度未缩放,只是原始)和“缩放像素”(相反)。

于 2013-05-16T20:43:46.373 回答
34

有关已接受答案的更多背景信息:

attrs.xml

dimension使用格式设置自定义属性。

<resources>
    <declare-styleable name="CustomView">
        <attr name="valueTextSize" format="dimension" />
        <attr name="titleTextSize" format="dimension" />
        <attr name="unitsTextSize" format="dimension" />
    </declare-styleable>
</resources>

活动.xml

引用您的属性xmlns:app=...并将它们设置在您的 xml 中app:...

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

    <com.example.myproject.CustomView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:valueTextSize="40sp"
        app:titleTextSize="20sp"
        app:unitsTextSize="24sp" /> 

</RelativeLayout>

自定义视图.java

使用 . 从 TypedArray 中获取值getDimensionPixelSize。在您的自定义视图中只使用像素。如果您需要转换为不同的维度,请参阅此答案。

public class CustomView extends View {

    private float mValueTextSize; // pixels
    private float mTitleTextSize; // pixels
    private float mUnitsTextSize; // pixels

    public CustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypedArray a = context.getTheme().obtainStyledAttributes(
                attrs, R.styleable.CustomView, 0, 0);
        try {
            mValueTextSize = a.getDimensionPixelSize(R.styleable.CustomView_valueTextSize, 0);
            mTitleTextSize = a.getDimensionPixelSize(R.styleable.CustomView_titleTextSize, 0);
            mUnitsTextSize = a.getDimensionPixelSize(R.styleable.CustomView_unitsTextSize, 0);
        } finally {
            a.recycle();
        }
    }

    // ...
}
于 2017-02-08T09:25:28.383 回答