此问题已解决,请参阅评论以获取详细信息。
我正在扩展现有的Android视图并加载一些自定义属性,如Declaring a custom android UI element using XML和Defining custom attrs中所述。
布尔和整数格式的属性工作正常,但是当我尝试指定对数组资源的引用时,应用程序在启动时崩溃。我在xml资源文件中定义了一个整数数组,我正在尝试将它用作自定义视图的属性。
我可以使用数组资源来设置android Spinner类的“entries”属性而没有错误,所以它似乎是我的实现中的一个问题。 logcat消息似乎没有提供有关崩溃的任何具体信息,但我仍然在寻找,所以如果我找到了什么,我会更新。
属性由(在attrs.xml中)声明:
<declare-styleable name="CustomView">
<attr name="values" format="reference"/>
<attr name="isActive" format="boolean"/>
</declare-styleable>
数组定义为(在arrays.xml中):
<integer-array name="nums">
<item>1</item>
<item>2</item>
<item>3</item>
</integer-array>
我正在引用数组:
<com.test.CustomView cv:values="@array/nums" />
这会导致应用程序立即崩溃。此外,如果我引用颜色资源而不是数组,那么应用程序不会崩溃。有人知道如何处理这个问题吗?
答案 0 :(得分:41)
在这里回过头来讨论你的问题,因为你的帖子首先出现,如果你谷歌像“数组参考XML属性自定义视图”,所以有人可能会发现这有用。
如果您希望自定义视图引用字符串数组,则可以使用Android现有的android:entries
XML属性,而不是创建全新的自定义属性。
在res/values/attrs.xml
中执行以下操作:
<resources>
<declare-styleable name="MyCustomView">
<attr name="android:entries" />
</declare-styleable>
</resources>
然后在自定义View的构造函数中执行此操作:
public MyCustomView(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.MyCustomView, defStyle, 0);
try
{
CharSequence[] entries = a.getTextArray(R.styleable.MyCustomView_android_entries);
if (entries != null)
{
//do something with the array if you want
}
}
finally
{
a.recycle();
}
}
然后,当您将自定义视图添加到XML布局文件时,您应该能够通过android:entries
属性引用字符串数组。例如:
<com.example.myapp.MyCustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@array/my_array_of_strings" />
这正是ListView课程的完成方式(在源代码中查看,你会看到)。
答案 1 :(得分:14)
另一个答案适用于字符串数组。但是,参考数组上的arr.getTextArray(...)
,例如
<array name="tmp">
<item>@drawable/a</item>
<item>@drawable/b</item>
</array>
将为您提供res/drawable/a.png
作为CharSequence而不是资源ID。
解析引用数组的正确方法是:
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CustomView);
int arrayResourceId = typedArray.getResourceId(R.styleable.CustomView_CustomAttr, 0);
if (arrayResourceId != 0) {
final TypedArray resourceArray = getResources().obtainTypedArray(arrayResourceId);
for (int i = 0; i < resourceArray.length(); i++) {
final int resourceId = resourceArray.getResourceId(i, 0);
// do stuff with resourceId, such as getResources().getDrawable(resourceId)
}
resourceArray.recycle();
}
typedArray.recycle();
答案 2 :(得分:4)
问题是关于获取整数数组,对于我的情况,我需要从数组中读取颜色(int)以用于我的自定义视图,styeable definition如下所示:
<com.rainliu.colorpicker.ColorPickerView
android:id="@+id/rtePalette"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
colorPickerView:colors="@array/colorPickerColors"
/>
然后我使用我的自定义视图,如下所示:
<resources>
<color name="colorPrimary">#FF9800</color>
<array name="colorPickerColors">
<item>#000000</item>
<item>#E65100</item>
<item>@color/colorPrimary</item>
</array>
</resources>
颜色定义如下:
TypedArray ta = context.obtainStyledAttributes(attributeSet, R.styleable.ColorPickerView);
int colorsId = ta.getResourceId(R.styleable.ColorPickerView_colors, 0);
int[] colorsArray = ta.getResources().getIntArray(colorsId);
for (int a : colorsArray) {
Log.e("AA", "color == " + a);
}
ta.recycle();
所以我需要在自定义视图(ColorPickerView)中获取颜色,代码如下:
03-11 14:25:53.894 15300-15300/com.chinalwb.are E/AA: color == -16777216
03-11 14:25:53.894 15300-15300/com.chinalwb.are E/AA: color == -1683200
03-11 14:25:53.894 15300-15300/com.chinalwb.are E/AA: color == -1683200
这是colorsArray的打印:
print(sorted(sorted(numbers), key=len))
希望这会对一些人有所帮助。