答案 0 :(得分:66)
原来这很简单,
android:windowSoftInputMode="adjustResize"
添加到您在清单中的活动android:fitsSystemWindows="true"
属性答案 1 :(得分:0)
如果您正在使用特定的片段,则可以使用此代码,并且只需进行相应的更改即可。
view.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
Rect r = new Rect();
view.getWindowVisibleDisplayFrame(r);
if (v.getRootView().getHeight() - (r.bottom - r.top) > 500) {
//Log.d("keyboardStatus","opened");
fab.setVisibility(View.GONE);
} else {
// Log.d("keyboardStatus","closed");
fab.setVisibility(View.VISIBLE);
}
}
});
答案 2 :(得分:0)
如果您想让FloatingActionBar在键盘上方移动,您应该:
1) 在CoordinatorLayout中插入FloatingActionBar:
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:src="@drawable/ic_img" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2)在根视图(您的FAB所在的地方)中添加代码:
android:fitsSystemWindows="true".
例如:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
tools:context=".AddFilm">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:src="@drawable/ic_img" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>
3)将AndroidManifest.xml中的下一个代码添加到您的活动中:
android:windowSoftInputMode="adjustResize"
例如:
<activity
android:name=".MainActivity"
android:windowSoftInputMode="adjustResize"/>