如何访问layout.filename中的UI元素值
我制作了一个扩展首选项的自定义类。我已在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过类构造函数:
Via the class constructor: