我有一个自定义视图扩展RelativeLayout。我知道我可以在java代码中修改它的子代,但是在xml中也可以吗? 我希望在main.xml中有类似的东西:
<MyCustomView>
<SomeControl />
<AnotherControl />
</MyCustomView>
<MyCustomView>
<NewControl />
</MyCustomView>
你能告诉我如何实现这一目标吗? 谢谢你的帮助!
答案 0 :(得分:1)
您可以在此处找到一些解释:http://developer.android.com/guide/topics/ui/custom-components.html
您可以使用类的完全限定名称在任何布局XML文件中实际使用自定义组件:
<com.package.MyClass id="@+id/my_id" ...>
...
</com.package.MyClass>