通过 AttributeSet 访问 Widget 属性 - Android

发布于 2024-11-03 05:02:56 字数 678 浏览 0 评论 0原文

这应该是相当简单的任务。我有一个具有以下内容的视图:

<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 技术交流群。

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

发布评论

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

评论(1

衣神在巴黎 2024-11-10 05:02:56

我认为你应该在 xml 中写入

xmlns:panel="http://schemas.android.com/apk/gen/org.miscwidgets"

而不是

xmlns:panel="org.miscwidgets"

And get it by

attrs.getAttributeValue("http://schemas.android.com/apk/gen/org.miscwidgets", "position");

I think you should write in your xml

xmlns:panel="http://schemas.android.com/apk/gen/org.miscwidgets"

Instead of

xmlns:panel="org.miscwidgets"

And get it by

attrs.getAttributeValue("http://schemas.android.com/apk/gen/org.miscwidgets", "position");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文