Files
Woka_Native_Android/app/src/main/res/values/themes.xml
AdityaGaikwad 294afcb80a Created Games module: UI and backend
Integrated game listing and data caching

Data syncing with adapters and MyListFragment

Dialog showing for game.

GamePlayerActivity created - loading url, keeping screen on, hiding system bars.

Integrated karaoke api and caching
data syncing for like and fav data
2024-07-08 19:57:39 +05:30

44 lines
2.0 KiB
XML

<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Base.Theme.Woka" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your light theme here. -->
<item name="colorPrimary">@color/color_primary</item>
<item name="android:textCursorDrawable">@drawable/cursor_drawable</item>
<item name="android:windowDisablePreview">true</item>
</style>
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
<!-- Set the splash screen background to black -->
<item name="android:windowBackground">@drawable/splash_bg</item>
<item name="windowSplashScreenBackground">@color/white</item>
<item name="postSplashScreenTheme">@style/Theme.Woka</item>
</style>
<style name="MyDatePicker">
<!-- Text color -->
<item name="android:textColorPrimary">@color/color_primary</item>
<!-- Divider color -->
<item name="colorControlNormal">@color/color_primary</item>
<item name="android:textSize">20sp</item>
<item name="android:fontFamily">@font/exo_2</item>
</style>
<!-- transparent activity-->
<style name="TransparentActivity" parent="Base.Theme.Woka">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
<!-- full screen view-->
<style name="FullScreenTheme" parent="Theme.Material3.Light.NoActionBar">
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowLayoutInDisplayCutoutMode" tools:targetApi="o_mr1">shortEdges
</item>
<item name="android:windowDisablePreview">true</item>
<item name="android:windowBackground">@color/black</item>
</style>
<style name="Theme.Woka" parent="Base.Theme.Woka" />
</resources>