Also tint app icon in drawer menu

This commit is contained in:
Sylvain Berfini 2024-04-29 14:59:51 +02:00
parent 0c7a6bb3b3
commit 20f4a072c4
4 changed files with 5 additions and 4 deletions

View file

@ -31,9 +31,10 @@
android:layout_height="32dp"
android:layout_marginStart="26dp"
android:layout_marginTop="30dp"
android:src="@mipmap/ic_launcher_round"
android:src="@drawable/linphone_notification"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent" />
app:layout_constraintStart_toStartOf="parent"
app:tint="@color/main1_500" />
<androidx.appcompat.widget.AppCompatTextView
android:onClick="@{() -> viewModel.closeDrawerMenu()}"

View file

@ -1,7 +1,7 @@
<resources>
<style name="AppSplashScreenTheme" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/black</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/linphone</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/linphone_splashscreen</item>
<item name="postSplashScreenTheme">@style/Theme.Linphone</item>
</style>
<!-- Base application theme. -->

View file

@ -1,7 +1,7 @@
<resources>
<style name="AppSplashScreenTheme" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/white</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/linphone</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/linphone_splashscreen</item>
<item name="postSplashScreenTheme">@style/Theme.Linphone</item>
</style>