我在CollapsingToolbarLayout
中有一个fragment
,其中layout
和Toobar
就像这样
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="@color/color_red_800"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<include layout="@layout/header_profile_1" />
<android.support.v7.widget.Toolbar
android:title="Toolbar"
android:id="@+id/toolbar_custom_profile"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/color_transparent"
app:layout_scrollFlags="scroll|enterAlways"
app:layout_collapseMode="pin">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
我在Java上使用此代码设置了Toolbar
的标题
collapsingToolbar.setTitle("Profile");
collapsingToolbar.setExpandedTitleColor(Color.alpha(0));
collapsingToolbar.setCollapsedTitleTextColor(Color.WHITE);
现在它工作正常,但当Activity
处于折叠状态时,当我切换到另一个Toolbar
时,标题会消失。如果工具栏处于扩展状态,则不会发生这种情况。
答案 0 :(得分:0)
试试这段代码。我希望它会帮助你
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent"
android:fitsSystemWindows="true"
app:contentScrim="@color/list_item"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="@dimen/forty_dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_collapseMode="parallax">
<include layout="@layout/header_profile_1" />
</RelativeLayout>
<android.support.v7.widget.Toolbar
android:id="@+id/tool_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout
并使用以下代码设置标题
Toolbar mToolbar = (Toolbar) findViewById(R.id.tool_bar);
setSupportActionBar(mToolbar);
mToolbar.setTitle("");