添加到activity 到 AndroidManifest.xml 中的属性
android:windowSoftInputMode="adjustPan|stateHidden" 键盘会覆盖屏幕
android:windowSoftInputMode="adjustUnspecified|stateHidden" >屏幕整体上移

import android.graphics.Rect;  
import android.view.View;  
import android.view.ViewTreeObserver.OnGlobalLayoutListener;  
  
/** 
 * 当弹出键盘时,调整布局,向上移动,避免遮挡输入的edit控件 */  
public class KeyboardAdjustUtil {  
    /** 
     * @param root 最外层布局,需要调整的布局 
     * @param scrollToView 被键盘遮挡的scrollToView,滚动root,
* 使scrollToView在root可视区域的底部
*/ public static void controlKeyboardLayout(final View root, final View scrollToView) { root.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { Rect rect = new Rect(); // 获取root在窗体的可视区域 root.getWindowVisibleDisplayFrame(rect); // 获取root在窗体的不可视区域高度(被其他View遮挡的区域高度) int rootInvisibleHeight = root.getRootView().getHeight() - rect.bottom; // 若不可视区域高度大于100,则键盘显示 if (rootInvisibleHeight > 10) { int[] location = new int[2]; // 获取scrollToView在窗体的坐标 scrollToView.getLocationInWindow(location); // 计算root滚动高度,使scrollToView在可见区域 int srollHeight = (location[1] + 3 * scrollToView.getHeight()) - rect.bottom; root.scrollTo(0, srollHeight); } else { // 键盘隐藏 root.scrollTo(0, 0
); } } }); } }

 

相关文章:

  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-04
  • 2022-12-23
  • 2021-09-10
  • 2021-11-02
  • 2022-12-23
  • 2021-12-30
  • 2022-12-23
相关资源
相似解决方案