refactor: rename AppThemeTransparent to Theme.App.Transparent for consistency

This commit is contained in:
proletarius101 2024-03-20 22:46:17 +08:00
parent 1eb7f5a30b
commit 9efd92037a
2 changed files with 4 additions and 4 deletions

View File

@ -283,10 +283,10 @@
<activity
android:name=".installer.DefaultInstallerActivity"
android:theme="@style/AppThemeTransparent" />
android:theme="@style/Theme.App.Transparent" />
<activity
android:name=".installer.ErrorDialogActivity"
android:theme="@style/AppThemeTransparent" />
android:theme="@style/Theme.App.Transparent" />
<activity
android:name=".views.main.MainActivity"
@ -453,7 +453,7 @@
<activity
android:name=".installer.FileInstallerActivity"
android:theme="@style/AppThemeTransparent" />
android:theme="@style/Theme.App.Transparent" />
<provider
android:name="org.fdroid.fdroid.installer.ApkFileProvider"

View File

@ -123,7 +123,7 @@
<!-- Same as Theme.App except a black background in Dark mode -->
<style name="Theme.App.Black" parent="Theme.App" />
<style name="AppThemeTransparent" parent="@android:style/Theme.Translucent.NoTitleBar">
<style name="Theme.App.Transparent" parent="Base.Theme.App">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowIsTranslucent">true</item>