在android中如何在自定义视图之间共享attrs

发布于 2025-01-02 18:47:47 字数 573 浏览 1 评论 0原文

我创建了许多自定义视图,并且任何视图都有一个自定义属性:mystyle。

所以在我的 attr.xml 中:

<resources> 
    <declare-styleable name="MyView1">
         <attr name="mystyle" format="string" />
    </declare-styleable>
    <declare-styleable name="MyView2">
         <attr name="mystyle" format="string" />
    </declare-styleable>
    <declare-styleable name="MyView2">
         <attr name="mystyle" format="string" />
    </declare-styleable>
     ...
</resources> 

我认为这不是恩典。有没有办法对所有客户视图使用一个属性?

I created many custom Views and any of views has a custom attribute: mystyle.

so that in my attr.xml:

<resources> 
    <declare-styleable name="MyView1">
         <attr name="mystyle" format="string" />
    </declare-styleable>
    <declare-styleable name="MyView2">
         <attr name="mystyle" format="string" />
    </declare-styleable>
    <declare-styleable name="MyView2">
         <attr name="mystyle" format="string" />
    </declare-styleable>
     ...
</resources> 

I think that's not grace. Is there any way to use one attr for all the custome view?

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

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

发布评论

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

评论(1

憧憬巴黎街头的黎明 2025-01-09 18:47:47

您可以尝试制作抽象ParentView并为其声明属性。然后你所有的自定义视图都将扩展ParentView,并且属性将被声明

You can try to make abstract ParentView and declare attribute for it. Then all your custom views will extend ParentView, and attribute will be declared

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文