我已将Android支持库从23.1.1
升级到23.2.1
,并且AppBarLayout
setExpanded
方法已不再像以前一样工作。
我有CollapsingToolbarLayout
占据整个屏幕,而在其下面有NestedScrollView
持有其他视图。向上和向下滑动会完全折叠/展开工具栏布局,从而显示或隐藏带有内容的滚动视图。
手动滑动工作正常,但我也有一个按钮,触发AppBarLayout
setExpanded
方法和true/false
参数来自动折叠/展开工具栏。对于版本23.1.1
,此方法也可正常运行,但只有23.2.1
工具栏的第一次折叠才会在下方滚动视图中显示内容,所有后续折叠都不会。折叠工具栏时触发setExpanded(true)
方法将显示我的滚动视图的内容,并且扩展动画将按照预期的方式工作。
问题可以在API 22及更低版本的设备/模拟器上重现。
我是如何在23.2.1
库中修复此行为的?
展示上述行为的基本示例:
MainActivity.java
package com.test.displaym;
import android.support.design.widget.AppBarLayout;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void btnClick(View v)
{
View iv = findViewById(R.id.image_view);
AppBarLayout bar = (AppBarLayout) findViewById(R.id.app_bar);
if (iv.getTop() == 0) bar.setExpanded(false);
else bar.setExpanded(true);
}
}
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.test.displaym.MainActivity">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
>
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
>
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="@color/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/image_view"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
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:id="@+id/page_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<TextView android:id="@+id/page"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text = "Some text\n12345\n"
android:orientation="vertical">
</TextView>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Scroll"
android:id="@+id/button"
android:onClick="btnClick"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.test.displaym"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:support-v4:23.2.1'
}
其余项目文件与具有空活动的基本Android Studio项目相同。
SCROLL
按钮触发折叠/展开动画期间,文本应始终可见。仅当工具栏(蓝色区域)完全覆盖屏幕时,它才不可见。SCROLL
按钮触发的工具栏折叠动画期间,文本不可见。上面屏幕快照中的红色箭头显示应该观察的屏幕区域。
答案 0 :(得分:-1)
有关fitsSystemWindows的更改。
从AppBarLayout和CollapsingToolbarLayout中删除此属性。
仅留在CoordinatorLayout。
答案 1 :(得分:-1)
删除所有
机器人:fitsSystemWindows =&#34;真&#34;
在子布局上,只有Parent RelativeLayout有它。
将CollapsingToolbarLayout编辑为:
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="@color/colorPrimary"
app:layout_scrollFlags="scroll|snap|enterAlways">
希望这有帮助!