2017-01-07 17 views
0

通常、Snackbarが表示されている場合、Snackbarが非表示になると浮動アクションボタンが上に移動し、次に通常の位置にシフトします。私は6.0.1より前のすべてのアンドロイドバージョンでアプリケーションをテストしましたが、すべてが期待通りに機能します。SnackbarがAndroid 6.0.1で表示された後にFABがキーボードの下に表示される

残念なことにアンドロイド6.0.1では、Snackbarが離れた後、フローティングアクションボタンがソフトキーボードの半分になります。私は親のレイアウトとしてCoordinatorLayoutを持っているAndroidのガイドラインを1として

enter image description here

。私はまた、マニフェストファイルのandroid:windowSoftInputMode="adjustResize"を試しました。

<?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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    android:id="@+id/myCoordinatorLayout" 
    tools:context="com.example.myapp.MainActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_height="wrap_content" 
     android:layout_width="match_parent" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="?attr/colorPrimary" 
      app:popupTheme="@style/AppTheme.PopupOverlay" /> 

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

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

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom|end" 
     android:layout_margin="@dimen/fab_margin" 
     android:src="@mipmap/ic_add_white_24dp" /> 

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

これは何らかのバグですか?これをプログラム的に処理する方法はありますか?

更新:私はSnackbarを手動で解除するためにスワイプすると、FABが元の位置に戻ることを発見しました。しかし、私がスナックバーを隠すまで/自分自身で解除すると、問題が生じます。 @Muhammad Faisal Hyderによって提案されたこのアプローチを使用

:任意の提案が高く評価されている

enter image description here

Make FAB respond to Soft Keyboard show/hide changes私は、次の結果を取得しています。ありがとう。

+0

あなたはXMLコードを投稿できますか? –

+0

もちろん投稿します。 – Darush

答えて

2

私はthisポストを試してみてください。それを処理するプログラミング方法があります。CoordinatorLayout.Behavior<FloatingActionButton>を拡張し、スクロールする際のFABの適切な動作を実現する必要があります。隠して表示)、スナックバーやキーボードがポップアップするので、Fabもそれに従って動きます。 EDIT後

:参照の答え上記

は、私の作品は、よくあなたは、これらを試すことができます。

追加:android:fitsSystemWindows="true"<android.support.design.widget.CoordinatorLayout/>

上記

追加、そして、まだ、動作しない場合:

Manifest.xmlandroid:windowSoftInputMode="adjustResize"あなたの活動には、それが出てあなたを助けることを願っています。

+0

お返事ありがとうございました。私はあなたのアプローチを試みるとすぐに私のフィードバックを書いていきます。 – Darush

+0

私のFAB layout_behavourとしてScrollingFABAnimationを追加した後、私は奇妙な動作をしています。 FABは、ソフトキーボードの上の画面の約半分のサイズになります。 – Darush

+0

同じXMLプロパティを使用しましたか? –

関連する問題