折叠工具栏布局 |滚动和布局问题 2
CollapsingToolbarLayout | Scrolling and layout issues 2
相关问题
背景
我想使用 2 个不同的片段,它们允许我根据方向和屏幕尺寸更改布局
- Header 图片 (目前只有一个
ImageView
)
- 可滚动内容
问题
CollapsingToolbarLayout
不允许我展开 Toolbar
以查看 完整 Header Image
- 它显示了图像的大部分,但不是全部。
Top
被切掉了,但底部可见。
Toolbar
设置为Pin
但滚动时隐藏
- 只有
Header Image
应该消失,但我的整个 Appbar 都被隐藏了
当滚动查看 Expanded Toolbar
时,在 Expanded Toolbar
达到其最大高度之前会出现空白视图。
- 在
Expanded Toolbar
和 Toolbar
本身都隐藏之后
Up Arrow
没有出现在 Toolbar
代码
Layout.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/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
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="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="16dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|enterAlways">
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/download"
android:scaleType="centerCrop" />
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/anim_toolbar"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<fragment
android:id="@+id/detail"
android:name="<package>.<fragment_name>"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
创建时
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
final Toolbar toolbar = (Toolbar) findViewById(R.id.anim_toolbar);
setSupportActionBar(toolbar);
CollapsingToolbarLayout collapsingToolbar = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
collapsingToolbar.setTitle("Avengers: Age of Ultron");
}
1
2
3
4
5
6
问题 1
将 android:fitsSystemWindows="true"
添加到您的 AppBarLayout
、CollapsingToolbarLayout
和 ImageView
。
我猜你的图片的一部分在状态栏下方(由于缺少这些行),这就是你看不到图片顶部的原因。
问题 2
collapseMode="pin"
仅影响工具栏对折叠的反应(因此称为 collapseMode
而不是 scrollFlags
)。
在几乎 所有 情况下,当使用 CollapsingToolbarLayout
时,您应该为 scrollFlags
使用 scroll|exitUntilCollapsed
- 这样可以使折叠的工具栏可见即使向下滚动。
问题 3
这是由于使用了 scroll|enterAlways
。根据 #2
更改你的标志
问题 4
如您相关问题的答案中所述,您需要调用 getSupportActionBar().setDisplayHomeAsUpEnabled(true);
来显示向上按钮:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
final Toolbar toolbar = (Toolbar) findViewById(R.id.anim_toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
CollapsingToolbarLayout collapsingToolbar =
(CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
collapsingToolbar.setTitle("Avengers: Age of Ultron");
}
从布局 XML 的 CollapsingToolBarLayout
标记中删除 app:contentScrim="?attr/colorPrimary"
。它将在工具栏中显示后退按钮
相关问题
背景
我想使用 2 个不同的片段,它们允许我根据方向和屏幕尺寸更改布局
- Header 图片 (目前只有一个
ImageView
) - 可滚动内容
问题
CollapsingToolbarLayout
不允许我展开Toolbar
以查看 完整Header Image
- 它显示了图像的大部分,但不是全部。
Top
被切掉了,但底部可见。
- 它显示了图像的大部分,但不是全部。
Toolbar
设置为Pin
但滚动时隐藏- 只有
Header Image
应该消失,但我的整个 Appbar 都被隐藏了
- 只有
当滚动查看
Expanded Toolbar
时,在Expanded Toolbar
达到其最大高度之前会出现空白视图。- 在
Expanded Toolbar
和Toolbar
本身都隐藏之后
- 在
Up Arrow
没有出现在Toolbar
代码
Layout.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/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
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="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="16dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|enterAlways">
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/download"
android:scaleType="centerCrop" />
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/anim_toolbar"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<fragment
android:id="@+id/detail"
android:name="<package>.<fragment_name>"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
创建时
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
final Toolbar toolbar = (Toolbar) findViewById(R.id.anim_toolbar);
setSupportActionBar(toolbar);
CollapsingToolbarLayout collapsingToolbar = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
collapsingToolbar.setTitle("Avengers: Age of Ultron");
}
1
4
问题 1
将 android:fitsSystemWindows="true"
添加到您的 AppBarLayout
、CollapsingToolbarLayout
和 ImageView
。
我猜你的图片的一部分在状态栏下方(由于缺少这些行),这就是你看不到图片顶部的原因。
问题 2
collapseMode="pin"
仅影响工具栏对折叠的反应(因此称为 collapseMode
而不是 scrollFlags
)。
在几乎 所有 情况下,当使用 CollapsingToolbarLayout
时,您应该为 scrollFlags
使用 scroll|exitUntilCollapsed
- 这样可以使折叠的工具栏可见即使向下滚动。
问题 3
这是由于使用了 scroll|enterAlways
。根据 #2
问题 4
如您相关问题的答案中所述,您需要调用 getSupportActionBar().setDisplayHomeAsUpEnabled(true);
来显示向上按钮:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
final Toolbar toolbar = (Toolbar) findViewById(R.id.anim_toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
CollapsingToolbarLayout collapsingToolbar =
(CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
collapsingToolbar.setTitle("Avengers: Age of Ultron");
}
从布局 XML 的 CollapsingToolBarLayout
标记中删除 app:contentScrim="?attr/colorPrimary"
。它将在工具栏中显示后退按钮