This commit is contained in:
lunaticbum
2024-08-14 16:06:50 +09:00
parent b8c08da378
commit 4e26fab27c
24 changed files with 1578 additions and 932 deletions
+9
View File
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CircleImageView">
<attr name="civ_border_width" format="dimension" />
<attr name="civ_border_color" format="color" />
<attr name="civ_border_overlay" format="boolean" />
<attr name="civ_circle_background_color" format="color" />
</declare-styleable>
</resources>
+14 -1
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<resources xmlns:app="http://schemas.android.com/apk/res-auto">
<style name="Theme.LunarLauncher.Starting" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/ic_launcher_primary</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
@@ -21,4 +21,17 @@
<style name="SettingsNavBar">
<item name="android:navigationBarColor">?attr/colorSurface</item>
</style>
<style name="SearchIcons">
<item name="android:layout_margin">5dp</item>
<item name="android:adjustViewBounds">true</item>
<item name="android:scaleType">fitCenter</item>
<item name="android:background">@null</item>
<item name="android:layout_width">40dp</item>
<item name="android:layout_height">40dp</item>
<item name="civ_border_width">1dp</item>
<item name="civ_border_color">#000000</item>
</style>
</resources>