次のレイアウト構造があります
<LinearLayout
id="@+id/papaLayout"
>
<!-- ----------------------------------- -->
<Relativelayout
id="@+id/daughter_A"
>
//Some Welcome Message here. And Only One Clickable Item here.
</RelativeLayout>
<!-- ----------------------------------- -->
<Relativelayout
id="@+id/daughter_B"
>
//Some Clickable Items here
</RelativeLayout>
<!-- ----------------------------------- -->
</LinearLayout>
私のアプリが読み込まれると、 daughter_A が画面全体を占有します。daughter_A レイアウト内には 1 つのボタンがあります。daughter_A のボタンをクリックすると、daughter_B が画面を占有するようにします。
ScrollView を使用したくありません。ScrollView を使用せずにこれを行うことはできますか?