小吃店皮元素

时间:2018-08-30 16:24:51

标签: android layout

我在我的主要活动中显示了一块快餐栏,它是coordinatorlayou,但其中还具有自定义的框架布局和内部的浮动动作按钮。我的问题是,当小吃栏出现时,它会将浮动操作按钮向上移动,但不会将框架布局向上移动,因此将其隐藏。

我的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">

<android.support.v4.view.ViewPager
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="top"
    android:layout_marginBottom="50dp"
    app:layout_behavior="@string/appbar_scrolling_behavior" />

<net.lucode.hackware.magicindicator.MagicIndicator
    android:id="@+id/magic_indicator"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="@color/light_gray"
    android:layout_gravity="bottom" />

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center|bottom"
    android:layout_margin="10dp"
    app:srcCompat="@drawable/add_icon"
    app:backgroundTint="@color/colorPrimary"/>

</android.support.design.widget.CoordinatorLayout>

我该如何解决?

0 个答案:

没有答案