如何在layout.filename中访问UI元素值

时间:2011-07-27 20:55:44

标签: android xml resources preferences

我已经制作了一个扩展首选项的自定义类。我在XML布局文件中使用了该自定义类,需要访问那里的值。 我的布局文件的一部分:

<MyCustomClass
android:id="@+id/custom01"
android:title="ineedthistext" />

如何将“ineedthistext”作为字符串检索?

1 个答案:

答案 0 :(得分:0)

通过类构造函数:

public MyCustomClass(Context context, AttributeSet attrs) {
    ...
    // Get an attribute
    X var = attrs.getX(...);
}