使用 Dialog 制作緊貼輸入法頂部的輸入框

效果預(yù)覽

緊貼輸入法

特性

為保證輸入法的軟鍵盤和 Dialog 同時顯示脚曾、同時隱藏芬萍, AboveInputMethodDialog 已經(jīng)完成了如下處理:

  • Dialog 顯示時軟鍵盤自動彈出。
  • 點(diǎn)擊空白處夭谤,同時隱藏軟鍵盤和 Dialog港粱。
  • 點(diǎn)擊軟鍵盤上的收起按鈕,同時隱藏軟鍵盤和 Dialog呕臂。
  • 點(diǎn)擊系統(tǒng)返回鍵破托,同時隱藏軟鍵盤和 Dialog。
  • 切換到其他 APP 再返回歧蒋,軟鍵盤自動恢復(fù)彈出狀態(tài)土砂。
  • Home 鍵退出 APP 再返回,軟鍵盤自動恢復(fù)彈出狀態(tài)谜洽。
  • 息屏再亮屏萝映,軟鍵盤自動恢復(fù)彈出狀態(tài)。

實現(xiàn)方式

  1. copy 下面的完整代碼(加動畫是為了體驗更好一點(diǎn))阐虚。
  2. 寫一個類繼承 AboveInputMethodDialog 并實現(xiàn)兩個抽象方法序臂。
  3. 生成第 2 步自定義的對象并 show() 出來。

完整代碼

AboveInputMethodDialog.java

import android.app.Dialog;
import android.content.Context;
import android.support.annotation.LayoutRes;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.Gravity;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewConfiguration;
import android.view.Window;
import android.view.WindowManager.LayoutParams;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;

import com.paoword.www.paoword.R;

/**
 * Created by StoneHui on 2017/8/26.
 * <p>
 * 在輸入法頂部的對話框
 */
public abstract class AboveInputMethodDialog extends Dialog implements View.OnLayoutChangeListener {

    private int[] decorViewOutLocation = new int[2];
    private InputMethodManager inputMethodManager;

    // 最小偏移量
    private int dialogMinOffset;

    public AboveInputMethodDialog(Context context) {
        super(context, R.style.transparentBackgroundDiaolg);

        setContentView(getContextViewResource());

        updateWindow();

        setCancelable(true);
        setCanceledOnTouchOutside(false);

        inputMethodManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
    }

    @Override
    public void onWindowFocusChanged(boolean hasFocus) {
        super.onWindowFocusChanged(hasFocus);
        clearInputMethodStatusListener();
        if (!hasFocus || getWindow() == null) {
            // 失去焦點(diǎn)就隱藏輸入法
            hideInputMethod(getEditText());
        } else {
            // 獲得焦點(diǎn)就顯示輸入法
            View decorView = getWindow().getDecorView();
            decorView.postDelayed(() -> {
                listenInputMethodStatus();
                showInputMethod(getEditText());
            }, 100L);
        }
    }

    @Override
    public boolean onTouchEvent(@NonNull MotionEvent event) {
        //觸摸外部彈窗
        if (isOutOfBounds(getContext(), event)) {
            dismiss();
            return true;
        }
        return super.onTouchEvent(event);
    }

    @Override
    public void dismiss() {
        // 因為已經(jīng)對輸入法狀態(tài)做了監(jiān)聽敌呈,隱藏輸入法時會自動隱藏對話框贸宏。
        // 如果直接隱藏對話框,輸入法狀態(tài)監(jiān)聽不到磕洪,下次顯示對話框會有異常吭练。
        hideInputMethod(getEditText());
    }

    // 監(jiān)聽輸入法狀態(tài)
    private void listenInputMethodStatus() {
        if (getWindow() != null) {
            View decorView = getWindow().getDecorView();
            decorView.getLocationOnScreen(decorViewOutLocation);
            dialogMinOffset = decorViewOutLocation[1] / 3;
            decorView.addOnLayoutChangeListener(this);
        }
    }

    // 清理輸入法狀態(tài)監(jiān)聽
    private void clearInputMethodStatusListener() {
        if (getWindow() != null) {
            getWindow().getDecorView().removeOnLayoutChangeListener(this);
        }
    }

