我已经制作了一个扩展首选项的自定义类。我在XML布局文件中使用了该自定义类,需要访问那里的值。 我的布局文件的一部分:
<MyCustomClass
android:id="@+id/custom01"
android:title="ineedthistext" />
如何将“ineedthistext”作为字符串检索?
答案 0 :(得分:0)
通过类构造函数:
public MyCustomClass(Context context, AttributeSet attrs) {
...
// Get an attribute
X var = attrs.getX(...);
}