Reorganize and group modules

This commit is contained in:
MM20
2022-12-13 17:37:26 +01:00
parent bac24baad2
commit 3f8880a90a
995 changed files with 501 additions and 298 deletions
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="AspectRatioImageView">
<attr name="aspectRatio" format="float" />
<attr name="fixedHeight" format="boolean" />
</declare-styleable>
</resources>
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="TransparentBottomSheetTheme" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/TransparentBottomSheetStyle</item>
</style>
<style name="TransparentBottomSheetStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@android:color/transparent</item>
</style>
</resources>
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="LauncherCardView">
<attr name="baseElevation" format="dimension|reference" />
<attr name="backgroundOpacity" format="integer" />
</declare-styleable>
</resources>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="SearchGridView">
<attr name="rowHeight" format="dimension" />
</declare-styleable>
</resources>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="elevation_shadow_1dp_radius">0.5dp</dimen>
<dimen name="elevation_shadow_2dp_radius">1dp</dimen>
<dimen name="elevation_shadow_1dp_y">0.5dp</dimen>
<dimen name="elevation_shadow_2dp_y">1dp</dimen>
<dimen name="card_elevation">@dimen/mtrl_card_elevation</dimen>
</resources>
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="weather_sun">@color/amber</color>
<color name="weather_moon">#9E9E9E</color>
<color name="weather_cloud_light_1">#ECEFF1</color>
<color name="weather_cloud_light_2">#90A4AE</color>
<color name="weather_cloud_medium_1">#546E7A</color>
<color name="weather_cloud_medium_2">#455a64</color>
<color name="weather_cloud_dark_1">#37474F</color>
<color name="weather_cloud_dark_2">#263238</color>
<color name="weather_snow">#E0E0E0</color>
<color name="weather_rain">@color/blue</color>
<color name="weather_hail">#BBDEFB</color>
<color name="weather_hot">@color/red</color>
<color name="weather_cold">@color/lightblue</color>
<color name="weather_wind">#90A4AE</color>
<color name="weather_wind_dark">#546E7A</color>
<color name="weather_fog">@color/weather_cloud_light_2</color>
<color name="weather_lightning_bolt">@color/amber</color>
</resources>