Create an Android TimePicker Programmatically in Android

Hello Readers! In this post, we are going to learn how to create and use android timePicker programmatically in any android application. We will also learn to add timePicker in linearLayout programmatically in any application.

Output

Tutorialwing Android Dynamic TimePicker Output Android TimePicker Programmatically in Android

Tutorialwing Android Dynamic TimePicker Output

Getting Started

At first, we will create an android application. Then, we will use timePicker widget in the application.

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 DynamicTimePicker. 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 android timePicker programmatically.

2. Modify values folder

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

<resources>
	<string name="app_name">DynamicTimePicker</string>
	<string name="selected_time">The selected time is:</string>
</resources>

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
	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">

	<LinearLayout
		android:id="@+id/rootContainer"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:orientation="vertical">

	</LinearLayout>

	<TextView
		android:id="@+id/textView"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:layout_marginLeft="35dp"
		android:layout_marginTop="30dp"
		android:visibility="gone"/>

</LinearLayout>

In activity_main.xml file, we have defined textView and linearLayout, with id rootContainer, that will act as container for the timePicker widget created programmatically.

4. Create Android TimePicker Programmatically / Dynamically

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

package com.tutorialwing.dynamictimepicker;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.TimePicker;

public class MainActivity extends AppCompatActivity {

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

		final TextView textView = findViewById(R.id.textView);

		TimePicker timePicker = new TimePicker(this);
		LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
		layoutParams.setMargins(20, 20, 20, 20);
		timePicker.setLayoutParams(layoutParams);
		timePicker.setOnTimeChangedListener(new TimePicker.OnTimeChangedListener() {
			@Override
			public void onTimeChanged(TimePicker view, int hourOfDay, int minute) {

				String format = "";
				if (hourOfDay == 0) {
					hourOfDay += 12;
					format = "AM";
				} else if (hourOfDay == 12) {
					format = "PM";
				} else if (hourOfDay > 12) {
					hourOfDay -= 12;
					format = "PM";
				} else {
					format = "AM";
				}

				if (textView != null) {
					String hour = String.valueOf(hourOfDay < 10 ? "0" + hourOfDay : hourOfDay);
					String min = String.valueOf(minute < 10 ? "0" + minute : minute);

					String text = getString(R.string.selected_time) + " " + hour + " : " + min + " " + format;
					textView.setText(text);
					textView.setVisibility(View.VISIBLE);
				}
			}
		});

		LinearLayout linearLayout = findViewById(R.id.rootContainer);
		if (linearLayout != null) {
			linearLayout.addView(timePicker);
		}
	}
}

We have created android timePicker programmatically in java file (i.e. MainActivity.java file). Then, we have set layout params and margins. Then, we have set time change listener in timePicker. Whenever we change time in timePicker, selected time will be displayed in textView. At last, we have set this timePicker in linearLayout having id rootContainer.

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.dynamictimepicker"
		  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 get output as shown above.

That’s the end of tutorial on Creating Android TimePicker Programmatically.

Leave a Reply