我想制作一个将通过XML包装所有内容的布局。
这就是我想要实现的目标:
my_custom_view.xml
<RelativeLayout
layoutWidth="match_parent"
layoutHeight="match_parent">
<view
id="viewTop"
alignParentTop="true"/>
<view
id="viewLeft"
alignParentLeft="true"/>
<view
id="viewRight"
alignParentRight="true"/>
<view
id="viewBottom"
alignParentBottom="true"/>
<RelativeLayout
id="content"
below="viewTop"
toRightOf="viewLeft"
toLeftOf="viewRight"
above="viewBottom"/>
</RelativeLayout>
我想将此布局用作所有活动/片段的根布局。 所有这些都必须包含在id =&#34;内容&#34;布局
activity_main.xml中
<com.....MyCustomView
layoutWidth="match_parent"
layoutHeight="match_parent">
<TextView/>
<ImageView/>
...
</com.....MyCustomView>
实现此行为的正确方法是什么?