Tôi có một <ScrollView>
bố cục:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_scrollview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<EditText
android:id="@+id/input_one"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:inputType="number" >
<EditText
android:id="@+id/input_two"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:inputType="number" >
<EditText
android:id="@+id/input_three"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:inputType="number" >
<Button
android:id="@+id/ok_btn"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:text="@string/ok_str" />
</LinearLayout>
</ScrollView>
Như bạn thấy ở trên, bố cục đơn giản bao gồm ba trường nhập và một nút "Ok".
Tôi chạy ứng dụng của mình với bố cục trên, khi tôi chạm vào trường nhập thứ nhất ( @+id/input_one
), bàn phím mềm sẽ bật lên từ cuối màn hình, nó ẩn trường nhập thứ 3 và nút "Ok".
Vì tôi sử dụng <ScrollView>
, tôi nghĩ rằng tôi có thể cuộn trang lên để xem trường nhập liệu thứ 3 và nút "Ok" bị ẩn bởi bàn phím mềm, nhưng trang không thể cuộn được . Tại sao? Làm thế nào để thoát khỏi nó? về cơ bản, tôi muốn thấy mọi trường nhập và nút "Ok" ngay cả bàn phím mềm hiện lên.