このリンク、Android tools attributesを確認してください。ツール属性の使用方法についてのアイデアが得られるはずです。特にtools:showIn
属性を見てください。基本的に、layout_B に layout_A をレンダリングできます。layout_B は<include layout="@layout/layout_A"/>
xml のどこかにあります。
次に例を示します。
レイアウト_A
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:showIn="@layout/layout_B"
>
<!-- Your layout code goes here -->
</RelativeLayout>
レイアウト_B
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<include layout="@layout/layout_A"/>
<!-- Your layout code goes here -->
</RelativeLayout>