ฉันมี<ScrollView>
เค้าโครง:
<?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>
ดังที่คุณเห็นด้านบนการจัดวางแบบเรียบง่ายประกอบด้วยช่องป้อนข้อมูลสามช่องและปุ่ม "ตกลง"
ฉันเรียกใช้แอปด้วยเค้าโครงด้านบนเมื่อฉันแตะที่ช่องป้อนข้อมูลที่ 1 ( @+id/input_one
) แป้นพิมพ์แบบนิ่มจะปรากฏขึ้นจากด้านล่างของหน้าจอโดยจะซ่อนช่องป้อนข้อมูลที่ 3 และปุ่ม "ตกลง"
ตั้งแต่ฉันใช้<ScrollView>
ฉันคิดว่าฉันสามารถเลื่อนหน้าขึ้นเพื่อดูช่องป้อนข้อมูลที่ 3 และปุ่ม "ตกลง" ซึ่งซ่อนอยู่โดยแป้นพิมพ์แบบนิ่มแต่หน้านั้นไม่สามารถเลื่อนได้ ทำไม? จะกำจัดได้อย่างไร? โดยพื้นฐานแล้วฉันต้องการเห็นทุกช่องป้อนข้อมูลและปุ่ม "ตกลง" แม้แต่แป้นพิมพ์แบบนิ่มก็โผล่ขึ้นมา