0

我需要有关 layout.xml 文件大小的帮助。我可能缺少一些基本的东西。我创建了一个带有 EditText、SearchButton 和 ListView 的搜索功能,我将在其中显示搜索结果。

每次单击 EditText 时,我都需要确保在显示软键盘时不会调整背景图片的大小,因此我的整个布局都放置在 ScrollView 中。这基本上是我使用 ScrollView 的唯一原因。但是 ScrollView 也会产生另一个问题,请看下图:

http://tinypic.com/view.php?pic=6p3yix&s=6

出于某种原因,我的背景图片拒绝填满整个“背景”区域。看看图片底部是黑色的。因此,当我在大屏幕手机上进行测试时,底部会变黑。我怎样才能设法用我的背景图片填充整个“背景”区域?请帮忙!

编辑:我已经测试过在没有 ScrollView 的情况下使用 layout.xml 文件,但没有让它工作,因为没有它,键盘会改变背景图片的大小。我也尝试在android清单文件中使用adjustPan,但没有任何运气。唯一有效的解决方案是使用 ScrollView,但现在我遇到了背景图片大小的问题....../谢谢!

我的 xml 文件:

<?xml version="1.0" encoding="utf-8"?>

<ScrollView 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/sorted_teams_scroll"
android:isScrollContainer="false">

<TableLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/layout_search_task"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center|top"
        android:orientation="vertical"
        android:stretchColumns="1"
        android:weightSum="1.0" 
        android:background="@drawable/orginalbild01"
        >

        <TableRow>

              <TextView
                android:layout_width="0dip"
                android:layout_height="wrap_content" 
                 android:layout_weight="0.05">
            </TextView>

            <EditText
                android:id="@+id/search_task_field"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="0.65"
                android:hint="@string/SearchTaskHint" />

            <Button
                android:id="@+id/search_task_button"
                android:layout_width="0dip"
                android:layout_height="fill_parent"
                android:layout_gravity="center"
                android:layout_weight="0.25"
                android:text="@string/Search" />

            <TextView
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="0.05" >
            </TextView>

        </TableRow>

        <TableRow>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="5dp" >
            </TextView>
        </TableRow>

        <TableRow android:paddingLeft="40dp" >

            <TextView
                android:id="@+id/search_task_column_names"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="0.33"
                android:textStyle="bold" >
            </TextView>

            <TextView
                android:id="@+id/search_task_column_names1"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="0.33"
                android:textStyle="bold" >
            </TextView>

            <TextView
                android:id="@+id/search_task_column_names2"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="0.33"
                android:textStyle="bold" >
            </TextView>
        </TableRow>

        <TableRow
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center">

            <ProgressBar
                android:id="@+id/search_task_progress_bar"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:indeterminateOnly="true"
                android:visibility="gone" />
        </TableRow>

        <TableRow
            android:paddingLeft="18dp"
            android:paddingRight="18dp"
             >

            <ListView

                android:id="@+id/search_task_list"
                android:layout_width="fill_parent"
                android:layout_height="355dp"
                android:gravity="left" />
        </TableRow>
    </TableLayout>
    </ScrollView>
4

1 回答 1

1

如果你只有键盘的问题,那么......

只需在弹出键盘时尝试禁用布局调整大小 -
在您的清单文件中将其添加到您的活动中......

android:windowSoftInputMode="adjustPan"

请发布完整的代码...在上面的代码中,您为表格布局设置背景..它将如何应用于完整背景..在没有滚动视图的情况下发布您的代码...

于 2012-07-18T05:09:43.943 回答