我正在开发一个全屏 Android 应用程序,这是我面临的奇怪问题:当软件键盘启动时,我无法完全滚动 scrollView。如果活动不是全屏活动(我检查过),则没有问题。附上xml代码片段和图片:
通常查看活动:
https://docs.google.com/file/d/0B_RJcrMK6rlORXRDc1UxMFRYSFE/edit?usp=sharing
键盘启动时:
https://docs.google.com/file/d/0B_RJcrMK6rlOenhZeHFCTEhFZ1U/edit?usp=sharing
我正在从数据库行动态填充表格布局
这是xml代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<RelativeLayout
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Spent For :"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TableLayout
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1" >
</TableLayout>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/TableLayout1"
android:text="Given By :"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TableLayout
android:id="@+id/TableLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView2" >
</TableLayout>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/TableLayout2"
android:text="Enter a description :"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView3"
android:ems="10" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/editText1"
android:text="Button" />
</RelativeLayout>
</ScrollView>