Android自定义视图获取多个属性

Android custom view obtain multiple attributes

我正在 Android 中创建自定义视图。在它的构造函数中,我获得了一些在 XML 布局文件中设置的属性。代码是这样的:

public LabeledEditText(Context context, AttributeSet attrs) {
        super(context, attrs);

    TypedArray styledAttrs = context.getTheme().obtainStyledAttributes(attrs, new int[] { android.R.attr.id, android.R.attr.digits, android.R.attr.padding, android.R.attr.inputType }, 0, 0);
    try {
        int id = styledAttrs.getResourceId(styledAttrs.getIndex(0), -1);
        String digits = styledAttrs.getString(styledAttrs.getIndex(1));
        float padding = styledAttrs.getDimension(styledAttrs.getIndex(2), 0.1f);
        int inputType = styledAttrs.getInt(styledAttrs.getIndex(3), -1);
    } finally {
        styledAttrs.recycle();
    }
}

问题是 obtainStyledAttributes 没有获取所有属性,即使它们存在于属性集中。更奇怪的是,如果我更改 int 数组中 id 的顺序,我会得到不同的结果。例如,如果我使用以下顺序

new int[] { android.R.attr.id, android.R.attr.digits, android.R.attr.padding, android.R.attr.inputType }

我得到了 3 个属性,但是如果我使用以下顺序

new int[] {android.R.attr.digits, android.R.attr.padding, android.R.attr.inputType, android.R.attr.id }

我回来了 2。我附上了这 2 个案例的手表 window 的 2 个屏幕截图。断点设置在 try 语句之后。

无论如何,如果我一次获取一个属性,它对所有属性都有效。 obtainStyledAttributes 是如何工作的?另外我不确定是否应该使用styledAttrs.getIndex(i)函数,但这是当前问题解决后的问题。

虽然没有记录,obtainStyledAttributes 需要一个排序数组,并且其代码已根据该假设进行了优化。

因此您需要提供 styledAttrs 数组,其中的元素根据其 id 值按升序排序。

您可以通过多种方式确定正确的顺序:

  • 基于他们在资源中的相对位置
  • 通过检查它们的相对值并更改数组以匹配
  • 或以编程方式对数组元素进行排序

如果您选择在 运行 时以编程方式对数组进行排序,请确保在调用 getString() 等时使用适当的(排序的)索引

另一种常见的解决方法是一次只获取带有 obtainStyledAttributes 的单个值。 (只有一个元素的数组已经排序。)

Also I'm not sure if I should use the styledAttrs.getIndex(i) function or not

我认为只有在循环遍历 TypedArray 时才需要这样做,并且可能某些元素可能没有值;它基本上是 "hides" 空元素,就好像它是一个稀疏数组一样。一般来说,我认为没有必要,除非您以某些方式访问样式化资源,例如在实现自定义视图时。

大多数时候我使用与视图完全无关的自定义主题属性,在这些情况下我总是发现 TypedArray.getIndex() 是多余的。