activity中设置Dialog.show()的方式显示,在Dialog界面右滑退出的时候闪屏的原因
时间: 2024-03-14 14:46:10 浏览: 74
MFC-Dialog.rar_MFC Dialog_界面 美观
在 Activity 中使用 Dialog.show() 的方式显示 Dialog,当右滑退出 Dialog 时,会出现闪屏的现象,这是因为 Activity 转场动画和 Dialog 转场动画不一致导致的。
解决这个问题的方式有两种:
1. 在 Activity 的主题样式中设置转场动画和 Dialog 的转场动画一致。
在 styles.xml 文件中定义 Activity 的主题样式:
```xml
<style name="MyActivityTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowAnimationStyle">@style/MyAnimationStyle</item>
</style>
```
在 styles.xml 文件中定义 Dialog 的主题样式:
```xml
<style name="MyDialogTheme" parent="Theme.AppCompat.Light.Dialog">
<item name="android:windowAnimationStyle">@style/MyAnimationStyle</item>
</style>
```
在 styles.xml 文件中定义转场动画的样式:
```xml
<style name="MyAnimationStyle">
<item name="android:windowEnterAnimation">@android:anim/slide_in_left</item>
<item name="android:windowExitAnimation">@android:anim/slide_out_right</item>
</style>
```
在 Activity 中使用 Dialog.show() 方法显示 Dialog:
```java
Dialog myDialog = new Dialog(this, R.style.MyDialogTheme);
myDialog.show();
```
2. 在 Dialog 的 show() 方法中设置 Activity 转场动画为 null。
在 Activity 中使用 Dialog.show() 方法显示 Dialog:
```java
Dialog myDialog = new Dialog(this);
myDialog.show();
// 在 Dialog 的 show() 方法中设置 Activity 转场动画为 null
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
getWindow().setStatusBarColor(Color.TRANSPARENT);
getWindow().setEnterTransition(null);
getWindow().setExitTransition(null);
```
这两种方式都可以解决右滑退出 Dialog 时出现闪屏的问题,你可以根据自己的需求选择其中一种方式进行实现。
阅读全文