我正在与一个scrollview和一个framelayout进行一些战斗。尽管尝试了很多事情,无论我做什么,scrollview似乎都填充了父母,并将我的一些内容粘贴在framelayout后面。 我想要的是底部的框架布局和滚动视图以填充顶部。谁能指出我在这里犯的愚蠢错误? 我尝试了Layout issue on Android with FrameLayout and 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>
答案 0 :(得分:2)
这样做:
将根RelativeLayout更改为LinearLayout。
设置ScrollView android:layout_height =“0dp”
添加到ScrollView android:layout_weight =“1”&lt; - 这将使您的滚动视图填充剩余空间,并将框架布局推到底部。