Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 初級開發 >> Android軟鍵盤的隱藏顯示研究

Android軟鍵盤的隱藏顯示研究

編輯:初級開發

android是一個針對觸摸屏專門設計的操作系統,當點擊編輯框,系統自動為用戶彈出軟鍵盤,以便用戶進行輸入。
    那麼,彈出軟鍵盤後必然會造成原有布局高度的減少,那麼系統應該如何來處理布局的減少?我們能否在應用程序中進行自定義的控制?這些是本文要討論的重 點。

    public class ResizeLayout extends LinearLayout{ 

  •     private static int count = 0; 
  •      
  •     public ResizeLayout(Context context, AttributeSet attrs) { 
  •         super(context, attrs); 
  •     } 
  •      
  •     @Override 
  •     protected void onSizeChanged(int w, int h, int oldw, int oldh) {     
  •         super.onSizeChanged(w, h, oldw, oldh); 
  •          
  •         Log.e("onSizeChanged " + count++, "=>onResize called! w="+w + ",h="+h+",oldw="+oldw+",oldh="+oldh); 
  •     } 
  •      
  •     @Override 
  •     protected void onLayout(boolean changed, int l, int t, int r, int b) { 
  •         super.onLayout(changed, l, t, r, b); 
  •         Log.e("onLayout " + count++, "=>OnLayout called! l=" + l + ", t=" + t + ",r=" + r + ",b="+b); 
  •     } 
  •      
  •     @Override 
  •     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
  •         super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
  •          
  •         Log.e("onMeasure " + count++, "=>onMeasure called! widthMeasureSpec=" + widthMeasureSpec + ", heightMeasureSpec=" + heightMeasureSpec); 
  •     } 
  •     我們的布局設置為:

  • <com.winuxxan.inputMethodTest.ResizeLayout  
  •     XMLns:android="http://schemas.android.com/apk/res/android" 
  •     android:id="@+id/root_layout" 
  •     android:layout_width="fill_parent" 
  •     android:layout_height="fill_parent" 
  •     android:orIEntation="vertical" 
  •     > 
  •      
  •     <EditText 
  •         android:layout_width="fill_parent"  
  •         android:layout_height="wrap_content"  
  •     /> 
  •    
  •     <LinearLayout 
  •             android:id="@+id/bottom_layout" 
  •             android:layout_width="fill_parent"  
  •             android:layout_height="fill_parent"  
  •             android:orIEntation="vertical" 
  •             android:gravity="bottom">s 
  •     
  •     <TextVIEw   
  •         android:layout_width="fill_parent"  
  •         android:layout_height="wrap_content"  
  •         android:text="@string/hello" 
  •         android:background="#77777777" 
  •       /> 
  •    </LinearLayout> 
  • </com.winuxxan.inputMethodTest.ResizeLayout> 
  •     androidManifest.XML的Activity設置屬性:android:WindowsoftInputMode = "adjustResize"     E/onMeasure 6(7960): =>onMeasure called! widthMeasureSpec=1073742144, heightMeasureSpec = 1073742024
        E/onMeasure 7(7960): =>onMeasure called! widthMeasureSpec=1073742144, heightMeasureSpec = 1073742025
        E/onSizeChanged 8(7960): =>onSizeChanged called! w=320,h=201,oldw=320,oldh=377
        E/onLayout 9(7960): =>OnLayout called! l=0, t=0,r=320,b=201
        從調試結果我們可以看出,當我們點擊文本框後,根布局調用了onMeasure,onSizeChanged和onLayout。
        實際上,當設置為adjustResize後,軟鍵盤彈出時,要對主窗口布局重新進行measure和layout,而在layout時,發現窗口的大 小發生的變化,因此調用了onSizeChanged。
        從下圖的運行結果我們也可以看出,原本在下方的TextVIEw被頂到了輸入法的上方。

    Android軟鍵盤的隱藏顯示研究     Android軟鍵盤的隱藏顯示研究

        模式二,平移模式
        WindowsoftInputMode的值如果設置為adjustPan,那麼該Activity主窗口並不調整屏幕的大小以便留出軟鍵盤的空間。相 反,當前窗口的內容將自動移動以便當前焦點從不被鍵盤覆蓋和用戶能總是看到輸入內容的部分。這個通常是不期望比調整大小,因為用戶可能關閉軟鍵盤以便獲得 與被覆蓋內容的交互操作。
        上面的例子中,我們將androidManifest.XML的屬性進行更改:android: WindowsoftInputMode = "adjustPan"     重新運行,並點擊文本框,查看調試信息:
        E/onMeasure 6(8378): =>onMeasure called! widthMeasureSpec=1073742144, heightMeasureSpec=1073742200
        E/onMeasure 7(8378): =>onMeasure called! widthMeasureSpec=1073742144, heightMeasureSpec=1073742201
        E/onLayout 8(8378): =>OnLayout called! l=0, t=0,r=320,b=377
        我們看到:系統也重新進行了measrue和layout,但是我們發現,layout過程中onSizeChanged並沒有調用,這說明輸入法彈出 前後並沒有改變原有布局的大小。
        從下圖的運行結果我們可以看到,下方的TextVIEw並沒有被頂到輸入法上方。

    Android軟鍵盤的隱藏顯示研究     Android軟鍵盤的隱藏顯示研究

        事實上,當輸入框不會被遮擋時,該模式沒有對布局進行調整,然而當輸入框將要被遮擋時,窗口就會進行平移。也就是說,該模式始終是保持輸入框為可見。如 下圖,整個窗口,包括標題欄均被上移,以保證文本框可見。

    Android軟鍵盤的隱藏顯示研究     Android軟鍵盤的隱藏顯示研究

        模式三 自動模式
        當屬性WindowsoftInputMode被設置為adjustUspecifIEd時,它不被指定是否該Activity主窗口調整大小以便留出 軟鍵盤的空間,或是否窗口上的內容得到屏幕上當前的焦點是可見的。系統將自動選擇這些模式中一種主要依賴於是否窗口的內容有任何布局視圖能夠滾動他們的內 容。如果有這樣的一個視圖,這個窗口將調整大小,這樣的假設可以使滾動窗口的內容在一個較小的區域中可見的。這個是主窗口默認的行為設置。
        也就是說,系統自動決定是采用平移模式還是壓縮模式,決定因素在於內容是否可以滾動。

        三、偵聽軟鍵盤的顯示隱藏     直接對軟鍵盤的顯示隱藏偵聽的方法本人沒有找到,如果哪位找到的方法請務必告訴本人一聲。還有本方法針對壓縮模式,平移模式不一定有效。
        我們可以借助軟鍵盤顯示和隱藏時,對主窗口進行了重新布局這個特性來進行偵聽。如果我們設置的模式為壓縮模式,那麼我們可以對布局的 onSizeChanged函數進行跟蹤,如果為平移模式,那麼該函數可能不會被調用。     假設跟布局為線性布局,模式為壓縮模式,我們寫一個例子,當輸入法彈出時隱藏某個view,輸入法隱藏時顯示某個vIEw。

  • public class ResizeLayout extends LinearLayout{  
  •     private OnResizeListener mListener; 
  •      
  •     public interface OnResizeListener { 
  •         void OnResize(int w, int h, int oldw, int oldh); 
  •     } 
  •      
  •     public void setOnResizeListener(OnResizeListener l) { 
  •         mListener = l; 
  •     } 
  •      
  •     public ResizeLayout(Context context, AttributeSet attrs) { 
  •         super(context, attrs); 
  •     } 
  •      
  •     @Override 
  •     protected void onSizeChanged(int w, int h, int oldw, int oldh) {     
  •         super.onSizeChanged(w, h, oldw, oldh); 
  •          
  •         if (mListener != null) { 
  •             mListener.OnResize(w, h, oldw, oldh); 
  •         } 
  •     } 
  •     在我們的Activity中,通過如下方法調用:

  • public class InputMethodTestActivity extends Activity { 
  •     private static final int BIGGER = 1; 
  •     private static final int SMALLER = 2; 
  •     private static final int MSG_RESIZE = 1; 
  •      
  •     private static final int HEIGHT_THREADHOLD = 30; 
  •      
  •     class InputHandler extends Handler { 
  •         @Override 
  •         public void handleMessage(Message msg) { 
  •             switch (msg.what) { 
  •             case MSG_RESIZE: { 
  •                 if (msg.arg1 == BIGGER) { 
  •                     findViewById(R.id.bottom_layout).setVisibility(VIEw.VISIBLE); 
  •                 } else { 
  •                     findViewById(R.id.bottom_layout).setVisibility(VIEw.GONE); 
  •                 } 
  •             } 
  •                 break; 
  •             default: 
  •                 break; 
  •             } 
  •             super.handleMessage(msg); 
  •         } 
  •     } 
  •      
  •     private InputHandler mHandler = new InputHandler(); 
  •      
  •     /** Called when the activity is first created. */ 
  •     @Override 
  •     public void onCreate(Bundle savedInstanceState) { 
  •         super.onCreate(savedInstanceState); 
  •         setContentVIEw(R.layout.main); 
  •          
  •         ResizeLayout layout = (ResizeLayout) findVIEwById(R.id.root_layout); 
  •         layout.setOnResizeListener(new ResizeLayout.OnResizeListener() { 
  •              
  •             public void OnResize(int w, int h, int oldw, int oldh) { 
  •                 int change = BIGGER; 
  •                 if (h < oldh) { 
  •                     change = SMALLER; 
  •                 } 
  •                                  
  •                 Message msg = new Message(); 
  •                 msg.what = 1; 
  •                 msg.arg1 = change; 
  •                 mHandler.sendMessage(msg); 
  •             } 
  •         }); 
  •     } 
  •     這裡特別需要注意的是,不能直接在OnResizeListener中對要改變的View進行更改,因為OnSizeChanged函數實際上是運行在 View的layout方法中,如果直接在onSizeChange中改變vIEw的顯示屬性,那麼很可能需要重新調用layout方法才能顯示正確。然 而我們的方法又是在layout中調用的,因此會出現錯誤。因此我們在例子中采用了Handler的方法。

    Android軟鍵盤的隱藏顯示研究     Android軟鍵盤的隱藏顯示研究

    1. 上一頁:
    2. 下一頁:
    熱門文章
    閱讀排行版
    Copyright © Android教程網 All Rights Reserved