Добавление нижнего колонтитула в scrollview - PullRequest
5 голосов
/ 29 марта 2011

У меня есть прокрутка, содержащая набор относительных макетов, который выходит за пределы высоты экрана. Как я могу добавить линейный макет с 2 кнопками, которые «прилипают» к нижней части экрана. То есть, независимо от того, как я прокручиваю свое прокручиваемое изображение, моя линейная линейка всегда будет отображаться внизу экрана.

Ответы [ 2 ]

7 голосов
/ 29 марта 2011
<RelativeLayout
android:id="@+id/RelativeLayout01" 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
>
<ScrollView 
    android:id="@+id/my_scrollview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:layout_marginBottom="72dip"
    android:layout_above="@+id/LinearLayout01" 
    android:scrollbars="horizontal">

</ScrollView>
<LinearLayout 
    android:id="@+id/LinearLayout01" 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent" 
    android:layout_alignParentBottom="true">
    <Button 
        android:id="@+id/Button01" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_weight="1"">
    </Button>
    <Button 
        android:id="@+id/Button02" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_weight="1" >
    </Button>
</LinearLayout>

5 голосов
/ 29 марта 2011

Вы можете реализовать это с помощью RelativeLayout.

Ваш ScrollView должен быть расположен над панелью кнопок и под заголовком (если применимо).

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

    <ScrollView
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        android:layout_above="@+id/myFooter">
        <!-- Your scroll container -->
    </ScrollView>

    <RelativeLayout android:id="@+id/myFooter"
        android:layout_alignParentBottom="true" android:layout_height="wrap_content"
        android:layout_width="fill_parent">
        <!-- Your buttons -->
    </RelativeLayout>

</RelativeLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...