如何将子项添加到 xml 中的 android 自定义视图/布局?

发布于 2024-10-13 00:55:00 字数 312 浏览 3 评论 0原文

我有一个自定义视图扩展了RelativeLayout。我知道我可以在java代码中修改它的子级,但是在xml中也可以吗? 我想在我的 main.xml 中有类似的东西:

<MyCustomView>
   <SomeControl />
   <AnotherControl />
</MyCustomView>
<MyCustomView>
   <NewControl />
</MyCustomView>

你能给我提示如何实现这一点吗? 感谢您的帮助!

I have a custom view extends RelativeLayout. I know I can modify it's children in the java code, but is that possible in xml too?
I want to have something like that in my main.xml:

<MyCustomView>
   <SomeControl />
   <AnotherControl />
</MyCustomView>
<MyCustomView>
   <NewControl />
</MyCustomView>

Can you give me hints how to achieve that?
Thank you for your help!

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

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

发布评论

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

评论(1

混浊又暗下来 2024-10-20 00:55:00

您可以在这里找到一些解释: http://developer.android.com/ guide/topics/ui/custom-components.html

实际上,您可以使用类的完全限定名称在任何布局 XML 文件中使用自定义组件:

<com.package.MyClass id="@+id/my_id" ...>
      ...
</com.package.MyClass>

You may find some explanations here : http://developer.android.com/guide/topics/ui/custom-components.html

You can actually use your custom components in any layout XML file, using the fully qualified name of your class:

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