正常情况下,当Snackbar显示时,浮动操作按钮会向上移动,然后在Snackbar隐藏时向下移动到正常位置。我已经在6.0.1之前的所有Android版本中测试了我的应用程序,一切都按预期工作。
不幸的是,在Android 6.0.1上,Snackbar消失后,浮动动作按钮在软键盘下面减半。
根据Android指南,我将CoordinatorLayout
作为父布局。我还在清单文件中尝试了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我得到以下结果:
任何建议都非常感谢。感谢。
答案 0 :(得分:2)
我已经回答了另一个人提出的这个问题,你可以尝试this发帖,是的,有一种编程方式来处理它,我们需要扩展CoordinatorLayout.Behavior<FloatingActionButton>
并覆盖方法来实现合适的FAB在滚动(隐藏和显示)以及小吃店或键盘上的行为弹出,因此Fab也相应地移动。
编辑后:
以上引用的答案对我有用,你也可以尝试这些。
在 android:fitsSystemWindows="true"
<android.support.design.widget.CoordinatorLayout/>
如果以上不起作用,那么,
在android:windowSoftInputMode="adjustResize"
Manifest.xml
到您的活动
希望它会帮助你。