android.support.v7.widget.Toolbar将内容推送到底部

时间:2016-03-17 18:57:00

标签: android android-support-library android-design-library android-appbarlayout

android.support.v7.widget.Toolbar似乎将内容推到了底部,请查看这些屏幕截图:

此屏幕是切换到片段时的原始状态:enter image description here

稍微向下滚动后,我可以看到完整的布局:enter image description here

那么如何防止滚动呢?如果我从xml代码中删除android.support.v7.widget.Toolbar,一切都按预期工作(除了缺少的工具栏lol)。

这是主要活动的代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout android:id="@+id/main_content"
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     xmlns:tools="http://schemas.android.com/tools"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:fitsSystemWindows="true"
     tools:context=".activity.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/appbar_padding_top"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_menu_add"/>

</android.support.design.widget.CoordinatorLayout>

继承人聊天片段的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical" >

    <android.support.v7.widget.RecyclerView
        android:id="@+id/list"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:divider="@null"
        android:stackFromBottom="true"
        android:transcriptMode="normal" />

    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#ffffff"
        android:orientation="horizontal"
        android:padding="2dp" >

        <EditText
            android:id="@+id/enter_message"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_marginRight="5dp"
            android:layout_weight="0.85"
            android:hint="hint"
            android:inputType="textCapSentences|textMultiLine"
            android:maxLines="5" />

        <Button
            android:id="@+id/send_button"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_gravity="center"
            android:layout_marginRight="5dp"
            android:background="@drawable/common_google_signin_btn_icon_dark_normal" />
    </LinearLayout>

</LinearLayout>

正如其他主题中所建议的,删除android:fitsSystemWindows="true"并没有改变任何内容。提前谢谢!

2 个答案:

答案 0 :(得分:2)

我不确定自己是否达到了预期的行为。您可能希望按原样保留布局,但只需从工具栏中删除滚动标记:

app:layout_scrollFlags="scroll|enterAlways"

这些标志告诉工具栏监听回收器视图上的滚动并做出相应的反应。据我了解,您希望工具栏保持固定。所以,删除该行。

答案 1 :(得分:0)

CoordinatorLayout 替换为主活动布局中的 RelativeLayout

另外,将其添加到您的RecyclerView

app:layout_behavior="@string/appbar_scrolling_view_behavior"

备注:删除CoordinatorLayout会影响您的FloatingActionButton行为。您可以删除FloatingActionButton并将其放入聊天片段中。如果要执行此操作,请确保将LinearLayout替换为CoordinatorLayout