作者:书友48169582 | 来源:互联网 | 2024-10-30 15:06
为了优化直播应用底部聊天框的弹出机制,确保在不同设备上的布局稳定性和兼容性,特别是在配备虚拟按键的设备上,我们对用户交互流程进行了调整。首次打开应用时,需先点击首个输入框以准确获取键盘高度,避免直接点击第二个输入框导致的整体布局挤压问题。此优化通过调整`activity_main.xml`布局文件实现,确保了更好的用户体验和界面适配。
效果图,如上
注意打开应用后,要点击第一个输入框,这是因为先要获取一次键盘的高度,不然首先点击第二个输入框,会出现整体布局挤压的现象。
布局文件
activity_main.xml
"1.0"
encoding=
"utf-8"?>
"http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_hljs-string">"match_parent"
android:layout_hljs-string">"match_parent"
android:background="@drawable/splash"
tools:cOntext="org.dync.softkeyboarddemo.MainActivity">
android:id="@+id/edt"
android:layout_hljs-string">"wrap_content"
android:layout_hljs-string">"wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:hint="获取键盘高度"/>
android:layout_hljs-string">"wrap_content"
android:layout_hljs-string">"wrap_content"
android:text="键盘高度"
android:id="@+id/text"
android:layout_below="@+id/edt"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
android:id="@+id/editText"
android:layout_hljs-string">"match_parent"
android:layout_hljs-string">"wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
在Activity中你只需编写以下代码就可实现底部EditText随键盘移动。
MainActivity
SoftKeyboardUtil.observeSoftKeyboard(activity, new SoftKeyboardUtil.OnSoftKeyboardChangeListener() {
@Override
public void onSoftKeyBoardChange(int softKeybardHeight, boolean isShow) {
mSoftKeybardHeight = softKeybardHeight;
isOpen = isShow;
if (isShow) {
onShowKeyboard(softKeybardHeight);
if (isTouch) {
editText.animate().translationYBy(-softKeybardHeight).setDuration(duration).start();
}
Log.e("TAG", "isShow--平移高度:" + -mSoftKeybardHeight);
} else {
onHideKeyboard(softKeybardHeight);
editText.animate().translationYBy(softKeybardHeight).setDuration(duration).start();
Log.e("TAG", "isHide--平移高度:" + mSoftKeybardHeight);
isTouch = true;
}
}
}
});
editText.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Log.e("TAG", "--onTouch--");
if (!isOpen) {
if (isTouch) {
isTouch = false;
editText.animate().translationYBy(-mSoftKeybardHeight).setDuration(duration).start();
Log.e("TAG", "平移高度:" + -mSoftKeybardHeight);
new Handler().postDelayed(new Runnable() {
public void run() {
SoftKeyboardUtil.showKeyboard(activity, editText);
}
}, duration);
}
}
return false;
}
});
...
@Override
protected void onDestroy() {
super.onDestroy();
SoftKeyboardUtil.removeGlobalOnLayoutListener(this);
}
代码详情请到github上预览。
转载请注明出处,谢谢!