Android虛擬鍵盤彈出時擋住EditText解決方案——轉

來源:互聯網
上載者:User

原文地址:http://blog.csdn.net/hopezhangbo/article/details/7384026

 

在manifest的activity節點使用 Xml代碼

<activity android:windowSoftInputMode="adjustResize"/>

android:windowSoftInputMode的使用。

activity如何與軟鍵盤互動。這個屬性的設定將會影響兩件事情:

1>  軟鍵盤的狀態——是否它是隱藏或顯示——當活動(Activity)成為使用者關注的焦點。

2>  活動的主視窗調整——是否減少活動主視窗大小以便騰出空間放軟鍵盤或是否當使用中視窗的部分被軟鍵盤覆蓋時它的內容的當前焦點是可見的。

要預設隱藏IME

  1. <activity  
  2.             android:name="ViewActivity"  
  3.             android:label="@string/app_name"  
  4.             android:windowSoftInputMode="adjustUnspecified|stateHidden"   
  5.             android:configChanges="orientation|keyboardHidden">  
  6. </activity>  

果要預設顯示IME

 

  1. <activity  
  2.             android:name="ViewActivity"  
  3.             android:label="@string/app_name"  
  4.             android:windowSoftInputMode="stateVisible "   
  5.             android:configChanges="orientation|keyboardHidden">  
  6. </activity> 

2:

有些手機可能用上訴方法無法奏效,那可以用以下方法:

在EditText的布局檔案裡添加ScrollView,當點擊EditText時控制項會滑動,當失去焦點時捲軸會隱藏。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.