代码之家  ›  专栏  ›  技术社区  ›  Tamas Koos

snackbar隐藏元素

  •  0
  • Tamas Koos  · 技术社区  · 6 年前

    我在我的主要活动上显示了一个snackbar,它是coordinatorlayou,但里面还有一个自定义框架布局和一个浮动操作按钮。我的问题是,当snackbar出现时,它会向上移动浮动操作按钮,但不会向上移动框架布局,因此它隐藏了这一点。

    我的布局:

    <?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 回复  |  直到 6 年前