这是我的代码。这只是一种形式。如果我使用我的 adv (Nexus S) 开始申请,表格显示正常,但如果我在小屏幕上使用它,它不会完全显示(我无法向下滚动查看表格的其余部分)。我使用了dip,但问题仍然存在。为什么?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world"
android:layout_marginTop="15dip"
android:layout_marginBottom="25dip"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/edit_name"
/>
<EditText
android:id="@+id/edit_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
android:hint="@string/edit_message"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/edit_lastname"
android:layout_marginTop="15dip"
/>
<EditText
android:id="@+id/edit_lastname"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
android:hint="@string/edit_message"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/edit_sex"
android:layout_marginTop="15dip"
/>
<EditText
android:id="@+id/edit_sex"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
android:hint="@string/edit_message"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/edit_age"
android:layout_marginTop="15dip"
/>
<EditText
android:id="@+id/edit_age"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
android:hint="@string/edit_message"
/>
<Button
android:id="@+id/form_button"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:layout_marginTop="15dip"
android:layout_marginLeft="90dip"
android:layout_width="130dip"
/>
</LinearLayout>