在我的CountryImageInfo.java
中,我有一个折叠的工具栏,里面有图像。
看起来像这样:
我想知道在图像崩溃时如何模糊图像,以及如何使图像再次模糊不模糊。与iOS的通知栏类似,我不知道您是否熟悉它... 我见过与此类似的问题,但不同的是,有些人在问何时模糊它崩溃了(不是我要问的。崩溃时我问的是。逐渐模糊)...
这是我的XML ,顺便说一下,所有内容都包裹在CoordinatorLayout
中:
<android.support.design.widget.AppBarLayout
android:id="@+id/testeparainfo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/actionBarDivider">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/backgroundcollapsedtoolbarinfo"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="exitUntilCollapsed|scroll">
<ImageView
android:id="@+id/imgCountryInfoFoto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop" />
<ImageView
android:id="@+id/imgCountryInfoEscuro"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:background="@drawable/background_pais_info"
android:scaleType="centerInside" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbaridinfo"
android:layout_width="match_parent"
android:layout_height="200dp"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
</android.support.v7.widget.Toolbar>
<TextView
android:id="@+id/txtNomePaisInfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginStart="30dp"
android:layout_marginTop="520dp"
android:paddingBottom="10dp"
android:text="TextView"
android:textColor="@android:color/background_light"
android:textSize="35sp"
app:layout_anchor="@+id/testeparainfo"
app:layout_anchorGravity="left|bottom" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
更新:
复制图像并不是我真正想要的,因为这些图像有些大,所以,除了复制图像之外,还有其他方法吗? 我搜索了一些库,但是找不到适合我需要的任何内容...我可以使所有图像变蓝,有没有一种方法可以设置侦听器以在用户向上拖动折叠栏时开始模糊?请帮忙,我已经尝试了很多东西!
答案 0 :(得分:2)
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
double percentage = (double) Math.abs(verticalOffset) / collapsingToolbar.getHeight();
if (percentage > 0.8) {
collapsingToolbar.setTitle("Collapsed");
} else {
collapsingToolbar.setTitle("Expanded");
}
Blurry.with(context)
.radius(10 * percentage)
.sampling(8)
.color(Color.argb(66, 255, 255, 0))
.async()
.animate(500)
.onto(blurryImage); // imgCountryInfoEscuro
}
答案 1 :(得分:1)
我用过RealtimeBlurView。要使用此功能,请在您的应用模块的build.gradle
中进行更改。
在build.gradle中添加依赖项:
dependencies {
compile 'com.github.mmin18:realtimeblurview:1.1.2'
}
android {
buildToolsVersion '24.0.2' // Use 23.0.3 or higher
defaultConfig {
minSdkVersion 15
renderscriptTargetApi 19
renderscriptSupportModeEnabled true // Enable RS support
}
}
如有必要,添加proguard规则:
-keep类android.support.v8.renderscript。** {*; }
然后在您的CollapsingToolbarLayout
<com.github.mmin18.widget.RealtimeBlurView
android:id="@+id/blurView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:realtimeBlurRadius="20dp"
app:realtimeOverlayColor="#8000" />
然后在您的活动中添加以下代码。
final AppBarLayout appBar = findViewById(R.id.testeparainfo);
final RealtimeBlurView blurView = findViewById(R.id.blurView);
blurView.setAlpha(1F);
appBar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(final AppBarLayout appBarLayout, final int verticalOffset) {
float offsetAlpha = (appBarLayout.getY() / appBar.getTotalScrollRange());
blurView.setAlpha(offsetAlpha * -1);
}
});
寻求帮助answer