如何将子项添加到 xml 中的 android 自定义视图/布局?
我有一个自定义视图扩展了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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在这里找到一些解释: http://developer.android.com/ guide/topics/ui/custom-components.html
实际上,您可以使用类的完全限定名称在任何布局 XML 文件中使用自定义组件:
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: