如何让我的collapsingToolbar正常工作?

时间:2016-10-27 04:33:40

标签: android android-layout android-xml android-collapsingtoolbarlayout

我在折叠工具栏中实现了这个水平滚动视图(因为我希望用户水平滚动图像)。我折叠的工具栏没有正确折叠(折叠后有这个随机空间(橙色)。我希望你们可以看看我的xml并告诉我这里做错了什么。

我们在这里没有崩溃。 enter image description here

我们在这里崩溃了(我们有这个橙色空间)。另外如何从水平滚动视图和工具栏中放置一个边距,以便它可以在所有设备上使用?

enter image description here

这是我的xml代码。

<android.support.design.widget.CoordinatorLayout
    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"
    tools:ignore="RtlHardcoded"
    android:focusable="true"
    android:focusableInTouchMode="true">
    <android.support.design.widget.AppBarLayout
        android:id="@+id/cardInfo_appbar"
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/cardInfo_collapsing"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">
            <include
                android:layout_width="match_parent"
                android:layout_height="50dp"
                layout="@layout/toolbar_layout_edit_card"
                app:layout_collapseMode="pin">
            </include>
            <HorizontalScrollView
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal"
                    android:id="@+id/cardInfo_HSV_LL">

                    <ImageView
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:src="@drawable/image_kyoto"
                        android:id="@+id/cardInfo_imageView"
                        android:layout_marginLeft="5dp"
                        android:layout_marginTop="5dp"
                        />
                </LinearLayout>
            </HorizontalScrollView>
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

和我的工具栏布局xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    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="wrap_content"
    android:id="@+id/toolbar_edit_card_ID"
    android:minHeight="?attr/actionBarSize"
    android:fitsSystemWindows="true"
    app:theme="@style/Frontier2017_2"
    android:background="@color/orange_test"
    android:elevation="10dp">

    <TextView
        android:layout_width="150dp"
        android:layout_height="55dp"
        android:gravity="bottom|center"
        android:textSize="25sp"
        android:id="@+id/toolbar_textview"
        android:textColor="@color/white"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Edit"
        android:background="@color/orange_test"
        android:textColor="@color/white"
        android:layout_gravity="right"/>

</android.support.v7.widget.Toolbar>

0 个答案:

没有答案