0

我正在与滚动视图和框架布局进行一些战斗。尽管无论我做什么都尝试了很多事情,但滚动视图似乎填充了父级并将我的一些内容粘贴在框架布局后面。我想要的是底部的框架布局和填充顶部的滚动视图。谁能指出我在这里犯的愚蠢错误?我尝试了这里建议的Layout issue on Android with FrameLayout 和 ScrollView但没有这样做。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/quizresultlayout"
style="@style/Activity"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ScrollView
    android:id="@+id/resultscroll"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/frameLayout1"
    android:fillViewport="true" >

    <LinearLayout
        android:id="@+id/sublayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/tvResultMsg"
            style="tvtemplatemedium"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:tag="@string/quizresults_CongratsMsg"
            android:text="@string/quizresults_CongratsMsg" />

        <TableLayout
            android:id="@+id/resultable"
            android:layout_width="wrap_content"
            android:layout_height="match_parent" >
        </TableLayout>
    </LinearLayout>
</ScrollView>

<FrameLayout
    style="@style/bottomframe"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="92dp" >

        <ImageButton
            android:id="@+id/btnstartquiz"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:src="@drawable/play" />

        <ImageButton
            android:id="@+id/btnRptCard"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:src="@drawable/chart" />

        <ImageButton
            android:id="@+id/btnTrunk"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:src="@drawable/play" />
    </RelativeLayout>
</FrameLayout>

</RelativeLayout>
4

1 回答 1

2

做这个:

将根 RelativeLayout 更改为 LinearLayout。

设置 ScrollView android:layout_height="0dp"

添加到 ScrollView android:layout_weight="1" <-- 这将使您的滚动视图填充剩余空间并将框架布局推到底部。

于 2012-08-17T04:20:46.820 回答