CollapsingToolbarLayout.setTitle(title) 在更改 appbarLayout 后不起作用
CollapsingToolbarLayout.setTitle(title) does not work after changing appbarLayout
我想加载带有折叠的 collapsingToolbar 的片段(即 non-expanded 形式)。当我在不更改 appbarLayout 布局参数的情况下设置 collapsingToolbar 的标题时,标题设置正确并且我可以看到标题。
问题是,我还需要更改 appBarLayout 布局参数以防止 collapsingToolbar 展开(即,我希望它的外观和行为类似于此特定片段的常规 non-collapsing 工具栏)。但是,这样做会使标题不再出现。
我试过的:
我已经尝试了这些页面中列出的解决方案但无济于事:
- CollapsingToolbarLayout setTitle() not working anymore
collapsingToolbarLayout.setTitleEnabled(true);
好像没什么效果
MainActivity.java
我相信我已经将问题隔离到这些行,但我不确定如何解决它。
collapsingToolbarLayout.setTitle("All Recent"); // works
appBarLayout.setExpanded(false, true); // works
// However, after adding the following lines, the above no longer works and the title does not appear in the toolbar
CoordinatorLayout.LayoutParams lp = (CoordinatorLayout.LayoutParams)appBarLayout.getLayoutParams();
lp.height = (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 80, getResources().getDisplayMetrics());
appBarLayout.setLayoutParams(lp);
activity_main.xml
<!-- language: lang-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:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar_layout"
android:layout_width="match_parent"
android:layout_height="@dimen/detail_backdrop_height"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<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="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
android:adjustViewBounds="true" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:title="@string/drawer_item_locate_events" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:id="@+id/frame_fragments"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/floating_action_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:clickable="true"
android:src="@mipmap/ic_add_a_photo"
app:layout_anchor="@+id/appbar_layout"
app:layout_anchorGravity="bottom|right|end" />
</android.support.design.widget.CoordinatorLayout>
更改 appbarLayout 的参数后标题不再显示
我能够使用@DanielPersson 在 how to pin title in Toolbar inside CollapsingToolbarLayout 提供的以下答案解决此问题:
collapsingToolbarLayout.setTitleEnabled(false);
toolbar.setTitle("My Title");
通过调用 setTitleEnabled(false);
,标题出现在工具栏中。
通话中
this.setTitle("Whatever you want");
来自 onCreate
的 activity 应该可以解决您的问题。
与普通工具栏中设置标题相同。
在折叠工具栏的 xml 布局文件中,在 CollapsingToolbarLayout
中,您将有一个普通的工具栏 (android.support.v7.widget.Toolbar
),您应该为其设置一个 ID (android:id="@+id/toolbar"
).使用 java class 中的 ID 找到此工具栏并设置标题。
mToolbar = findViewById(R.id.toolbar);
setSupportActionBar(mToolbar);
getSupportActionBar().setTitle(R.string.home);
只需将这行代码添加到 xml 布局中的 CollapsingToolbarLayout
标记即可。
app:title="Title You Want"
如果您想更改 collapsingToolbarLayout 标题,它会起作用。
我想加载带有折叠的 collapsingToolbar 的片段(即 non-expanded 形式)。当我在不更改 appbarLayout 布局参数的情况下设置 collapsingToolbar 的标题时,标题设置正确并且我可以看到标题。
问题是,我还需要更改 appBarLayout 布局参数以防止 collapsingToolbar 展开(即,我希望它的外观和行为类似于此特定片段的常规 non-collapsing 工具栏)。但是,这样做会使标题不再出现。
我试过的: 我已经尝试了这些页面中列出的解决方案但无济于事:
- CollapsingToolbarLayout setTitle() not working anymore
collapsingToolbarLayout.setTitleEnabled(true);
好像没什么效果
MainActivity.java 我相信我已经将问题隔离到这些行,但我不确定如何解决它。
collapsingToolbarLayout.setTitle("All Recent"); // works
appBarLayout.setExpanded(false, true); // works
// However, after adding the following lines, the above no longer works and the title does not appear in the toolbar
CoordinatorLayout.LayoutParams lp = (CoordinatorLayout.LayoutParams)appBarLayout.getLayoutParams();
lp.height = (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 80, getResources().getDisplayMetrics());
appBarLayout.setLayoutParams(lp);
activity_main.xml
<!-- language: lang-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:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar_layout"
android:layout_width="match_parent"
android:layout_height="@dimen/detail_backdrop_height"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<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="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
android:adjustViewBounds="true" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:title="@string/drawer_item_locate_events" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:id="@+id/frame_fragments"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/floating_action_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:clickable="true"
android:src="@mipmap/ic_add_a_photo"
app:layout_anchor="@+id/appbar_layout"
app:layout_anchorGravity="bottom|right|end" />
</android.support.design.widget.CoordinatorLayout>
更改 appbarLayout 的参数后标题不再显示
我能够使用@DanielPersson 在 how to pin title in Toolbar inside CollapsingToolbarLayout 提供的以下答案解决此问题:
collapsingToolbarLayout.setTitleEnabled(false);
toolbar.setTitle("My Title");
通过调用 setTitleEnabled(false);
,标题出现在工具栏中。
通话中
this.setTitle("Whatever you want");
来自 onCreate
的 activity 应该可以解决您的问题。
与普通工具栏中设置标题相同。
在折叠工具栏的 xml 布局文件中,在 CollapsingToolbarLayout
中,您将有一个普通的工具栏 (android.support.v7.widget.Toolbar
),您应该为其设置一个 ID (android:id="@+id/toolbar"
).使用 java class 中的 ID 找到此工具栏并设置标题。
mToolbar = findViewById(R.id.toolbar);
setSupportActionBar(mToolbar);
getSupportActionBar().setTitle(R.string.home);
只需将这行代码添加到 xml 布局中的 CollapsingToolbarLayout
标记即可。
app:title="Title You Want"
如果您想更改 collapsingToolbarLayout 标题,它会起作用。