This course provides an in-depth explanation and practical examples on how to control activities when developing Android apps using Kotlin.
1. What is an Activity?
An activity is a basic component that constitutes the UI of an Android app. Each activity represents a single screen that interacts with the user, and multiple activities are used to implement the app’s functionality.
For example, a login screen, main screen, settings screen, etc., can each be composed of independent activities. Each activity has a lifecycle, which plays an important role in managing state changes in the app.
2. Activity Lifecycle
The lifecycle of an activity consists of the following main methods:
- onCreate(): Called when the activity is created. It is used to initialize the UI and set up necessary data and resources.
- onStart(): Called when the activity starts to become visible to the user.
- onResume(): Called when the activity comes to the foreground. This is where interaction with the user can begin.
- onPause(): Called when the current activity is paused before another activity is started. This is where necessary data saving tasks are performed.
- onStop(): Called when the activity is no longer visible.
- onDestroy(): Called when the activity is finished. This is where resource release tasks can be performed.
By appropriately utilizing these lifecycle methods, you can effectively manage the state of the app.
3. Creating a Basic Activity
Now, let’s create a simple Android app. We will look at how to create a basic activity using Kotlin.
3.1 Creating a Project
Open Android Studio and create a new project. Choose Kotlin as the programming language and select the basic template of Empty Activity. We’ll set the project name as HelloWorld.
3.2 Writing Activity Code
package com.example.helloworld
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
override fun onStart() {
super.onStart()
// Actions to perform when the activity starts
}
override fun onResume() {
super.onResume()
// Actions to perform when the activity is in the foreground
}
override fun onPause() {
super.onPause()
// Actions to perform when the activity is paused
}
override fun onStop() {
super.onStop()
// Actions to perform when the activity is no longer visible
}
override fun onDestroy() {
super.onDestroy()
// Actions to perform when the activity is destroyed
}
}
In the above code, we created a MainActivity class and overridden various lifecycle methods to define actions to be performed at each state.
3.3 Setting XML Layout
Now let’s modify the activity_main.xml file to define the UI.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_centerInParent="true" />
</RelativeLayout>
In the above XML code, we used a TextView to display the text “Hello World!” at the center of the screen.
4. Navigating Between Activities
In Android apps, it is common to use multiple activities to construct the user interface. In this section, we will look at how to navigate between activities.
4.1 Creating a New Activity
We will add a new activity. Let’s create an activity named SecondActivity and set its contents as follows:
package com.example.helloworld
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
class SecondActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_second)
}
}
4.2 Setting XML Layout
We will also modify the corresponding XML layout file activity_second.xml.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is the Second Activity"
android:layout_centerInParent="true" />
</RelativeLayout>
4.3 Adding Code for Activity Transition
Now let’s add code to MainActivity that allows navigation to SecondActivity. We will create a button and set it to switch to the new activity when clicked.
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Go to Second Activity"
android:layout_below="@id/textView"
android:layout_centerHorizontal="true"/>
// Add to the onCreate method of MainActivity
val button: Button = findViewById(R.id.button)
button.setOnClickListener {
val intent = Intent(this, SecondActivity::class.java)
startActivity(intent)
}
When the button is clicked, it will transition to SecondActivity.
5. Passing Results Between Activities
Passing data between activities is also one of the important functions. Here, we will explain how to return results.
5.1 Setting Up the Activity to Return Results
First, we will modify SecondActivity to return a result.
// SecondActivity code
button.setOnClickListener {
val resultIntent = Intent()
resultIntent.putExtra("result", "Result from Second Activity")
setResult(RESULT_OK, resultIntent)
finish()
}
5.2 Setting Up the Activity to Receive Results
Now, let’s modify MainActivity to receive results.
// Add to MainActivity code
val startForResult = registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result ->
if (result.resultCode == Activity.RESULT_OK) {
val data: Intent? = result.data
val resultText = data?.getStringExtra("result")
// Set result to TextView
}
}
button.setOnClickListener {
val intent = Intent(this, SecondActivity::class.java)
startForResult.launch(intent)
}
Now MainActivity can receive results from SecondActivity and reflect it in the UI.
6. Setting Activity Flags
In Android, you can set flags in the intent when starting an activity to control its behavior.
Some of the most commonly used flags are:
- FLAG_ACTIVITY_NEW_TASK: Starts the activity in a new task.
- FLAG_ACTIVITY_CLEAR_TOP: Removes existing activities in the stack and starts the activity on top of them.
6.1 Example of Flags
val intent = Intent(this, SecondActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
startActivity(intent)
In the above code, using FLAG_ACTIVITY_CLEAR_TOP will remove existing activities in the stack when starting SecondActivity.
7. Applying Activity Themes and Styles
You can apply various themes and styles to activities to adjust the UI. Here, we will explain how to create and apply a custom theme.
7.1 Setting the Theme
Open the res/values/styles.xml file and add a new theme.
<style name="CustomTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">#FF5722</item>
<item name="colorPrimaryDark">#E64A19</item>
<item name="colorAccent">#FFC107</item>
</style>
7.2 Applying the Theme
Apply the new theme to MainActivity in the AndroidManifest.xml file.
<activity
android:name=".MainActivity"
android:theme="@style/CustomTheme">
</activity>
In the above code, we set CustomTheme to be applied to the activity.
8. Ending an Activity
There are several ways to end an activity. By default, you can call the finish() method to terminate the current activity.
It is also important to note that it is automatically handled when the user presses the back button to close an activity.
button.setOnClickListener {
finish()
}
In the above code, clicking the button will terminate the current activity.