我有一个Scrollview,里面有一个相对布局,这个相对布局里面另一个(我想要粘在屏幕的底部)
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".WelcomeActivity" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/background_activity_gray"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >
<!-- A lot of views -->
<View
android:id="@+id/aw_separator1"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@+id/aw1"
android:layout_marginBottom="15dp"
android:layout_marginTop="25dp"
android:background="@android:color/darker_gray" />
<!-- Relative Layout to be sticked to the bottom -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/aw_separator1"
android:layout_alignParentBottom="true" >
<Button
android:id="@+id/aw_button"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="@string/aw_button"
android:background="@drawable/buttons_style"
android:gravity="center"
android:textSize="16sp" />
</RelativeLayout>
</RelativeLayout>
</ScrollView>
看起来android:layout_alignParentBottom="true"
在这里不起作用..我怎样才能做到这一点?
谢谢。