溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android監(jiān)聽軟鍵盤彈出與隱藏的兩種方法

發(fā)布時間:2020-09-27 08:01:35 來源:腳本之家 閱讀:463 作者:JJoom 欄目:移動開發(fā)

需求:

現(xiàn)在有一個需求是點擊一行文本框,彈出一個之前隱藏的輸入框,輸入完成后按返回鍵或者其他的東西隱藏鍵盤和輸入框,將輸入框的內(nèi)容填充到文本框中。

實現(xiàn):

拿到這個需求的第一反應就是寫一個監(jiān)聽來監(jiān)聽鍵盤的顯示和隱藏來控制輸入框的顯示和隱藏,控制文本框中的內(nèi)容。
所以我做了如下操作:

  1. 指定android:windowSoftInputMode="adjustResize|stateAlwaysHidden"這個的做法是為了讓鍵盤彈出時改變布局。
  2. 讓Activity實現(xiàn)LayoutchangeListener,監(jiān)聽布局的改變,當布局發(fā)生的改變?yōu)槠聊坏?/3時我們認為是鍵盤導致的。
@Override 
 public void onLayoutChange(View v, int left, int top, int right, 
     int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) { 

   //old是改變前的左上右下坐標點值,沒有old的是改變后的左上右下坐標點值 

   //現(xiàn)在認為只要控件將Activity向上推的高度超過了1/3屏幕高,就認為軟鍵盤彈起 
   if(oldBottom != 0 && bottom != 0 &&(oldBottom - bottom > keyHeight)){ 

     Toast.makeText(MainActivity.this, "監(jiān)聽到軟鍵盤彈起...", Toast.LENGTH_SHORT).show(); 

   }else if(oldBottom != 0 && bottom != 0 &&(bottom - oldBottom > keyHeight)){ 

     Toast.makeText(MainActivity.this, "監(jiān)聽到軟件盤關閉...", Toast.LENGTH_SHORT).show(); 

   } 

 }

問題:

沒錯,這樣確實是能夠做到監(jiān)聽軟鍵盤的彈出和隱藏,這一切都是因為之前設置了indowSoftInputMode=adjustResize,但是當全屏模式下是這個屬性是無效的,鍵盤彈出和隱藏并不會觸發(fā)onLayouChangeListener。

而項目中使用了SystemBarTintManager之后,Activity就變成了全屏模式所以我做了如下操作

//contentlayout是最外層布局
mChildOfContent = contentlayout.getChildAt(0);
mChildOfContent.getViewTreeObserver()
.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {  
   public void onGlobalLayout() {    
       possiblyResizeChildOfContent();  
}});

private void possiblyResizeChildOfContent() {  
int usableHeightNow = computeUsableHeight();  
if (usableHeightNow != usableHeightPrevious) {    
   int usableHeightSansKeyboard = mChildOfContent.getRootView().getHeight();    
   int heightDifference = usableHeightSansKeyboard - usableHeightNow;    
   if (heightDifference > (usableHeightSansKeyboard / 4)) {      
   // 鍵盤彈出    
   } else {      
   // 鍵盤收起      
   productInfo.setVisibility(View.GONE);      
   productInfoEnd.setText(productInfo.getText().toString());    
}    
   mChildOfContent.requestLayout();    
    usableHeightPrevious = usableHeightNow;  
}
}
private int computeUsableHeight() {  
 Rect r = new Rect();  
mChildOfContent.getWindowVisibleDisplayFrame(r);  
return (r.bottom - r.top);}

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI