4

私はレイアウトに永続的なボトムシートを実装しようとしています - 完全に非表示にすることはできませんが、常にボトムからピークを出して完全な高さに拡張できます。これは私のレイアウトです:私は起こることを期待何Androidの永続的なボトムシートの最初の可視性

<android.support.design.widget.CoordinatorLayout 
    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.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"/> 

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

     <!-- main content --> 

    </LinearLayout> 

    <LinearLayout 
     android:id="@+id/layoutBottomSheet" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center|bottom" 
     android:background="@drawable/custom_background" 
     android:clipToPadding="false" 
     android:gravity="center_horizontal" 
     android:orientation="vertical" 
     app:behavior_hideable="false" 
     app:behavior_peekHeight="50dp" 
     app:layout_behavior="@string/bottom_sheet_behavior"> 

     <!-- bottom sheet content --> 

    </LinearLayout> 

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

が見えるようにボトムシートのためであるとすぐ、私は画面に着陸として崩壊したが、そうではありません - それは隠されています。 onCreate()bottomSheetBehaviour.setState(BottomSheetBehavior.STATE_EXPANDED)と呼んで表示させることができます。これは興味深いことに、わずかに拡張されているに過ぎません。この状態で表示された後、私はそれを上下にドラッグして、どこにあるべきか、うまく動作します。問題は、画面上の最初の着陸がうまくいかないことです。

ボトムシートが最初にピークの高さで表示されるように、私はこれを動作させる方法があると確信しています。何か案は?

答えて

0

よくあることですが、質問をした後に答えが見つかります。私の問題は、android:layout_gravity="center|bottom"が下のシートビューに設定されていました。それを取り除いて固定しました。

関連する問題