通常、Snackbarが表示されている場合、Snackbarが非表示になると浮動アクションボタンが上に移動し、次に通常の位置にシフトします。私は6.0.1より前のすべてのアンドロイドバージョンでアプリケーションをテストしましたが、すべてが期待通りに機能します。SnackbarがAndroid 6.0.1で表示された後にFABがキーボードの下に表示される
残念なことにアンドロイド6.0.1では、Snackbarが離れた後、フローティングアクションボタンがソフトキーボードの半分になります。私は親のレイアウトとしてCoordinatorLayout
を持っているAndroidのガイドラインを1として
。私はまた、マニフェストファイルの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
によって提案されたこのアプローチを使用
:任意の提案が高く評価されている
:Make FAB respond to Soft Keyboard show/hide changes私は、次の結果を取得しています。ありがとう。
あなたはXMLコードを投稿できますか? –
もちろん投稿します。 – Darush