底部菜单android移动到底部

时间:2018-05-20 05:18:41

标签: android

底部菜单android中的问题

enter image description here

活动主要的代码

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Main2Activity">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">


        <FrameLayout
            android:id="@+id/framtab"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@+id/bottomMenu2">

        </FrameLayout>


        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:id="@+id/bottomMenu2"
            android:layout_alignParentBottom="true"
            android:layoutDirection="rtl"
            android:background="@drawable/white_grey_border_top">

            <include layout="@layout/bottom_menu"/>



        </RelativeLayout>

    </RelativeLayout>

</FrameLayout>

底部菜单android移至底部

1 个答案:

答案 0 :(得分:0)

尝试将RelativeLayout的layout_height从50dp设置为wrap_content。 也可能是bottom_menu布局问题。

试试这个:

<LinearLayout
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:layout_height="match_parent">


        <FrameLayout
            android:id="@+id/framtab"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:layout_above="@+id/bottomMenu2">

        </FrameLayout>


        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/bottomMenu2"
            android:layout_alignParentBottom="true"
            android:layoutDirection="rtl"
            android:background="@drawable/white_grey_border_top">

            <include layout="@layout/bottom_menu"/>



        </LinearLayout>