android中如何实现点击EditText输入框,其它布局悬浮在软键盘的上面

做项目的时候有个要求:低部的按钮,要在用户输入的时候,悬浮在软键盘的上面,效果如下所示

image.png
image.png

初步的实现方案

anroid中有一个属性android:windowSoftInputMode,是专门处理软键盘在界面中显示的各种问题,刚开始我也是一下子想到了这个方法,如果对android:windowSoftInputMode这个属性不熟悉的话,可以先看一下下面的截图(来源于:https://blog.csdn.net/twoicewoo/article/details/7384398

image.png

在AndroidManifest文件中配置如下代码:

 android:windowSoftInputMode="adjustResize"

效果如下:


image.png

是不是感觉so easy,有没有?其实经过测试我发现如果我这个Activity,有加载Theme主题样式的:

image.png

image.png

样式里面有一个背景图片:


image.png

那么在点击隐藏软键盘的时候,会出现如下的效果:


image.png

卧槽,可以看见底部的背景图片了,其实上面的写法属于极端的例子了,因为我效果图中页面都跟背景图搭不上边,所以这个Activity中可以不加这个背景图,效果就杠杆的!如果非要解决上面的情况,请看下面的第二种方法。

第二种实现方案

1、布局代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    style="@style/style_match_parent_white_bg"
    android:orientation="vertical"
    android:id="@+id/mRootView"
    tools:context="com.tecsun.tsb.tosharetreasure.activity.login.PerfectDataActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        >

        <include layout="@layout/layout_genal_tool_bar"/>

        <EditText
            android:layout_gravity="center"
            android:layout_margin="15dp"
            android:id="@+id/et_login_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/please_input_login_name"
            android:textColorHint="@color/CCCCCC"
            android:textColor="@color/black"
            android:background="@drawable/bg_edittext_select"
            android:singleLine="true"
            android:padding="@dimen/dp_4"
            />


        <EditText
            android:layout_gravity="center"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp"
            android:layout_marginBottom="15dp"
            android:id="@+id/et_birth_date"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/tip_birth_date"
            android:textColorHint="@color/CCCCCC"
            android:textColor="@color/black"
            android:background="@drawable/bg_edittext_select"
            android:singleLine="true"
            android:padding="@dimen/dp_4"
            android:drawableRight="@mipmap/ic_select_arrow"
            />

        <RadioGroup
            android:id="@+id/radioGroup"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:orientation="horizontal">

            <RadioButton
                android:id="@+id/btnMan"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="男"
                android:textColor="@color/black"
                android:checked="true"/>

            <RadioButton
                android:id="@+id/btnWoman"
                android:layout_marginLeft="50dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="@color/black"
                android:text="女"/>
        </RadioGroup>

        <EditText
            android:layout_gravity="center"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp"
            android:layout_marginBottom="15dp"
            android:id="@+id/et_pwd"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="设置密码(6-18位)"
            android:textColorHint="@color/CCCCCC"
            android:textColor="@color/black"
            android:background="@drawable/bg_edittext_select"
            android:singleLine="true"
            android:padding="@dimen/dp_4"
            />

    </LinearLayout>

    <Button
        android:layout_alignParentBottom="true"
        android:id="@+id/bt_start"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="开启旅程"
        android:textColor="@android:color/white"
        android:background="@color/c_blue_2"
        />

</RelativeLayout>
注意点:

一定要获取布局的根布局


image.png

1、WindowManagerUtils工具类

public class WindowManagerUtils {

    /**
     * 获取屏幕的宽度
     * @return
     */
    public static int getScreenWidth(){
        WindowManager wm = (WindowManager) getContext()
                .getSystemService(Context.WINDOW_SERVICE);

        int width = wm.getDefaultDisplay().getWidth();
        return width;
    }

    /**
     * 获取屏幕的高度
     * @return
     */
    public static int getScreenHight(){
        WindowManager wm = (WindowManager) getContext()
                .getSystemService(Context.WINDOW_SERVICE);

        int height = wm.getDefaultDisplay().getHeight();
        return height;
    }

    /**
     * 获取屏幕的高度的一半
     * @return
     */
    public static int getScreenPartHight(){
        WindowManager wm = (WindowManager) getContext()
                .getSystemService(Context.WINDOW_SERVICE);

        int height = wm.getDefaultDisplay().getHeight();
        return height/2;
    }

}

2、实现的核心代码

    @BindView(R.id.mRootView)
    RelativeLayout mRootView;
    /**
     * 初始化监听的方法
     */
    private void initListener() {
        showInputManager(etLoginName);
        showInputManager(etBirthDate);
        showInputManager(etPwd);
    }
 /**
     *
     * @param editText
     */
    private void showInputManager(EditText editText) {
        editText.setFocusable(true);
        editText.setFocusableInTouchMode(true);
        editText.requestFocus();

        /** 目前测试来看,还是挺准的
         * 原理:OnGlobalLayoutListener 每次布局变化时都会调用
         * 界面view 显示消失都会调用,软键盘显示与消失时都调用
         * */
        mRootView.getViewTreeObserver().addOnGlobalLayoutListener(mLayoutChangeListener);
        InputMethodManager inputManager =
                (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        inputManager.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);

    }

    ViewTreeObserver.OnGlobalLayoutListener mLayoutChangeListener = new ViewTreeObserver
            .OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            //判断窗口可见区域大小
            Rect r = new Rect();
            // getWindowVisibleDisplayFrame()会返回窗口的可见区域高度
            getWindow().getDecorView().getWindowVisibleDisplayFrame(r);
            //如果屏幕高度和Window可见区域高度差值大于整个屏幕高度的1/3,则表示软键盘显示中,否则软键盘为隐藏状态。
            int heightDifference = WindowManagerUtils.getScreenHight() - (r.bottom);
            boolean isKeyboardShowing = heightDifference > WindowManagerUtils.getScreenHight() / 3;
            if (isKeyboardShowing) {
                // bottomView 需要跟随软键盘移动的布局
                // setDuration(0) 默认300, 设置 0 ,表示动画执行时间为0,没有过程,只有动画结果了
                btStart.animate().translationY(-heightDifference).setDuration(0).start();
            } else {
                btStart.animate().translationY(0).start();
            }
        }
    };

这种动态测量高度的变化,其实更适合于多变的环境中,我比较倾向于第二种,这样就不用对着第一种的各个属性在那里一个个测试效果,看是不是适合,呜呜呜........

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容