管與android軟鍵盤隱藏總結

來源:互聯網
上載者:User

轉載::Linux社區

1>軟鍵盤的狀態——隱藏或顯示。

一:自動彈出軟鍵盤

  1. Timer timer=new Timer();  
  2.         timer.schedule(new TimerTask() {  
  3.       
  4.             public void run() {  
  5.                 InputMethodManager inputMethodManager=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);  
  6.                 inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);  
  7.             }  
  8.         }, 2000); 

二:軟鍵盤

              Activity中設定:

 Android:windowSoftInputMode="stateUnspecified",預設設定:軟鍵盤的狀態(隱藏或可見)沒有被指定。系統將選擇一個合適的狀態或依賴於主題的設定。                                        "stateUnchanged", 軟鍵盤被保持上次的狀態。 "stateHidden", 當使用者選擇該Activity時,軟鍵盤被隱藏。                                        "stateAlwaysHidden", 軟鍵盤總是被隱藏的。 "stateVisible",. 軟鍵盤是可見的。                                        "stateAlwaysVisible", 當使用者選擇這個Activity時,軟鍵盤是可見的。 "adjustUnspecified", . 它不被指定是否該Activity主視窗調整大小以便留出軟鍵盤的空間, 或是否視窗上的內容得到螢幕上當前的焦點是可見的。系統將自動選擇這些模式中一種主要依賴於是否視窗的內容有任何布局視圖能夠滾動他們的內容。 如果有這樣的一個視圖,這個視窗將調整大小,這樣的假設可以使滾動視窗的內容在一個較小的地區中可見的。這個是主視窗預設的行為設定。也就是說, 系統自動決定是採用平移模式還是壓縮模式,決定因素在於內容是否可以滾動。                                        "adjustResize", (壓縮模式) 當軟鍵盤彈出時,要對主視窗調整螢幕的大小以便留出軟鍵盤的空間。 "adjustPan"] > (平移模式:當輸入框不會被遮擋時,該模式沒有對布局進行調整,然而當輸入框將要被遮擋時, 視窗就會進行平移。也就是說,該模式始終是保持輸入框為可見      . . .

三:隱藏軟鍵盤:

           EditText edit=(EditText)findViewById(R.id.edit);  
           InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

           imm.hideSoftInputFromWindow(edit.getWindowToken(),0);

4.EditText預設不彈出軟體機碼盤
方法一:
在AndroidMainfest.xml中選擇哪個activity,設定windowSoftInputMode屬性為adjustUnspecified|stateHidden
例如:<activity
Android:name=".Main"
                 
Android:label="@string/app_name"
                 
Android:windowSoftInputMode="adjustUnspecified|stateHidden"
                 
Android:configChanges="orientation|keyboardHidden">
            <intent-filter>
                <action
Android:name="android.intent.action.MAIN" />
                <category
Android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
方法二:
讓EditText失去焦點,使用EditText的clearFocus方法
例如:EditText edit=(EditText)findViewById(R.id.edit);
           edit.clearFocus();
方法三:
強制隱藏AndroidIME視窗
例如:EditText edit=(EditText)findViewById(R.id.edit);  
           InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

           imm.hideSoftInputFromWindow(edit.getWindowToken(),0);

5.EditText始終不彈出軟體機碼盤
例:EditText edit=(EditText)findViewById(R.id.edit);
       edit.setInputType(InputType.TYPE_NULL);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.