Create An Android Radio Button Programmatically in Android

Hello Readers! In this tutorial, we are going to learn about how to create android radio button programmatically in android. We will also learn how to add android radio button in Radio Group dynamically.

Output

Tutorialwing Android Dynamic Radio Button Output Android Radio Button programmatically

Tutorialwing Android Dynamic Radio Button Output

Getting Started

At first, we will create android project. Then, we will use radio button programmatically in this project.

1. Creating New Project

Follow the steps below to create a new project. Please ignore the steps if you have already created a new project.

Step Description
1. Open Android Studio.
2. Go to File => New => New Project. Write application name as DynamicRadioButton. Then, click next button.
3. Select minimum SDK you need. However, we have selected 17 as minimum SDK. Then, click next button
4. Then, select Empty Activity => click next => click finish.
5. If you have followed above process correctly, you will get a newly created project successfully. However, you can also visit post to create a new project to know steps in detail.

Now, we will modify xml and java file to use radio button programmatically.

2. Modify values folder

Open res/values/strings.xml file and add below code into it.

<resources>
	<string name="app_name">DynamicRadioButton</string>
	<string name="male">Male</string>
	<string name="female">Female</string>
	<string name="you_selected">You selected:</string>
</resources>

Other values folders have not been changed. So, we are not going to mention it here.

3. Modify Layout Folder

Open res/layout/activity_main.xml file. Then, add below code into it.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
	android:id="@+id/rootContainer"
	xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:gravity="center"
	android:orientation="vertical">

	<RadioGroup
		android:id="@+id/radioGroup"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:paddingStart="20dp">

	</RadioGroup>

</LinearLayout>

In activity_main.xml file, we have added Radio Group (having id radioGroup) that will act as container for the radio buttons created dynamically.

4. Create Android Radio Button Programmatically / Dynamically

Open app/src/main/java/com.tutorialwing.dynamiceradiobutton/MainActivity.java file and add below code into it.

package com.tutorialwing.dynamicradiobutton;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		LinearLayout linearLayout = findViewById(R.id.rootContainer);

		// Create RadioButton Dynamically
		RadioButton radioButton1 = new RadioButton(this);
		radioButton1.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
		radioButton1.setText(R.string.male);
		radioButton1.setId(0);

		RadioButton radioButton2 = new RadioButton(this);
		radioButton2.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
		radioButton2.setText(R.string.female);
		radioButton2.setId(1);

		RadioGroup radioGroup = findViewById(R.id.radioGroup);
		if (radioGroup != null) {
			radioGroup.addView(radioButton1);
			radioGroup.addView(radioButton2);

			radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
				@Override
				public void onCheckedChanged(RadioGroup group, int checkedId) {
					String text = getString(R.string.you_selected);
					text += " " + getString((checkedId == 0) ? R.string.male : R.string.female);
					Toast.makeText(getApplicationContext(), text, Toast.LENGTH_SHORT).show();
				}
			});
		}
	}
}

Here, we have created 2 radio buttons (one for male and another for female). Both newly created buttons are then being added to Radio Groups, having id radioGroup. After that, We have added a listener for radio group so that whenever we select a different radio button, a toast message can be displayed.

Since AndroidManifest.xml file is very important in any android project. We are also going to see the content inside this file.

AndroidManifest.xml file

Code inside src/main/AndroidManifest.xml file would look like below –

<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.tutorialwing.dynamicradiobutton"
		  xmlns:android="http://schemas.android.com/apk/res/android">

	<application
		android:allowBackup="true"
		android:icon="@mipmap/ic_launcher"
		android:label="@string/app_name"
		android:roundIcon="@mipmap/ic_launcher_round"
		android:supportsRtl="true"
		android:theme="@style/AppTheme">
		<activity android:name=".MainActivity">
			<intent-filter>
				<action android:name="android.intent.action.MAIN"/>

				<category android:name="android.intent.category.LAUNCHER"/>
			</intent-filter>
		</activity>
	</application>

</manifest>

When we run the application, we will output as shown above.

That’s the end of tutorial on Creating Android Radio Button programmatically in android.

Leave a Reply