/
iezhelev
/
cppsh2
Обзор
Документация
Войти
/
iezhelev
/
cppsh2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
cppsh/src/main/res/values/themes.xml
113 строк
6 KB
iezhelev
first commit
10 май 2025, 14:06
10 май 2025, 14:06
cef3ce0
Код
Авторство
О чём код?
<resources xmlns:tools="http://schemas.android.com/tools"> <attr format="reference" name="postSplashScreenTheme"/> <attr format="dimension" name="splashScreenIconSize"/> <attr format="reference" name="windowSplashScreenAnimatedIcon"/> <attr format="integer" name="windowSplashScreenAnimationDuration"/> <attr format="color" name="windowSplashScreenBackground"/> <attr format="color" name="windowSplashScreenIconBackgroundColor"/> <dimen name="splashscreen_icon_mask_size_no_background">410dp</dimen> <dimen name="splashscreen_icon_mask_size_with_background">342dp</dimen> <dimen name="splashscreen_icon_mask_stroke_no_background">109dp</dimen> <dimen name="splashscreen_icon_mask_stroke_with_background">92dp</dimen> <dimen name="splashscreen_icon_size">?splashScreenIconSize</dimen> <dimen name="splashscreen_icon_size_no_background">288dp</dimen> <dimen name="splashscreen_icon_size_with_background">240dp</dimen> <integer name="default_icon_animation_duration">10000</integer> <style name="Base.Theme.SplashScreen" parent="Base.v21.Theme.SplashScreen"/> <style name="Base.Theme.SplashScreen.DayNight" parent="Base.Theme.SplashScreen.Light"/> <style name="Base.Theme.SplashScreen.Light" parent="Base.v21.Theme.SplashScreen.Light"/> <style name="Base.v21.Theme.SplashScreen" parent="android:Theme.DeviceDefault.NoActionBar"> </style> <style name="Base.v21.Theme.SplashScreen.Light" parent="android:Theme.DeviceDefault.Light.NoActionBar"> </style> <style name="Theme.SplashScreen" parent="Theme.SplashScreen.Common"> <item name="postSplashScreenTheme">?android:attr/theme</item> <item name="windowSplashScreenAnimationDuration"> @integer/default_icon_animation_duration </item> <item name="windowSplashScreenBackground">?android:colorBackground</item> <item name="windowSplashScreenAnimatedIcon">@android:drawable/sym_def_app_icon</item> </style> <style name="Theme.SplashScreen.Common" parent="Base.Theme.SplashScreen.DayNight"> <item name="android:windowActionBar">false</item> <item name="android:windowNoTitle">true</item> <item name="android:windowBackground"> @drawable/compat_splash_screen_no_icon_background </item> <item name="android:opacity">opaque</item> <item name="android:windowDrawsSystemBarBackgrounds">true</item> <item name="android:fitsSystemWindows">false</item> <item name="android:statusBarColor">@android:color/transparent</item> <item name="android:navigationBarColor">@android:color/transparent</item> <item name="splashScreenIconSize">@dimen/splashscreen_icon_size_no_background</item> </style> <style name="Theme.SplashScreen.IconBackground" parent="Theme.SplashScreen"> <item name="android:windowBackground">@drawable/compat_splash_screen</item> <item name="splashScreenIconSize">@dimen/splashscreen_icon_size_with_background</item> </style> <style name="Theme.App.Starting" parent="Theme.SplashScreen"> <item name="windowSplashScreenBackground">@color/blue_pin</item> <item name="postSplashScreenTheme">@style/Theme.IPMobileApp</item> <item name="windowSplashScreenAnimatedIcon">@drawable/ic_logo_galaxy_transport_splash</item> </style> <style name="Theme.IPMobileApp" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> <!-- Primary brand color. --> <item name="colorPrimary">@color/primary</item> <item name="colorPrimaryVariant">@color/primary</item> <item name="colorOnPrimary">@color/primaryText</item> <!-- Secondary brand color. --> <item name="colorSecondary">@color/teal_200</item> <item name="colorSecondaryVariant">@color/teal_700</item> <item name="colorOnSecondary">@color/black</item> <item name="android:textColor">@color/primaryText</item> <item name="android:textColorPrimary">@color/primaryText</item> <item name="android:textColorSecondary">@color/primaryText</item> <!-- Status bar color. --> <item name="android:statusBarColor">?attr/colorPrimary</item> <!-- Customize your theme here. --> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="android:forceDarkAllowed" tools:targetApi="q">false</item> </style> <!-- <style name="Theme.IPMobileApp.Dark">--> <!-- <!– Primary brand color. –>--> <!-- <item name="colorPrimary">@color/purple_500</item>--> <!-- <item name="colorPrimaryVariant">@color/purple_700</item>--> <!-- <item name="colorOnPrimary">@color/white</item>--> <!-- <!– Secondary brand color. –>--> <!-- <item name="colorSecondary">@color/teal_200</item>--> <!-- <item name="colorSecondaryVariant">@color/teal_700</item>--> <!-- <item name="colorOnSecondary">@color/white</item>--> <!-- <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>--> <!-- <item name="android:textColor">@android:color/white</item>--> <!-- <item name="android:textColorPrimary">@android:color/white</item>--> <!-- <!– Status bar color. –>--> <!-- <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>--> <!-- <!– Customize your theme here. –>--> <!-- <item name="windowActionBar">false</item>--> <!-- <item name="windowNoTitle">true</item>--> <!-- </style>--> <style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle"> <item name="color">@android:color/white</item> </style> </resources>