2014-12-02 61 views
5

這是圖片:鍵盤上的EditText上的第二次點擊

enter image description here

當我點擊了「確認密碼」的EditText,首次,它工作的方式應該 - 佈局彈出這樣我可以在選定的EditText中輸入文本,但是當我關閉鍵盤(即EditText仍然聚焦)並再次單擊相同的EditText時,它保持在鍵盤下。

主佈局是RelativeLayout,輸入字段在ScrollView中,按鈕在LinearLayout中對齊到父級底部。

在清單中我有android:windowSoftInputMode="adjustPan"

這是一些Android的問題還是我一直在做錯什麼?

+0

嘗試windowSoftInputMode =「adjustNothing」 – Nitesh 2014-12-02 11:07:02

+0

不是:/不是解決方案。 – user3572576 2014-12-02 11:08:56

+0

還有其他幾個標誌,試試吧。 – Nitesh 2014-12-02 11:16:29

回答

4

這實際上是EditText中的一個錯誤。嘗試去除重力EditText,這可能是center_horizontalcenter

從另一個問題得到答案。檢查this

0

我剛剛爲這個問題提供了一個解決方法,我得到了我的編輯文本,以不太好的解決方案在屏幕中間啓動文本,但它適用於我。代碼是這一個:

 <EditText 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:paddingStart="130sp" 
     android:paddingEnd="50sp" 
     android:descendantFocusability="beforeDescendants" 
     android:focusableInTouchMode="true" 
     android:gravity="bottom"/>