    @Override
    public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
        /*
         * 根據(jù)編輯框的位置變化確定輸入法是否隱藏。
         * 如果編輯框的位置相對于上次的位置向上偏移析显,說明輸入法彈出鲫咽。否則說明輸入法收起。
         */
        int oldY = decorViewOutLocation[1];
        v.getLocationOnScreen(decorViewOutLocation);
        // decorView 向下偏移谷异,且偏移量足夠大才認(rèn)為是輸入法隱藏分尸,此時關(guān)閉當(dāng)前對話框
        if (oldY < decorViewOutLocation[1] && decorViewOutLocation[1] - oldY > dialogMinOffset) {
            super.dismiss();
        }
    }

    // 更新彈窗樣式
    private void updateWindow() {
        Window window = getWindow();
        if (window != null) {
            //獲取對話框當(dāng)前的參數(shù)值
            LayoutParams params = window.getAttributes();
            params.gravity = Gravity.BOTTOM;
            params.width = LayoutParams.MATCH_PARENT;
            window.setAttributes(params);

            window.setWindowAnimations(R.style.anim_dialog_slide_from_bottom);
        }
    }

    // 點(diǎn)擊位置是否在對話框外部區(qū)域
    private boolean isOutOfBounds(Context context, MotionEvent event) {
        final int x = (int) event.getX();
        final int y = (int) event.getY();
        final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop();
        Window window = getWindow();
        if (window == null) return true;
        final View decorView = window.getDecorView();
        return (x < -slop) || (y < -slop) || (x > (decorView.getWidth() + slop))
                || (y > (decorView.getHeight() + slop));
    }

    // 顯示輸入法
    private void showInputMethod(EditText editText) {
        inputMethodManager.showSoftInput(editText, -1);
    }

    // 隱藏輸入法
    private void hideInputMethod(EditText editText) {
        inputMethodManager.hideSoftInputFromWindow(editText.getWindowToken(), 0);
    }

    /**
     * 獲取內(nèi)容視圖的資源id
     */
    @LayoutRes
    protected abstract int getContextViewResource();

    /**
     * 返回當(dāng)前 Dialog 中的 EditText。
     */
    @Nullable
    protected abstract EditText getEditText();

}

transparentBackgroundDiaolg

<!-- 全透明彈框背景 -->
<style name="transparentBackgroundDiaolg" parent="@android:style/Theme.Dialog">
    <item name="android:windowFrame">@null</item><!--邊框-->
    <item name="android:windowIsFloating">true</item><!--是否浮現(xiàn)在activity之上-->
    <item name="android:windowIsTranslucent">false</item><!--半透明-->
    <item name="android:windowNoTitle">true</item><!--無標(biāo)題-->
    <item name="android:windowBackground">@color/transparent</item><!--背景透明-->
    <item name="android:backgroundDimEnabled">false</item><!--模糊-->
</style>

slide_bottom_fade_in.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:duration="300" android:fromYDelta="100.0%p" android:toYDelta="0.0" />
    <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="300" />
</set>

slide_bottom_fade_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:duration="300" android:fromYDelta="0.0" android:toYDelta="100.0%p" />
    <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="300" />
</set>

anim_dialog_slide_from_bottom

<style name="anim_dialog_slide_from_bottom" parent="android:Animation">
    <item name="android:windowEnterAnimation">@anim/slide_bottom_fade_in</item>
    <item name="android:windowExitAnimation">@anim/slide_bottom_fade_out</item>
</style>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末歹嘹,一起剝皮案震驚了整個濱河市箩绍,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌尺上,老刑警劉巖材蛛,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異怎抛,居然都是意外死亡卑吭,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門马绝,熙熙樓的掌柜王于貴愁眉苦臉地迎上來豆赏,“玉大人,你說我怎么就攤上這事≈腊睿” “怎么了白胀?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長耙饰。 經(jīng)常有香客問我纹笼,道長,這世上最難降的妖魔是什么苟跪? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任廷痘,我火速辦了婚禮,結(jié)果婚禮上件已,老公的妹妹穿的比我還像新娘笋额。我一直安慰自己,他們只是感情好篷扩,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布兄猩。 她就那樣靜靜地躺著,像睡著了一般鉴未。 火紅的嫁衣襯著肌膚如雪枢冤。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天铜秆,我揣著相機(jī)與錄音淹真,去河邊找鬼。 笑死连茧,一個胖子當(dāng)著我的面吹牛核蘸,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播啸驯,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼客扎,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了罚斗?” 一聲冷哼從身側(cè)響起徙鱼,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎针姿,沒想到半個月后袱吆,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡搓幌,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年杆故,在試婚紗的時候發(fā)現(xiàn)自己被綠了迅箩。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片溉愁。...
    茶點(diǎn)故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出拐揭,到底是詐尸還是另有隱情撤蟆,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布堂污,位于F島的核電站家肯,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏盟猖。R本人自食惡果不足惜讨衣,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望式镐。 院中可真熱鬧反镇,春花似錦、人聲如沸娘汞。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽你弦。三九已至惊豺,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間禽作,已是汗流浹背尸昧。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留领迈,地道東北人彻磁。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像狸捅,于是被迫代替她去往敵國和親衷蜓。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容