最近公司项目有一个功能点是监听软键盘的打开关闭状态,然后来展开不同的布局,后来在*上面找到一位大神提供了解决办法,大致做法如下:
在你需要监听状态的界面activity或者fragment中的根布局设置一个id,如下:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/all_evaluate_root_view" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> ..... </LinearLayout>
然后关键的来了,在代码中如下:
View rootView = findViewById(R.id.all_evaluate_root_view); rootView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() { @Override public void onGlobalLayout() { int heightDiff = rootView.getRootView().getHeight() - rootView.getHeight(); if (heightDiff > dpToPx(AllEvaActivity.this, 200)) { // if more than 200 dp, it's probably a keyboard... // ... do something here //软键盘打开状态 }else{ //软键盘关闭状态 } } });
public static float dpToPx(Context context, float valueInDp) { DisplayMetrics metrics = context.getResources().getDisplayMetrics(); return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, valueInDp, metrics); }完成!简直了,这样就可以监听状态了,最后附上Stack Over Flow地址: 点击打开链接