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

发布于 2024-11-27 01:34:28 字数 212 浏览 0 评论 0原文

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

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

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

I have made a custom class extending Preferences. I have used that custom class in a XML layout file and need to access the values there.
part of my layout file:

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

How can I retrieve "ineedthistext" as a string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诠释孤独 2024-12-04 01:34:28

通过类构造函数:

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

Via the class constructor:

public MyCustomClass(Context context, AttributeSet attrs) {
    ...
    // Get an attribute
    X var = attrs.getX(...);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文