2012-03-22 4 views
1

データが1ページ未満のデータを表示しています。 したがって、画面上の編集ボックスを押すと、キーボードはUIコンポーネント(その下にある)を隠します。Androidスクロールビュー - キーボードが表示されているときにスクロールする必要があります - データは1ページ未満ですが

スクロールが有効になっていないという問題は、データが豊富であるためです。 スクロールを強制するにはどうすればよいですか?

答えて

1

レイアウトをScrollViewで囲む必要があります。

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 

     <EditText 
      android:id="@+id/editText1" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:inputType="text" > 

      <requestFocus /> 
     </EditText> 
    </LinearLayout> 
</ScrollView>