2

我在新的 Material Design 支持库中的 App Bar 出现问题。我的问题是 CollapsingToolbarLayout 的高度与工具栏顶部的高度不同。这是我的布局 XML 代码:

<android.support.design.widget.CoordinatorLayout
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:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:fitsSystemWindows="true"
    android:elevation="25dp">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="48dp"
        app:expandedTitleMarginEnd="64dp"
        android:fitsSystemWindows="true">

        <com.example.example.widgets.CustomImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop"
            android:fitsSystemWindows="true"
            app:layout_collapseMode="parallax"/>

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:layout_collapseMode="pin" />

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

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

<android.support.v4.widget.NestedScrollView
    android:id="@+id/scroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipToPadding="false"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.CardView
            ...>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <TextView
                    .../>

                <TextView
                    .../>

            </LinearLayout>

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

    </FrameLayout>

</android.support.v4.widget.NestedScrollView>

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

这是我onCreate的 Activiy 的 Java 代码:

    @Override protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_write);

    setSupportActionBar((Toolbar) findViewById(R.id.toolbar));
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    getSupportActionBar().setTitle("App Name");

    collapsingToolbarLayout = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
    collapsingToolbarLayout.setTitle("Title");
    collapsingToolbarLayout.setExpandedTitleTextAppearance(R.style.LargeText);
}

最后,这是我的问题的截图:

图 1

问题再次是条形图的下半部分(折叠部分)不在同一高度。任何关于如何解决这个问题的建议都会很棒!

谢谢!


编辑:

这是我更新的活动图片:

图 2

除标题外的所有内容现已消失

4

2 回答 2

0

我认为你应用到这个 Activity 的主题已经有一个 ActionBar。如果您想使用 ToolBar 并将其设置为 ActionBar,请使用 NoActionBar 主题。

于 2015-09-08T02:03:36.160 回答
0

当您使用 CollapsingToolbar 时,您不必在 ActionBar 中设置标题,它只在 CollapsingToolbar 中设置

//This one is not needed
//getSupportActionBar().setTitle("App Name");

collapsingToolbar.setTitle("App Name");
于 2015-10-26T16:43:53.063 回答