在我的项目中包含协调器布局之后,我遇到了一个问题。我会贴出我的版面。
这是我的main_layout.xml:

<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_scrollFlags="scroll|enterAlways"/>

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

<LinearLayout
    android:id="@+id/frame_content_keeper"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Top Text"/>
    </LinearLayout>

    <LinearLayout
        android:id="@+id/login_buttons"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Bottom text"/>
    </LinearLayout>
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>

android - 协调器布局将内容移动到AppbarLayout的高度-LMLPHP
我看不到“底部文本”的文本视图。好像在屏幕下。我认为这是个缺陷。

最佳答案

这很正常,因为你应该删除这条线
app:layout_scrollFlags=“滚动始终输入”
从你的
android.support.v7.widget.toolbar工具
此属性用于当您有一个列表并且当您向下滚动时,操作栏将隐藏

08-04 05:38