我正在尝试创建一个可以改变背景alpha的活动。
这是我得到的:
layout.xml
<FrameLayout 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"
android:background="@android:color/transparent">
<com.liuguangqiang.swipeback.SwipeBackLayout
android:id="@+id/swipeback_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
<FrameLayout
android:layout_gravity="center"
android:id="@+id/previewer_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.liuguangqiang.swipeback.SwipeBackLayout>
</FrameLayout>
style.xml:
<style name="AppTheme" parent="AppTheme.Base"/>
<style name="CustomStyle" parent="AppTheme">
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">false</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
</style>
的AndroidManifest.xml
<activity
android:name=".activity.TheActivity"
android:screenOrientation="portrait"
android:theme="@style/CustomStyle"/>
内部活动的onCreate
我设置了swipeback
布局,并在拉动时让听众改变背景alpha:
swipebackLayout.setDragEdge(SwipeBackLayout.DragEdge.BOTTOM);
swipebackLayout.setEnableFlingBack(true);
swipebackLayout.setEnablePullToBack(true);
swipebackLayout.setOnPullToBackListener(new SwipeBackLayout.SwipeBackListener() {
@Override
public void onViewPositionChanged(float fractionAnchor, float fractionScreen) {
float alpha = (1 - fractionAnchor) * 255;
swipebackLayout.getBackground().setAlpha((int) alpha);
}
});
问题在于:
在Kitkat设备上,这非常有效:当你拉动布局时,它会同时改变alpha,从完全黑色变为透明。
然而,在Lollipop设备上,此效果仅在第一次起作用。第二次打开相同的活动时,alpha在开始时被重置为0(透明),我必须每次在onCreate
中明确设置背景alpha(使用下面附带的单行代码)。 / p>
为什么会这样?由于活动正确完成并且每次都是从新鲜创建的,为什么alpha在第一次创建时为255,然后在第二次创建时它神奇地变为0?
// Window background is transparent, so we need to set alpha to opaque when creating the activity, without this line, lollipop devices will have a complete transparent background next time you launch the activity
swipebackLayout.getBackground().setAlpha(255);
// ------------
答案 0 :(得分:1)
首次获得Drawable
时,Android资源框架会在进程本地缓存中保留引用。因此,您执行的任何修改(例如任何setZzz()
调用)也将修改缓存中的版本。
为避免意外修改缓存版本,您应始终在mutate()
上至少调用Drawable
一次,然后再调用任何setZzz()
方法。
多次调用mutate()
是一个无操作,所以你可以用它为所有的setter调用添加前缀。
所以在这种特殊情况下,你会想要:
swipebackLayout.getBackground().mutate().setAlpha(...);
注意:无法保证无法调用mutate()
将允许您修改缓存版本,或者对getDrawable()
的调用将始终返回缓存版本。但是,始终保证调用mutate()
可以安全地修改drawable。