简体   繁体   中英

How to set 12 hours format in time picker with AM & PM?

I want to store a time in only 12 hours format.

the Time Picker is working perfectly but i just want to set AM or PM after the selected time in EditText.

this is my TimePicker theme

Here, my complete code

  starttime.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            // Initialize a new time picker dialog fragment
            DialogFragment dFragment = new TimePickerFragment();

            // Show the time picker dialog fragment
            dFragment.show(getActivity().getFragmentManager(),"Time Picker");

        }
    });

TimePickerDialog.java

   package com.Weal.sachin.omcom;

/**
 * Created by sachin on 2/1/2017.
 */

import android.app.AlertDialog;
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
        final Calendar calendar = Calendar.getInstance();
        // Get the current hour and minute
        int hour = calendar.get(Calendar.HOUR);
        int minute = calendar.get(Calendar.MINUTE);

        /*
            Creates a new time picker dialog with the specified theme.

                TimePickerDialog(Context context, int themeResId,
                    TimePickerDialog.OnTimeSetListener listener,
                    int hourOfDay, int minute, boolean is24HourView)
         */

        // TimePickerDialog Theme : THEME_DEVICE_DEFAULT_LIGHT
        TimePickerDialog tpd = new TimePickerDialog(getActivity(),
                AlertDialog.THEME_DEVICE_DEFAULT_LIGHT,this,hour,minute,false);

        // TimePickerDialog Theme : THEME_DEVICE_DEFAULT_DARK
        TimePickerDialog tpd2 = new TimePickerDialog(getActivity(),
                AlertDialog.THEME_DEVICE_DEFAULT_DARK,this,hour,minute,false);

        // TimePickerDialog Theme : THEME_HOLO_DARK
        TimePickerDialog tpd3 = new TimePickerDialog(getActivity(),
                AlertDialog.THEME_HOLO_DARK,this,hour,minute,false);

        // TimePickerDialog Theme : THEME_HOLO_LIGHT
        TimePickerDialog tpd4 = new TimePickerDialog(getActivity(),
                AlertDialog.THEME_HOLO_LIGHT,this,hour,minute,false);

        // TimePickerDialog Theme : THEME_TRADITIONAL
        TimePickerDialog tpd5 = new TimePickerDialog(getActivity(),
                AlertDialog.THEME_TRADITIONAL,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.start_time);
        tv.setText( hourOfDay + ":" + minute );

    }
}

use this logic to find am pm

public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
    String AM_PM ;
    if(hourOfDay < 12) {
        AM_PM = "AM";
    } else {
        AM_PM = "PM";
    }
}

This answer would be the best Option with few lines of code.

@Override
public void onTimeSet(TimePickerDialog view, int hourOfDay, int minute, int second)
{
    Calendar calendar = Calendar.getInstance();
    calendar.set(Calendar.HOUR_OF_DAY,hourOfDay);
    calendar.set(Calendar.MINUTE,minute);
    calendar.set(Calendar.SECOND,second);

    textViewStartTime.setText(startTimeFormat().format(calendar.getTime()));
}

public SimpleDateFormat startTimeFormat(){
    return this.startTimeFormat = new SimpleDateFormat("hh:00 a");
}

OutPut will be :- 12:00 AM

try it will helps you,

public void onTimeSet(RadialPickerLayout view, int hourOfDay, int minute, int second) {
        String hourString = "";
        if(hourOfDay < 12) {
            hourString = hourOfDay < 10 ? "0"+hourOfDay : ""+hourOfDay;
        } else {
            hourString = (hourOfDay - 12) < 10 ? "0"+(hourOfDay - 12) : ""+(hourOfDay - 12);
        }
        String minuteString = minute < 10 ? "0"+minute : ""+minute;
        String secondString = second < 10 ? "0"+second : ""+second;
        String am_pm = (hourOfDay < 12) ? "am" : "pm";
        String time = hourString+":"+minuteString + " " + am_pm;
        time.setTextColor(getResources().getColor(R.color.dark_blue));
        time.setText(time);
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM