我使用enum类型的declare-styleable属性创建了一个自定义View(找到它here)。在xml中,我现在可以为自定义属性选择一个枚举条目。现在我想创建一个以编程方式设置此值的方法,但我无法访问枚举。
attr.xml
<declare-styleable name="IconView">
<attr name="icon" format="enum">
<enum name="enum_name_one" value="0"/>
....
<enum name="enum_name_n" value="666"/>
</attr>
</declare-styleable>
layout.xml
<com.xyz.views.IconView
android:id="@+id/heart_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:icon="enum_name_x"/>
我需要的是:mCustomView.setIcon(R.id.enum_name_x);
但我找不到枚举,或者我甚至不知道如何获得枚举或枚举的名称。
答案 0 :(得分:84)
似乎没有一种自动方式从属性枚举中获取Java枚举 - 在Java中,您可以获得指定的数值 - 该字符串用于XML文件(如您所示)。
您可以在视图构造函数中执行此操作:
TypedArray a = context.getTheme().obtainStyledAttributes(
attrs,
R.styleable.IconView,
0, 0);
// Gets you the 'value' number - 0 or 666 in your example
if (a.hasValue(R.styleable.IconView_icon)) {
int value = a.getInt(R.styleable.IconView_icon, 0));
}
a.recycle();
}
如果你想将值放入枚举中,你需要自己将值映射到Java枚举中,例如:
private enum Format {
enum_name_one(0), enum_name_n(666);
int id;
Format(int id) {
this.id = id;
}
static Format fromId(int id) {
for (Format f : values()) {
if (f.id == id) return f;
}
throw new IllegalArgumentException();
}
}
然后在第一个代码块中你可以使用:
Format format = Format.fromId(a.getInt(R.styleable.IconView_icon, 0)));
(虽然此时抛出异常可能不是一个好主意,可能最好选择合理的默认值)
答案 1 :(得分:11)
为了理智而过。确保您的声明在您的声明样式中与您的Enum声明中的相同,并将其作为数组访问。
TypedArray a = context.getTheme().obtainStyledAttributes(
attrs,
R.styleable.IconView,
0, 0);
int ordinal = a.getInt(R.styleable.IconView_icon, 0);
if (ordinal >= 0 && ordinal < MyEnum.values().length) {
enumValue = MyEnum.values()[ordinal];
}
答案 2 :(得分:9)
很简单,让我们向所有人展示一个例子,以说明它很简单:
attr.xml:
<declare-styleable name="MyMotionLayout">
<attr name="motionOrientation" format="enum">
<enum name="RIGHT_TO_LEFT" value="0"/>
<enum name="LEFT_TO_RIGHT" value="1"/>
<enum name="TOP_TO_BOTTOM" value="2"/>
<enum name="BOTTOM_TO_TOP" value="3"/>
</attr>
</declare-styleable>
自定义布局:
public enum Direction {RIGHT_TO_LEFT, LEFT_TO_RIGHT, TOP_TO_BOTTOM, BOTTOM_TO_TOP}
Direction direction;
...
TypedArray ta = getContext().obtainStyledAttributes(attrs, R.styleable.MyMotionLayout);
Direction direction = Direction.values()[ta.getInt(R.styleable.MyMotionLayout_motionOrientation,0)];
现在像其他枚举变量一样使用方向。
答案 3 :(得分:3)
我知道自问题发布以来已经有一段时间了,但最近我遇到了同样的问题。我使用Square的JavaPoet和build.gradle中的一些东西一起攻击了一些东西,它们从项目构建的attrs.xml自动创建了一个Java枚举类。
在https://github.com/afterecho/create_enum_from_xml
有一个小演示和自述文件及解释希望它有所帮助。
答案 4 :(得分:-1)
让我添加用kotlin编写的解决方案。添加内联扩展功能:
inline fun <reified T : Enum<T>> TypedArray.getEnum(index: Int, default: T) =
getInt(index, -1).let { if (it >= 0) enumValues<T>()[it] else default
}
现在获取枚举很简单:
val a: TypedArray = obtainStyledAttributes(...)
val yourEnum: YourEnum = ta.getEnum(R.styleable.YourView_someAttr, YourEnum.DEFAULT)