您好,登錄后才能下訂單哦!
snackbar比toast好看多了,所以新的app我把所有的toast都替換成了snackbar。
關于關閉鍵盤,android沒有直接提供給我們方法提供,可以使用如下方法
/**
* 關閉鍵盤
*/
@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN_MR1)
public static void disappearKeybaroad(Activity context) {
InputMethodManager imm = (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE);
if (isSoftShowing(context)) {//先判斷鍵盤是否是開啟狀態,是則關閉
imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
}
}
/**
* 判斷鍵盤是否在顯示
*/
@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN_MR1)
public static boolean isSoftShowing(Activity context) {
//獲取當前屏幕內容的高度
int screenHeight = context.getWindow().getDecorView().getHeight();
//獲取View可見區域的bottom
Rect rect = new Rect();
context.getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);
return screenHeight - rect.bottom - getSoftButtonsBarHeight(context) != 0;
}
/**
* 底部虛擬按鍵欄的高度
*
* @return
*/
@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN_MR1)
private static int getSoftButtonsBarHeight(Activity activity) {
DisplayMetrics metrics = new DisplayMetrics();
//這個方法獲取可能不是真實屏幕的高度
activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
int usableHeight = metrics.heightPixels;
//獲取當前屏幕的真實高度
activity.getWindowManager().getDefaultDisplay().getRealMetrics(metrics);
int realHeight = metrics.heightPixels;
if (realHeight > usableHeight) {
return realHeight - usableHeight;
} else {
return 0;
}
}
關于這樣的做法相對于關閉鍵盤要簡單的多,只需要在manifests中為對應的activity加上這句配置即可:
這條配置的主要作用就是讓鍵盤不要擋住我們輸入的內容,對應的activity有了以上配置就可以實現上述效果了O(∩_∩)O
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。