画面のXML構造は次のとおりです。あるボタンをクリックするとidjourneyLandingViewの相対レイアウトが上にスライドし、journeyLandingViewの高さと幅がFill_Parentに設定されているため、下から上にスライドするIDjourneyRootViewのビューRelativeLayoutを表示したいので、journeyRootViewは全体をカバーするjourneyLandingViewの下にある必要があります画面。どうやってやるの?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/journeyLandingView">
</RelativeLayout>
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/journeyRootView"
android:background="@drawable/root_layer">
</RelativeLayout>
</LinearLayout>