How do I change the background color in the app?

Asked 2 years ago, Updated 2 years ago, 21 views

I want to change the background color of the app to white, so what is the simplest way?

android

2022-09-22 08:59

1 Answers

In layout xml, give the value of android:background as #FFFFFF. Or

android:background="@color/white"<!--~~Layout.xml-->

<color name="white">#FFFFFF</color><!--Strings.xml-->


2022-09-22 08:59

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.