mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 12:17:48 +01:00
Revert removing Fullscreen theme (#7974)
- Is still used by TachiyomiFullscreenDialog
This commit is contained in:
parent
448978ac8a
commit
5ec5829e77
3 changed files with 22 additions and 0 deletions
6
app/src/main/res/anim/fade_in_short.xml
Normal file
6
app/src/main/res/anim/fade_in_short.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:duration="100"
|
||||||
|
android:fromAlpha="0.0"
|
||||||
|
android:interpolator="@android:interpolator/linear"
|
||||||
|
android:toAlpha="1.0" />
|
6
app/src/main/res/anim/fade_out_short.xml
Normal file
6
app/src/main/res/anim/fade_out_short.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:duration="100"
|
||||||
|
android:fromAlpha="1.0"
|
||||||
|
android:interpolator="@android:interpolator/linear"
|
||||||
|
android:toAlpha="0.0" />
|
|
@ -175,6 +175,16 @@
|
||||||
<item name="cornerSize">@dimen/card_radius</item>
|
<item name="cornerSize">@dimen/card_radius</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="ThemeOverlay.Tachiyomi.Dialog.Fullscreen" parent="ThemeOverlay.Material3">
|
||||||
|
<item name="android:windowIsFloating">false</item>
|
||||||
|
<item name="android:windowAnimationStyle">@style/Animation.Tachiyomi.Dialog</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="Animation.Tachiyomi.Dialog" parent="Animation.AppCompat.Dialog">
|
||||||
|
<item name="android:windowEnterAnimation">@anim/fade_in_short</item>
|
||||||
|
<item name="android:windowExitAnimation">@anim/fade_out_short</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<!--===========-->
|
<!--===========-->
|
||||||
<!--Preferences-->
|
<!--Preferences-->
|
||||||
<!--===========-->
|
<!--===========-->
|
||||||
|
|
Loading…
Reference in a new issue