我正在开发移动应用程序,当我尝试在Scroll View下放置页脚时,我遇到了问题。
这是我的代码:
<RelativeLayout
android:id="@+id/RelativeLayout01"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/bottomcontent"
android:orientation="vertical"
android:background="@drawable/border">
//the footer is added dynamically
</RelativeLayout>
<ScrollView
android:layout_weight="1"
android:id="@+id/scroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/contentcontainer">
<LinearLayout
android:id="@+id/scrollcontentcontainer"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
//the content is added dynamically from a layout template
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>
scrollview的内容是一组相对布局,里面有一些按钮和textview。它基于我多次膨胀的布局。
页脚只是一个线性布局,其中还包含一些按钮。
问题是我尝试了在互联网上找到的所有不同的解决方案,但没有一个能够正常工作。在我的情况下,页脚被卡在scrollView的内容下,而不是在scrollview本身下面,因此我必须向下滚动直到内容结束才能到达我的页脚。但页脚应该保留在屏幕的底部......
我也试过这些解决方案,没有任何工作: - http://www.javacodegeeks.com/2013/10/android-fixed-header-and-footer-with-scrollable-content-layout-example.html (当我尝试这个时,我在屏幕顶部有一个页脚,没有别的......) - http://www.byteslounge.com/tutorials/android-fixed-header-and-footer-with-scrollable-content-layout-example 和其他一些人(不太合作!)
我也尝试了所有可能的事情,比如使用重力,重量,fillViewPort,对齐到底部......但不可能有预期的结果。 最小API设置为14,我使用android studio。
感谢您的帮助!
edit1: 边界可绘制 `在这里输入代码
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:bottom="-2dp"
android:left="-2dp"
android:right="-2dp"
android:top="2dp">
<shape android:shape="rectangle" >
<stroke
android:width="1dp"
android:color="#000000" />
<solid android:color="#3b010101" />
<padding android:left="10dp"
android:right="10dp"
android:top="10dp"
android:bottom="10dp" />
</shape>
</item>
</layer-list>
答案 0 :(得分:1)
您可以尝试以下操作,我在ScrollView
内添加RelaveLayout
也遇到了麻烦。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:id="@+id/bottomcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/border">
<!---add something there eg:-->
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Test"/>
</RelativeLayout>
<ScrollView
android:id="@+id/scroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@id/bottomcontent"
android:layout_alignParentTop="true">
<LinearLayout
android:id="@+id/contentcontainer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/scrollcontentcontainer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>
我在this documentation中找到了以下内容。这肯定会导致问题
注意:在平台版本17及更低版本中,RelativeLayout受到影响 一个可能导致子视图被测量的测量错误 MeasureSpec值不正确。 (参见MeasureSpec.makeMeasureSpec for 更多细节。)这是在RelativeLayout容器时触发的 放置在滚动容器中,例如ScrollView或 HorizontalScrollView。如果自定义视图未正确配备 使用MeasureSpec模式测量的被放置在一个 RelativeLayout,无论如何都会默默地作为RelativeLayout工作 会传递一个非常大的AT_MOST MeasureSpec。
已为设置的应用保留此行为 机器人:targetSdkVersion =&#34; 17&#34;或者在他们的清单中使用-sdk 标签兼容性。针对SDK版本18或更高版本的应用将会 收到正确的行为