7

私のアプリケーションのビュー階層を説明するスキームがあります。このCはスナックバーは移動しませんFAB内に配置されたフラグメント

Example

そして、いくつかのXML

MainActivity

. CoordinatorLayout 
    . FrameLayout <- ContentFragment inserted here 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    . AppBarLayout 
    . Toolbar 

ContentFragment

<FrameLayout 
    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"> 

    <android.support.v7.widget.RecyclerView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:scrollbars="vertical"/> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="56dp" 
     android:layout_height="56dp" 
     android:src="@drawable/ic_plus_white_36dp" 
     android:layout_gravity="bottom|end" 
     android:layout_margin="15dp" 
     app:elevation="6dp" 
     app:pressedTranslationZ="12dp"/> 

    <TextView 
     android:id="@+id/hint_text" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="@string/empty_dates_list" 
     android:padding="20dp" 
     android:textSize="20sp" 
     android:layout_gravity="center" /> 

</FrameLayout> 

ODEは私がSnackBarを行います

Snackbar snackbar = Snackbar.make(
     mainActivity.getCoordinatorLayout(), 
     R.string.date_removed, 
     Snackbar.LENGTH_LONG); 

私の問題fabは私がContentFragment

に作ることSnackBarで上に移動されていない私もSnackbarのためのビューとしてポイントfabを試みたが、それは結果をもたらしていないことです。

+0

ことCoordinatorLayout –

答えて

4

CoordinatorLayoutは、子ビューによるレイアウト変更を正しく調整するため、この問題を避けるにはCoordinatorLayoutを使用する必要があります。

問題を解決するには、フラグメントレイアウトからMainActivityレイアウトにFloatingActionButtonを移動するだけです。あなたはフラグメント自体にFloatingActionButtonを使用する場合や、その後のフラグメントの親ビューがCoordinatorLayout

+0

良い答え。今度は 'FloatingActionButton'を' MainActivity'に移動し、それをゲッターにしました。ありがとう。 – Alexandr

1

これを行うには、FloatingActionButtonをCoordinatorLayoutの子にする必要があります。あなたはFrameLayoutの子です。

+0

とでframeLayoutの内容をラップするために設定し、サブで動作するようにそれを強制する方法はありませんビュー? – Alexandr

関連する問題