我的屏幕有以下 XML 结构。我希望我的 ID 为 JourneyLandingView 的相对布局在单击某个按钮时向上滑动并显示 ID 为 JourneyRootView 的相对布局视图,该视图将从底部向上滑动,因为 JourneyLandingView 将 Fill_Parent 设置为高度和宽度,因此旅程根视图必须低于覆盖整个的旅程着陆视图屏幕。我怎样才能做到这一点?
<?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>