2018-07-27 18:37:33 +05:30
|
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
<style name="Theme.RetroMusic" parent="Theme.RetroMusic.Base" />
|
|
|
|
|
2020-04-28 15:05:14 +05:30
|
|
|
<style name="Theme.RetroMusic.Light" parent="Theme.RetroMusic.Base.Light">
|
2020-03-17 21:10:36 +01:00
|
|
|
<item name="android:windowBackground">@color/window_color_light</item>
|
2020-04-28 15:05:14 +05:30
|
|
|
<item name="android:scrollbars">none</item>
|
2020-05-23 19:23:10 +05:30
|
|
|
<item name="dialogCornerRadius">16dp</item>
|
2020-09-25 01:51:32 +05:30
|
|
|
<item name="android:windowAnimationStyle">@style/WindowAnimationTransition</item>
|
2020-03-17 21:10:36 +01:00
|
|
|
</style>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-04-28 15:05:14 +05:30
|
|
|
<style name="Theme.RetroMusic.Black" parent="Theme.RetroMusic.Base.Black">
|
2020-03-17 21:10:36 +01:00
|
|
|
<item name="android:windowBackground">@color/window_color_dark</item>
|
2020-04-28 15:05:14 +05:30
|
|
|
<item name="android:scrollbars">none</item>
|
2020-05-23 19:23:10 +05:30
|
|
|
<item name="dialogCornerRadius">16dp</item>
|
2020-09-25 01:51:32 +05:30
|
|
|
<item name="android:windowAnimationStyle">@style/WindowAnimationTransition</item>
|
2020-03-17 21:10:36 +01:00
|
|
|
</style>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-04-28 15:05:14 +05:30
|
|
|
<style name="Theme.RetroMusic.FollowSystem" parent="Theme.RetroMusic.Base.Adaptive">
|
2020-03-17 21:10:36 +01:00
|
|
|
<item name="android:windowBackground">@color/window_color</item>
|
2020-04-26 22:44:18 +05:30
|
|
|
<item name="android:scrollbars">none</item>
|
2020-05-23 19:23:10 +05:30
|
|
|
<item name="dialogCornerRadius">16dp</item>
|
2020-09-25 01:51:32 +05:30
|
|
|
<item name="android:windowAnimationStyle">@style/WindowAnimationTransition</item>
|
2020-03-17 21:10:36 +01:00
|
|
|
</style>
|
2019-12-01 16:58:57 +05:30
|
|
|
|
2021-09-26 15:59:32 +05:30
|
|
|
<style name="Theme.RetroMusic.MD3" parent="@style/Theme.Material3.DayNight.NoActionBar">
|
|
|
|
<item name="roundSelector">@drawable/round_selector</item>
|
|
|
|
<item name="rectSelector">@drawable/rect_selector</item>
|
|
|
|
<item name="materialCardViewStyle">@style/Widget.Material3.CardView.Elevated</item>
|
|
|
|
<item name="materialButtonStyle">@style/MaterialButtonTheme</item>
|
2021-10-05 13:21:09 +05:30
|
|
|
<item name="bottomSheetTint">?attr/colorSurface</item>
|
2021-09-26 15:59:32 +05:30
|
|
|
</style>
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
<style name="Theme.RetroMusic.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent" />
|
|
|
|
|
|
|
|
<style name="Theme.RetroMusic.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title" />
|
|
|
|
|
|
|
|
<style name="OverFlowButton">
|
2020-07-20 02:30:30 +05:30
|
|
|
<item name="srcCompat">@drawable/ic_more_vert</item>
|
2018-07-27 18:37:33 +05:30
|
|
|
<item name="android:layout_width">48dp</item>
|
|
|
|
<item name="android:layout_height">48dp</item>
|
|
|
|
<item name="android:scaleType">center</item>
|
|
|
|
<item name="android:background">?attr/roundSelector</item>
|
|
|
|
<item name="android:focusableInTouchMode">false</item>
|
|
|
|
<item name="android:focusable">false</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="MusicProgressSlider" parent="MusicProgressSliderParent">
|
|
|
|
<item name="android:thumbOffset">0dp</item>
|
|
|
|
</style>
|
|
|
|
|
2021-09-12 01:28:33 +05:30
|
|
|
<style name="Toolbar" parent="Widget.Material3.Toolbar">
|
2018-07-27 18:37:33 +05:30
|
|
|
<item name="android:layout_width">match_parent</item>
|
2021-09-20 15:03:47 +05:30
|
|
|
<item name="android:layout_height">wrap_content</item>
|
2018-07-27 18:37:33 +05:30
|
|
|
<item name="popupTheme">?toolbarPopupTheme</item>
|
|
|
|
<item name="android:transitionName" tools:ignore="NewApi">toolbar</item>
|
|
|
|
<item name="layout_collapseMode">pin</item>
|
|
|
|
<item name="contentInsetStartWithNavigation">0dp</item>
|
|
|
|
<item name="contentInsetStart">0dp</item>
|
|
|
|
<item name="titleMarginStart">16dp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
2019-10-03 22:43:04 +05:30
|
|
|
<style name="ToolbarTextAppearanceNormal">
|
2019-10-03 00:24:39 +05:30
|
|
|
<item name="android:textStyle">bold</item>
|
2019-10-12 14:59:52 +05:30
|
|
|
<item name="android:textAllCaps">false</item>
|
|
|
|
<item name="android:textSize">20sp</item>
|
|
|
|
<item name="android:letterSpacing">0.0125</item>
|
2019-12-01 20:57:01 +05:30
|
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
2020-05-07 12:27:24 +05:30
|
|
|
</style>
|
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<style name="SubTitleTextAppearance">
|
2019-09-27 21:06:10 +05:30
|
|
|
<item name="android:textAppearance">@style/TextViewOverline</item>
|
2018-09-23 15:34:43 +05:30
|
|
|
<item name="android:layout_gravity">start|center_vertical</item>
|
2018-11-28 11:07:10 +05:30
|
|
|
<item name="android:padding">12dp</item>
|
2018-11-05 19:23:07 +05:30
|
|
|
<item name="android:layout_width">wrap_content</item>
|
|
|
|
<item name="android:layout_height">wrap_content</item>
|
2018-09-23 15:34:43 +05:30
|
|
|
</style>
|
|
|
|
|
2020-05-10 01:20:49 +05:30
|
|
|
<style name="BottomSheetItemTextAppearance" parent="Widget.MaterialComponents.BottomNavigationView.Colored">
|
|
|
|
<item name="android:textSize">13sp</item>
|
2019-09-02 20:21:53 +05:30
|
|
|
</style>
|
|
|
|
|
2018-12-06 15:53:03 +05:30
|
|
|
<style name="Fab" parent="FabParent" />
|
2018-12-08 09:04:15 +05:30
|
|
|
|
2020-05-24 18:05:22 +05:30
|
|
|
<style name="TextViewNormal" parent="">
|
|
|
|
<item name="android:textSize">14sp</item>
|
|
|
|
</style>
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2021-09-09 00:00:20 +05:30
|
|
|
<style name="TextViewNormalCompress" parent="TextAppearance.MaterialComponents.Caption">
|
|
|
|
<item name="android:textSize">14sp</item>
|
|
|
|
</style>
|
|
|
|
|
2020-08-21 23:31:52 +05:30
|
|
|
<style name="TextViewHeadline4.Compress" parent="TextAppearance.MaterialComponents.Headline4">
|
|
|
|
<item name="android:textSize">32sp</item>
|
|
|
|
</style>
|
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewHeadline4" parent="TextAppearance.MaterialComponents.Headline4" />
|
2019-09-29 08:39:21 +05:30
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewHeadline5" parent="TextAppearance.MaterialComponents.Headline5" />
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewCaption" parent="TextAppearance.MaterialComponents.Caption" />
|
2019-09-02 20:33:11 +05:30
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewHeadline6" parent="TextAppearance.MaterialComponents.Headline6" />
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewHeadline3" parent="TextAppearance.MaterialComponents.Headline3" />
|
2019-09-28 23:22:49 +05:30
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewHeadline2" parent="TextAppearance.MaterialComponents.Headline2" />
|
2020-01-28 22:30:28 +05:30
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewSubtitle1" parent="TextAppearance.MaterialComponents.Subtitle1" />
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
<style name="TextViewSubtitle2" parent="TextAppearance.MaterialComponents.Subtitle2" />
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2020-05-24 18:05:22 +05:30
|
|
|
<style name="TextViewBody1" parent="TextAppearance.MaterialComponents.Body1" />
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2020-08-13 13:54:36 +05:30
|
|
|
<style name="TextViewButton" parent="TextAppearance.MaterialComponents.Button" />
|
|
|
|
|
2020-05-24 18:05:22 +05:30
|
|
|
<style name="TextViewBody2" parent="TextAppearance.MaterialComponents.Body2" />
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2020-05-24 18:05:22 +05:30
|
|
|
<style name="TextViewOverline" parent="TextAppearance.MaterialComponents.Overline" />
|
2019-09-02 20:21:53 +05:30
|
|
|
|
2019-10-26 19:44:09 +05:30
|
|
|
<style name="TopCornerCardView">
|
|
|
|
<item name="cornerFamilyTopLeft">rounded</item>
|
|
|
|
<item name="cornerFamilyTopRight">rounded</item>
|
|
|
|
<item name="cornerSizeTopLeft">16dp</item>
|
|
|
|
<item name="cornerSizeTopRight">16dp</item>
|
|
|
|
</style>
|
|
|
|
|
2020-05-09 11:25:42 +05:30
|
|
|
<style name="ClassicThemeOverLay">
|
2020-05-14 20:57:42 +05:30
|
|
|
<item name="cornerFamily">cut</item>
|
2020-05-09 11:25:42 +05:30
|
|
|
<item name="cornerSize">0dp</item>
|
2019-10-12 02:31:39 +05:30
|
|
|
</style>
|
|
|
|
|
2019-11-15 22:00:10 +05:30
|
|
|
|
2019-11-15 23:38:57 +05:30
|
|
|
<style name="SplashTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
|
|
<item name="android:windowBackground">@drawable/splash</item>
|
|
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
|
|
</style>
|
2020-02-24 11:12:09 +05:30
|
|
|
|
2020-08-14 14:04:03 +05:30
|
|
|
<style name="MaterialPopupMenuStyle" parent="Widget.MaterialComponents.PopupMenu">
|
|
|
|
<item name="android:popupBackground">@drawable/popup_background</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="MaterialAlertDialogTheme" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog">
|
|
|
|
<item name="android:dialogCornerRadius" tools:targetApi="p">12dp</item>
|
|
|
|
<item name="materialAlertDialogBodyTextStyle">
|
|
|
|
@style/AppTextAppearance.MaterialAlertDialog.Body
|
|
|
|
</item>
|
|
|
|
<item name="materialAlertDialogTitleTextStyle">
|
|
|
|
@style/AppTextAppearance.MaterialAlertDialog.Title
|
|
|
|
</item>
|
|
|
|
<item name="buttonBarPositiveButtonStyle">
|
|
|
|
@style/AppTextAppearance.MaterialAlertDialog.Button
|
|
|
|
</item>
|
|
|
|
<item name="buttonBarNegativeButtonStyle">
|
|
|
|
@style/AppTextAppearance.MaterialAlertDialog.Button
|
|
|
|
</item>
|
|
|
|
<item name="buttonBarNeutralButtonStyle">
|
|
|
|
@style/AppTextAppearance.MaterialAlertDialog.Button
|
|
|
|
</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTextAppearance.MaterialAlertDialog.Button" parent="Widget.MaterialComponents.Button.TextButton">
|
|
|
|
<item name="android:textSize">16sp</item>
|
2020-08-21 10:31:53 +05:30
|
|
|
<item name="android:textStyle">bold</item>
|
2020-09-06 23:26:39 +05:30
|
|
|
<item name="android:padding">0dp</item>
|
2020-08-14 14:04:03 +05:30
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTextAppearance.MaterialAlertDialog.Body" parent="MaterialAlertDialog.MaterialComponents.Body.Text">
|
2020-09-06 23:26:39 +05:30
|
|
|
<item name="android:textAppearance">@style/TextViewBody1</item>
|
|
|
|
<item name="android:paddingTop">16dp</item>
|
2020-08-14 14:04:03 +05:30
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTextAppearance.MaterialAlertDialog.Title" parent="MaterialAlertDialog.MaterialComponents.Title.Text">
|
2020-09-06 23:26:39 +05:30
|
|
|
<item name="android:textAppearance">@style/TextViewHeadline6</item>
|
2020-08-14 14:04:03 +05:30
|
|
|
<item name="android:textStyle">bold</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="MaterialButtonTheme" parent="Widget.MaterialComponents.Button">
|
|
|
|
<item name="cornerRadius">6dp</item>
|
|
|
|
<item name="iconGravity">textStart</item>
|
|
|
|
<item name="iconTint">?attr/colorControlNormal</item>
|
|
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
|
|
<item name="android:textAppearance">@style/TextViewNormal</item>
|
|
|
|
<item name="android:textAllCaps">false</item>
|
|
|
|
<item name="android:paddingTop">@dimen/button_padding_vertical</item>
|
|
|
|
<item name="android:paddingBottom">@dimen/button_padding_vertical</item>
|
|
|
|
</style>
|
2020-08-23 13:31:42 +05:30
|
|
|
|
|
|
|
|
2021-10-05 13:21:09 +05:30
|
|
|
<style name="BottomSheetStyle" parent="Widget.Material3.BottomSheet">
|
2021-09-12 01:28:33 +05:30
|
|
|
<item name="android:maxWidth">@empty</item>
|
2021-09-12 19:50:33 +05:30
|
|
|
<item name="android:backgroundTint">?attr/bottomSheetTint</item>
|
2020-08-23 13:31:42 +05:30
|
|
|
</style>
|
|
|
|
|
2020-09-07 15:01:27 +05:30
|
|
|
<style name="MaterialCardViewStroke">
|
|
|
|
<item name="cardUseCompatPadding">true</item>
|
|
|
|
<item name="strokeWidth">1dp</item>
|
|
|
|
<item name="strokeColor">?android:attr/colorButtonNormal</item>
|
|
|
|
<item name="cardElevation">0dp</item>
|
|
|
|
</style>
|
2020-10-09 01:14:10 +05:30
|
|
|
|
2020-09-25 01:51:32 +05:30
|
|
|
<!-- This will set the fade in animation on all your activities by default -->
|
|
|
|
<style name="WindowAnimationTransition">
|
|
|
|
<item name="android:windowEnterAnimation">@android:anim/fade_in</item>
|
|
|
|
<item name="android:windowExitAnimation">@android:anim/fade_out</item>
|
|
|
|
</style>
|
2020-10-09 01:14:10 +05:30
|
|
|
|
|
|
|
<style name="circleImageView" parent="">
|
|
|
|
<item name="cornerFamily">rounded</item>
|
|
|
|
<item name="cornerSize">5%</item>
|
|
|
|
</style>
|
2021-09-26 17:09:46 +05:30
|
|
|
|
|
|
|
<style name="SearchChipStyle" parent="Widget.Material3.Chip.Filter">
|
|
|
|
<item name="android:checked">false</item>
|
|
|
|
<item name="android:textSize">16sp</item>
|
|
|
|
<item name="checkedIconEnabled">true</item>
|
|
|
|
<item name="chipEndPadding">10dp</item>
|
|
|
|
<item name="chipIconEnabled">true</item>
|
|
|
|
<item name="chipMinHeight">40dp</item>
|
|
|
|
<item name="chipStartPadding">10dp</item>
|
|
|
|
</style>
|
2021-09-09 00:00:20 +05:30
|
|
|
<!--Bottom Sheet Dialog Style-->
|
|
|
|
<style name="BottomSheetDialogStyle" parent="Theme.Design.BottomSheetDialog">
|
|
|
|
<item name="android:windowIsFloating">false</item>
|
|
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
|
|
<item name="android:windowSoftInputMode">adjustResize|stateVisible</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="CarTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
|
|
|
<item name="colorPrimaryDark">@color/md_deep_purple_700</item>
|
|
|
|
<item name="colorAccent">@color/md_deep_purple_A400</item>
|
|
|
|
<item name="colorPrimary">@color/md_deep_purple_500</item>
|
|
|
|
</style>
|
2018-07-27 18:37:33 +05:30
|
|
|
</resources>
|