3

我在scrollview中有一些edittext,當它們超過屏幕容量時,當鍵盤打開時很難執行平滑滾動。這裏是我的代碼。如何在android中打開小鍵盤的同時滾動視圖?

 <ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    > 
    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical" 
    > 
     <EditText 
      android:layout_width="200dp" 
      android:layout_height="wrap_content" 
      /> 
     <EditText 
      android:layout_width="200dp" 
      android:layout_height="wrap_content" 
      /> 
     <EditText 
      android:layout_width="200dp" 
      android:layout_height="wrap_content" 
      /> 
     <EditText 
      android:layout_width="200dp" 
      android:layout_height="wrap_content" 
      /> 
     <EditText 
      android:layout_width="200dp" 
      android:layout_height="wrap_content" 
      /> 
    </LinearLayout> 
</ScrollView> 

請指導我一個很好的鏈接到這個問題或回答相同的,如果有人知道。

感謝

回答

2

使用

android:focusable="true" 
     android:focusableInTouchMode="true" 

內的LinearLayout。

3

android:windowSoftInputMode="adjustResize"放在清單文件中的活動標籤上。

它會工作。

相關問題