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!