获取Android软键盘高度,虽然是在网上找的方法,不过已亲自测试过,这方法转载太多了,不知道谁是原著了,原作者莫怪。感谢原作者。
MainActivity.Java
- public class MainActivity extends Activity {
- private TextView textView;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- textView = (TextView) findViewById(R.id.textView);
- SoftKeyBoardListener.setListener(this,new SoftKeyBoardListener.OnSoftKeyBoardChangeListener() {
- @Override
- public void keyBoardShow(int height) {
- Toast.makeText(MainActivity.this, “键盘显示 高度” + height, Toast.LENGTH_SHORT).show();
- textView.setText(String.valueOf(height));
- }
- @Override
- public void keyBoardHide(int height) {
- Toast.makeText(MainActivity.this, “键盘隐藏 高度” + height, Toast.LENGTH_SHORT).show();
- textView.setText(”高度:”+String.valueOf(height));
- }
- });
- }
- }

public class MainActivity extends Activity {
private TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = (TextView) findViewById(R.id.textView);
SoftKeyBoardListener.setListener(this,new SoftKeyBoardListener.OnSoftKeyBoardChangeListener() {
@Override
public void keyBoardShow(int height) {
Toast.makeText(MainActivity.this, "键盘显示 高度" + height, Toast.LENGTH_SHORT).show();
textView.setText(String.valueOf(height));
}
@Override
public void keyBoardHide(int height) {
Toast.makeText(MainActivity.this, "键盘隐藏 高度" + height, Toast.LENGTH_SHORT).show();
textView.setText("高度:"+String.valueOf(height));
}
});
}
}
SoftKeyBoardListener.java
- public class SoftKeyBoardListener {
- private View rootView;//activity的根视图
- int rootViewVisibleHeight;//纪录根视图的显示高度
- private OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener;
- public SoftKeyBoardListener(Activity activity) {
- //获取activity的根视图
- rootView = activity.getWindow().getDecorView();
- //监听视图树中全局布局发生改变或者视图树中的某个视图的可视状态发生改变
- rootView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
- @Override
- public void onGlobalLayout() {
- //获取当前根视图在屏幕上显示的大小
- Rect r = new Rect();
- rootView.getWindowVisibleDisplayFrame(r);
- int visibleHeight = r.height();
- if (rootViewVisibleHeight == 0) {
- rootViewVisibleHeight = visibleHeight;
- return;
- }
- //根视图显示高度没有变化,可以看作软键盘显示/隐藏状态没有改变
- if (rootViewVisibleHeight == visibleHeight) {
- return;
- }
- //根视图显示高度变小超过200,可以看作软键盘显示了
- if (rootViewVisibleHeight - visibleHeight > 200) {
- if (onSoftKeyBoardChangeListener != null) {
- onSoftKeyBoardChangeListener.keyBoardShow(rootViewVisibleHeight - visibleHeight);
- }
- rootViewVisibleHeight = visibleHeight;
- return;
- }
- //根视图显示高度变大超过200,可以看作软键盘隐藏了
- if (visibleHeight - rootViewVisibleHeight > 200) {
- if (onSoftKeyBoardChangeListener != null) {
- onSoftKeyBoardChangeListener.keyBoardHide(visibleHeight - rootViewVisibleHeight);
- }
- rootViewVisibleHeight = visibleHeight;
- return;
- }
- }
- });
- }
- private void setOnSoftKeyBoardChangeListener(OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener) {
- this.onSoftKeyBoardChangeListener = onSoftKeyBoardChangeListener;
- }
- public interface OnSoftKeyBoardChangeListener {
- void keyBoardShow(int height);
- void keyBoardHide(int height);
- }
- public static void setListener(Activity activity, OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener) {
- SoftKeyBoardListener softKeyBoardListener = new SoftKeyBoardListener(activity);
- softKeyBoardListener.setOnSoftKeyBoardChangeListener(onSoftKeyBoardChangeListener);
- }
- }

public class SoftKeyBoardListener {
private View rootView;//activity的根视图
int rootViewVisibleHeight;//纪录根视图的显示高度
private OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener;
public SoftKeyBoardListener(Activity activity) {
//获取activity的根视图
rootView = activity.getWindow().getDecorView();
//监听视图树中全局布局发生改变或者视图树中的某个视图的可视状态发生改变
rootView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
//获取当前根视图在屏幕上显示的大小
Rect r = new Rect();
rootView.getWindowVisibleDisplayFrame(r);
int visibleHeight = r.height();
if (rootViewVisibleHeight == 0) {
rootViewVisibleHeight = visibleHeight;
return;
}
//根视图显示高度没有变化,可以看作软键盘显示/隐藏状态没有改变
if (rootViewVisibleHeight == visibleHeight) {
return;
}
//根视图显示高度变小超过200,可以看作软键盘显示了
if (rootViewVisibleHeight - visibleHeight > 200) {
if (onSoftKeyBoardChangeListener != null) {
onSoftKeyBoardChangeListener.keyBoardShow(rootViewVisibleHeight - visibleHeight);
}
rootViewVisibleHeight = visibleHeight;
return;
}
//根视图显示高度变大超过200,可以看作软键盘隐藏了
if (visibleHeight - rootViewVisibleHeight > 200) {
if (onSoftKeyBoardChangeListener != null) {
onSoftKeyBoardChangeListener.keyBoardHide(visibleHeight - rootViewVisibleHeight);
}
rootViewVisibleHeight = visibleHeight;
return;
}
}
});
}
private void setOnSoftKeyBoardChangeListener(OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener) {
this.onSoftKeyBoardChangeListener = onSoftKeyBoardChangeListener;
}
public interface OnSoftKeyBoardChangeListener {
void keyBoardShow(int height);
void keyBoardHide(int height);
}
public static void setListener(Activity activity, OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener) {
SoftKeyBoardListener softKeyBoardListener = new SoftKeyBoardListener(activity);
softKeyBoardListener.setOnSoftKeyBoardChangeListener(onSoftKeyBoardChangeListener);
}
}
activity_main.xml
- <LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”
- xmlns:tools=”http://schemas.android.com/tools”
- android:layout_width=”match_parent”
- android:layout_height=”match_parent”
- android:orientation=”vertical”
- android:paddingBottom=”@dimen/activity_vertical_margin”
- android:paddingLeft=”@dimen/activity_horizontal_margin”
- android:paddingRight=”@dimen/activity_horizontal_margin”
- android:paddingTop=”@dimen/activity_vertical_margin”
- tools:context=”.MainActivity”>
- <TextView
- android:id=”@+id/textView”
- android:layout_width=”wrap_content”
- android:layout_height=”wrap_content”
- android:text=”高度:” />
- <EditText
- android:layout_width=”match_parent”
- android:layout_height=”40dp” />
- </LinearLayout>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="高度:" />
<EditText
android:layout_width="match_parent"
android:layout_height="40dp" />
</LinearLayout>