效果預(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)方式
- copy 下面的完整代碼(加動畫是為了體驗更好一點(diǎn))阐虚。
- 寫一個類繼承
AboveInputMethodDialog
并實現(xiàn)兩個抽象方法序臂。 - 生成第 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>