0

我有一個edittext,它成功定位在軟件鍵盤上方,當它打開。問題在於,當鍵盤打開時,鍵盤可見,約2秒後edittext被定位。在鍵盤打開的情況下,在頁面底部顯示的edittext如何使用鍵盤動畫?位置EditText以上軟件鍵盤延遲

回答

0

使用滾動型在你的父容器EDITTEXT

<ScrollView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
    <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 
     <EditText 
       android:layout_width="match_parent" 
       android:layout_height="match_parent"/> 
    </LinearLayout> 

</ScrollView> 

和這AndroidManifest

android:configChanges="keyboardHidden|orientation|screenSize" 
android:windowSoftInputMode="stateHidden|adjustResize" 
添加到您的活動