我有一个这样的布局:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_margin="10dp">

//Some content

</LinearLayout>
</ScrollView>

现在,是否可以在滚动视图的底部设置文本视图?它应该始终位于页面的底部。
谢谢!

最佳答案

尝试

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ScrollView
        android:layout_above="@id/textView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:gravity="center"
            android:orientation="vertical" >
         //Some content
        </LinearLayout>
    </ScrollView>

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="Your text" />

</RelativeLayout>

关于android - 是否可以在Android的滚动 View 的底部设置文本 View ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18242387/

10-10 10:06