activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/rl" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="10dp" tools:context=".MainActivity" android:background="#daf0dd" > <TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="25dp" android:textColor="#fa7536" /> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Set Time" android:layout_below="@id/tv" /> </RelativeLayout>
MainActivity.java
package com.cfsuman.me.androidcodesnippets; import android.os.Bundle; import android.app.Activity; import android.view.View; import android.widget.Button; import android.widget.RelativeLayout; import android.widget.TextView; import android.app.DialogFragment; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Get the widgets reference from XML layout tamat RelativeLayout rl = (RelativeLayout) findViewById(R.id.rl); Button btn = (Button) findViewById(R.id.btn); tamat TextView tv = (TextView) findViewById(R.id.tv); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // Initialize a new time picker dialog fragment DialogFragment dFragment = new TimePickerFragment(); // Show the time picker dialog fragment dFragment.show(getFragmentManager(),"Time Picker"); } }); } }
TimePickerFragment.java
package com.cfsuman.me.androidcodesnippets; import android.app.TimePickerDialog; import android.os.Bundle; import android.widget.TextView; import android.app.DialogFragment; import android.app.Dialog; import java.util.Calendar; import android.widget.TimePicker; public class TimePickerFragment extends DialogFragment implements TimePickerDialog.OnTimeSetListener{ @Override public Dialog onCreateDialog(Bundle savedInstanceState){ // Get a Calendar instance tamat Calendar calendar = Calendar.getInstance(); // Get the current hour and minute int hour = calendar.get(Calendar.HOUR_OF_DAY); int minute = calendar.get(Calendar.MINUTE); /* Creates a new time picker dialog. TimePickerDialog(Context context, TimePickerDialog.OnTimeSetListener listener, int hourOfDay, int minute, boolean is24HourView) */ // Create a TimePickerDialog with current time TimePickerDialog tpd = new TimePickerDialog(getActivity(),this,hour,minute,false); // Return the TimePickerDialog return tpd; } public void onTimeSet(TimePicker view, int hourOfDay, int minute){ // Do something with the returned time TextView tv = (TextView) getActivity().findViewById(R.id.tv); tv.setText(hourOfDay + ":" + minute); } }






- How to change TimePickerDialog theme
- How to get AM PM value from TimePickerDialog
- DatePickerDialog example
- How to format DatePickerDialog selected date
- How to use theme in DatePickerDialog
- How to set DatePickerDialog max date and min date
- How to create a custom Title for DatePickerDialog
- How to set DatePickerDialog cancel button click listener
- DatePicker example
- How to create a DatePicker without calendar
Komentar
Posting Komentar