Android 软键盘踩坑记

作者 : 开心源码 本文共6867个字,预计阅读时间需要18分钟 发布时间: 2022-05-12 共213人阅读

分享一篇关于软键盘的采坑记,希望对大家在开发过程中能有帮助。

最近在开发一个朋友圈产品的时候遇到一个bug:软键盘遮罩,在处理的过程中我通过百度、谷歌查找了好半天,最终经历了一番坎坷才处理,具体过程且听我娓娓道来!

一、windowSoftInputMode

这个是在遇到软键盘相关的问题,脑子里第一个想到的知识点,但是效果如何呢?能处理问题,但是不完美! 先看没有处理的效果图:

就是说当一个列表的最后一项需要输入时,软键盘会将EditText完全遮罩! 其实将就一下这个效果也可以,但是我们可以选择不将就——死磕究竟!因而我们来看看 windowSoftInputMode 怎样处理这个问题?

上面的表格说明了两个问题:软键盘显示与Activity响应策略。在上面的项目中,软键盘显示是没有问题的,只是Activity的部分内容被遮罩,可以调整策略处理的。那么我们来依次尝试一下这些个响应策略!

  • stateUnspecified:

默认的策略一进来软键盘就将底部遮挡了,我们都无法操作底部的 item ,因而我们需要进来时不显示软键盘,添加一个策略

    android:windowSoftInputMode="stateHidden|stateUnspecified"

现在进来倒是不显示了,但是点击底部的item时还是一样会被遮挡:

  • adjustPan:
    android:windowSoftInputMode="stateHidden|stateUnspecified"

adjustPan 策略的确将 Activity 主窗口平移上去了,但是我的 Title 部分也平移上去了!这就是我说的不完美的地方,那么我们试一下主窗口重绘呢?

  • adjustResize :
    android:windowSoftInputMode="stateHidden|adjustResize"

adjustResize 策略并没有起到作用,底部的输入界面仍然被遮罩了,这里我只能接受 adjustPan 策略了!但是还有一个 adjustNoting 策略看看会不会是一样?既然死磕,咱们就一个一个都试个遍!

  • adjustNoting
    android:windowSoftInputMode="stateHidden|adjustNothing"

很好,果然没有令我们失望,的确是不行!

而 ConstraintLayout、RelativeLayout 以及 FrameLayout 布局将 EditText 置于布局底部测试默认是正常的。

但是为什么微信聊天页面使用 RecyclerView 布局的效果不是这样的啊?为此我联络到了一个仿朋友圈的大神,他告诉了我第二种方法:动态计算软键盘的高度

二、动态计算软键盘高度

动态计算软键盘的高度这一块,我们添加一个难度,就是添加软键盘与 EditText 之间的间距,说起来笼统,还是上图:

