在RelativeLayout

时间:2017-08-02 22:59:22

标签: android-layout layout alignment android-linearlayout android-relativelayout

我很难理解如何在xml文件中将图层彼此对齐。 我搜索了一个解决方案,但无法找到满足我需求的解决方案。

我在RelativeLayout中有两个LinearLayout。第一个LinearLayout包含一个RecycleView / ScrollView,第二个LinearLayout包含一些按钮。

我想在第一个LinearLayout上设置第二个LinearLayout,但是在RelativeLayout的底部。见下图。

enter image description here

这是我测试的内容(它将扩展第一个布局并隐藏第二个布局)。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:id="@+id/first"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</LinearLayout>

<LinearLayout
    android:id="@+id/second"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_below="@+id/first"
    android:layout_alignParentBottom="true"
    app:layout_gravity="bottom">
</LinearLayout>

</RelativeLayout>

你知道如何实现这个目标吗?

PS。我不想使用BottomNavigationView而不是第二个LinearLayout。

1 个答案:

答案 0 :(得分:1)

我设法为我的问题找到了解决方案。 我用FrameLayout更改了第一个LinearLayout,一切正常。请记住,第二个LinearLayout必须保留在FrameLayout下。干杯!