-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 3DS Black Screen Bug on Android 14 (#1025)
* Add translucent theme to ThreeDSecureActivity. * Add reference links. * Update CHANGELOG.
- Loading branch information
1 parent
b0a7121
commit e3ff614
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<!-- Ref: https://stackoverflow.com/a/21492572 --> | ||
<!-- Ref: https://github.com/aosp-mirror/platform_frameworks_base/blob/dc2cfc8a10b8b74ec2c70f3b2d32aa9bf765de87/core/res/res/values/themes.xml#L678C1-L698C13 --> | ||
<style name="Theme.Translucent" parent="Theme.AppCompat"> | ||
<item name="android:windowBackground">#00000000</item> | ||
<item name="android:colorBackgroundCacheHint">@null</item> | ||
<item name="android:windowIsTranslucent">true</item> | ||
<item name="android:windowAnimationStyle">@null</item> | ||
</style> | ||
|
||
<style name="Theme.Translucent.NoTitleBar"> | ||
<item name="android:windowActionBar">false</item> | ||
<item name="android:windowNoTitle">true</item> | ||
<item name="android:windowContentOverlay">@null</item> | ||
</style> | ||
|
||
<style name="Theme.Translucent.NoTitleBar.Fullscreen"> | ||
<item name="android:windowFullscreen">true</item> | ||
</style> | ||
</resources> |