至于为什么要添加难度,还不是产品要求……既然人家能实现,咱也努把力实现呗!因为动态计算软键盘高度这件事,咱们不需要再设置 SoftInputMode 了,由于整个过程纯手工操作,不需要系统其它 api 支持了!

  1. 首先,我们需要做少量准备工作,将软键盘与主页内容剥离,主页内容就是一个 RecyclerView ,软键盘部分是一个布局包含的 EditText ,软键盘布局如图:

  1. 将上面的软键盘进行封装,这个是重点。说起来比较笼统,就上一张流程图和代码:

    public class EmojiPanelView extends LinearLayout implements OnKeyBoardStateListener {    ···     public EmojiPanelView(Context context) {        super(context);        init();    }     private void init() {        View itemView = LayoutInflater.from(getContext()).inflate(R.layout.view_emoji_panel, this, false);        mEditText = itemView.findViewById(R.id.edit_text);        mEditText.setOnTouchListener((v, event) -> {            showSoftKeyBoard();            return true;        });        mImageSwitch = itemView.findViewById(R.id.img_switch);        mImageSwitch.setOnClickListener(v -> {            if (isKeyBoardShow) {                mImageSwitch.setImageResource(R.drawable.input_keyboard_drawable);                changeLayoutNullParams(false);                hideSoftKeyBoard();                changeEmojiPanelParams(mKeyBoardHeight);            } else {                mImageSwitch.setImageResource(R.drawable.input_smile_drawable);                showSoftKeyBoard();            }        });        ···        addOnSoftKeyBoardVisibleListener((Activity) getContext(), this);        addView(itemView);    } @Override    public boolean onTouchEvent(MotionEvent event) {        if (event.getY() < Utils.getScreenHeight() - Utils.dp2px(254f) && isShowing()) {            dismiss();        }        return super.onTouchEvent(event);    }private void showSoftKeyBoard() {        InputMethodManager inputMethodManager = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);        if (inputMethodManager != null && mEditText != null) {            mEditText.post(() -> {                mEditText.requestFocus();                inputMethodManager.showSoftInput(mEditText, 0);            });            new Handler().postDelayed(() -> {                changeLayoutNullParams(true);                changeEmojiPanelParams(0);            }, 200);        }    }    private void hideSoftKeyBoard() {        InputMethodManager inputMethodManager = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);        if (inputMethodManager != null && mEditText != null) {            inputMethodManager.hideSoftInputFromWindow(mEditText.getWindowToken(), 0);        }    } private void changeLayoutNullParams(boolean isShowSoftKeyBoard) {        LinearLayout.LayoutParams params = (LayoutParams) mLayoutNull.getLayoutParams();        if (isShowSoftKeyBoard) {            params.weight = 1;            params.height = 0;            mLayoutNull.setLayoutParams(params);        } else {            params.weight = 0;            params.height = mDisplayHeight;            mLayoutNull.setLayoutParams(params);        }    }    private void changeEmojiPanelParams(int keyboardHeight) {        if (mLayoutEmojiPanel != null) {            LinearLayout.LayoutParams params = (LayoutParams) mLayoutEmojiPanel.getLayoutParams();            params.height = keyboardHeight;            mLayoutEmojiPanel.setLayoutParams(params);        }    }    boolean isVisiableForLast = false;    public void addOnSoftKeyBoardVisibleListener(Activity activity, final OnKeyBoardStateListener listener) {        final View decorView = activity.getWindow().getDecorView();        decorView.getViewTreeObserver().addOnGlobalLayoutListener(() -> {            Rect rect = new Rect();            decorView.getWindowVisibleDisplayFrame(rect);            //计算出可见屏幕的高度            int displayHight = rect.bottom - rect.top;            //取得屏幕整体的高度            int hight = decorView.getHeight();            //取得键盘高度            int keyboardHeight = hight - displayHight - Utils.calcStatusBarHeight(getContext());            boolean visible = (double) displayHight / hight < 0.8;            if (visible != isVisiableForLast) {                listener.onSoftKeyBoardState(visible, keyboardHeight, displayHight - Utils.dp2px(48f));            }            isVisiableForLast = visible;        });    }    @Override    public void onSoftKeyBoardState(boolean visible, int keyboardHeight, int displayHeight) {        this.isKeyBoardShow = visible;        if (visible) {            mKeyBoardHeight = keyboardHeight;            mDisplayHeight = displayHeight;        }    }    }
  1. 将自己设置的布局加入到主页内容当中,而后我们不用设置 windowSoftInputMode 即可以了。布局:
   <?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout        xmlns:android="http://schemas.android.com/apk/res/android"        xmlns:tools="http://schemas.android.com/tools"        xmlns:app="http://schemas.android.com/apk/res-auto"        android:layout_width="match_parent"        android:layout_height="match_parent"        tools:context=".ui.CustomActivity">    <include            android:id="@+id/custom_top_layout"            layout="@layout/toolbar_layout"/>    <android.support.v7.widget.RecyclerView            android:id="@+id/custom_items"            android:layout_width="match_parent"            android:layout_height="0dp"            app:layout_constraintTop_toBottomOf="@+id/custom_top_layout"            app:layout_constraintBottom_toBottomOf="parent"            app:layout_constraintStart_toStartOf="parent"            app:layout_constraintEnd_toEndOf="parent"    >    </android.support.v7.widget.RecyclerView>    <com.sasucen.softinput.widget.EmojiPanelView            android:id="@+id/layout_face_panel"            android:layout_width="match_parent"            android:layout_height="match_parent"            app:layout_constraintBottom_toBottomOf="parent">    </com.sasucen.softinput.widget.EmojiPanelView></android.support.constraint.ConstraintLayout>

效果图:

这个效果还是不错的,但是现在大部分APP都是沉迷式状态栏了,那么我们也加上沉迷式状态栏看看!

哦豁,输入框被遮罩了!接下来咱们进入第三步——最终填坑!

最终填坑


我在走到这个地方的时候,当时记得抓瞎。百度了好多都没有提及提及软键盘遮罩和沉迷式状态栏之间的联络,使用windowSoftInputMode 的时候有效果,但是并不理想,由于EditText与软键盘没有间距了,如下图。

后来咨询上面的大佬的时候,他给了我一个思路——状态栏高度的丢失。后来我尝试在屏幕可见高度以及屏幕整体高度的尺寸上做计算,结果都失败了,EditText 完全被遮罩!由于不论 layout 添加还是还是减少状态栏的高度,EditText 的位置始终在软键盘遮罩的位置。原本打算通过设置 titbar 的 padding 和修改状态栏的颜色,实现沉迷式状态栏,但是钻牛角尖的我始终不甘心!后来想起之前看到的一篇文章随手记技术团队的博客详情“fitsSystemWindows”属性的说明,于是我进行了尝试:

  <?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout        xmlns:android="http://schemas.android.com/apk/res/android"        xmlns:tools="http://schemas.android.com/tools"        xmlns:app="http://schemas.android.com/apk/res-auto"        android:layout_width="match_parent"        android:layout_height="match_parent"        tools:context=".ui.CustomActivity">   ······    <com.sasucen.softinput.widget.EmojiPanelView            android:id="@+id/layout_face_panel"            android:layout_width="match_parent"            android:layout_height="match_parent"            android:fitsSystemWindows="true"            app:layout_constraintBottom_toBottomOf="parent">    </com.sasucen.softinput.widget.EmojiPanelView></android.support.constraint.ConstraintLayout>


以上所述即是我自己关于软键盘的踩坑总结,希望自己在下次不清楚的时候可以回来看看,也希望可以帮助到有需要的人。如有谬误,还请各位指正!

源码

最后文末放上一个技术交流群:Android IOC架构设计

群内有许多技术大牛,有任何疑问,欢迎广大网友一起来交流,群内还不定期免费分享高阶Android学习视频资料和面试资料包~

再推荐一篇文章:“寒冬未过”,阿里P9架构分享Android必备技术点,让你offer拿到手软!

说明
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是摆设,本站源码仅提供给会员学习使用!
7. 如遇到加密压缩包,请使用360解压,如遇到无法解压的请联系管理员
开心源码网 » Android 软键盘踩坑记

发表回复