通过 AttributeSet 访问 Widget 属性 - Android
这应该是相当简单的任务。我有一个具有以下内容的视图:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:panel="org.miscwidgets"
<org.miscwidgets.widget.Panel
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
panel:handle="@+id/panelHandle"
panel:content="@+id/panelContent"
panel:position="right">
我试图访问视图构造函数中的位置属性,但它始终返回 null。
String posVal = attrs.getAttributeValue("schemas.android.com/apk/gen/org.miscwidgets", "position");
我怎样才能得到这个值?我的命名空间错误吗?
我已经看到对 Styleables 的引用,但我没有成功找到任何未弃用的内容。
This should be fairly simple task. I have a view with the following:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:panel="org.miscwidgets"
<org.miscwidgets.widget.Panel
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
panel:handle="@+id/panelHandle"
panel:content="@+id/panelContent"
panel:position="right">
I am attempting to access the position property in the constructor of the view, however it consistently returns null.
String posVal = attrs.getAttributeValue("schemas.android.com/apk/gen/org.miscwidgets", "position");
How can I get the value? Is my namespace wrong?
I've seen references to Styleables but I've been unsuccessful in finding any that were not deprecated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你应该在 xml 中写入
而不是
And get it by
I think you should write in your xml
Instead of
And get it by