Explanation:
-
Imports:
Import necessary classes including
Color
for manipulating colors andHandler
for scheduling periodic tasks. -
Activity Setup:
MainActivity
is set up as usual with its layout (activity_main.xml
assumed to have a layout containing a rootViewGroup
with idmainLayout
). -
Handler and Runnable:
-
Handler
is used to post aRunnable
periodically. -
Runnable
is defined as an anonymous inner class implementingRunnable
, which changes the background color (changeBackgroundColor()
) and schedules itself to run again after 10 seconds (10000 milliseconds).
-
-
changeBackgroundColor():
-
Generates a random color using
Color.argb()
with random values for RGB (and full opacity, 255 for alpha).
-
-
Lifecycle Management:
-
handler.post(runnable)
starts the periodic color change when the activity is created. -
handler.removeCallbacks(runnable)
ensures therunnable
is stopped when the activity is destroyed to prevent memory leaks.
-
-
Layout Requirements:
-
Ensure your
activity_main.xml
contains a root layout (e.g.,LinearLayout
,RelativeLayout
,ConstraintLayout
) with idmainLayout
that represents the container whose background color you want to change.
-
Make sure to replace activity_main.xml
and R.layout.activity_main
with your actual layout file and resource ID if they are named differently in your project. This code assumes you're using Kotlin with Android and have a basic understanding of Android development concepts like layouts and activities.