如果我的视图的其余部分可滚动,我将如何在屏幕底部添加一个保留在那里的栏?我的根视图是一个ScrollView,所以我假设其中的任何内容都是可滚动的,但我不能把它外面的任何东西放在它之外似乎没有告诉我我有多个根标签。
答案 0 :(得分:1)
我认为这样的事情应该有用。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<ScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/toolbar"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
请查看Toolbar以获取更多信息。它在API级别21中发布,位于支持库v7中。