工具栏下方的Android ScrollView无法显示所有内容

时间:2015-05-21 11:40:48

标签: android scrollview toolbar

我使用工具栏创建了一个基本活动,并将我的布局添加到此。但是当我在主要内容中添加scrollview时,它在向下滚动时不显示底部。缺失的部分似乎与工具栏的高度相同。

我的activitybase.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/ToolBarStyle"
        android:background="?attr/colorPrimary" />
    <FrameLayout
        android:id="@+id/root_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
</LinearLayout>

我的fragmentinfo.xml:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/default_margin">
        <TextView
            android:id="@+id/info_header"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/default_margin"
            android:text="hei"
            style="@style/TextLarge" />
        <TextView
            android:id="@+id/info_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/small_margin"
            android:text="-SOME LONG TEXT-"
            style="@style/TextNormal" />

      <TextView
            android:id="@+id/info_header2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/default_margin"
            android:text="Test"
            style="@style/TextLarge" />
    </LinearLayout>
</ScrollView>

下面的截图。这一直向下滚动。 “测试”应显示在其下方16 dp边距...

enter image description here

2 个答案:

答案 0 :(得分:1)

在FrameLayout中

<FrameLayout
  ...
  android:layout_marginBottom="56dp"
  ...
/>

这里56dp是Action Bar大小。

答案 1 :(得分:0)

使用操作栏height dimen将android:layout_marginBottom添加到ScrollView。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="@dimen/abc_action_bar_default_height_material"
    android:fillViewport="true">