Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello I have been trying to write an android app that uses a time picker and i'm having trouble getting it to work in android 2.3 . I belive that i have used the supportfragmentmanager properly but for some reason when ever i run it the program crashes. I have looked at the android api and tutorials and have found nothing useful can anyone help me code is included

package com.example.timepickertest;

import java.util.Calendar;

import android.os.Bundle; 
import android.app.Dialog;
import android.view.Menu;
import android.view.View;
import android.widget.TimePicker;
import android.app.Activity;
import android.app.TimePickerDialog;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.FragmentActivity;
import android.text.AndroidCharacter;
import android.text.format.DateFormat;

public class TimePickerTest extends FragmentActivity {

    @Override
        public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_time_picker_test);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_time_picker_test, menu);
        return true;

    }

    public static class TimePickerFragment extends DialogFragment implements TimePickerDialog.OnTimeSetListener {

        @Override
        public Dialog onCreateDialog(Bundle savedInstanceState) {
        // Use the current time as the default values for the picker
        final Calendar c = Calendar.getInstance();
        int hour = c.get(Calendar.HOUR_OF_DAY);
        int minute = c.get(Calendar.MINUTE);

        // Create a new instance of TimePickerDialog and return it
        return new TimePickerDialog(getActivity(), this, hour, minute, DateFormat.is24HourFormat(getActivity()));
    }

    public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
        // Do something with the time chosen by the user
    }

    public void showTimePickerDialog(View v) {
        DialogFragment newFragment = new TimePickerFragment();
        newFragment.show(getSupportFragmentManager(), "timePicker");

    }
}


}

also how do I access the information gathered from the time picker

share|improve this question
2  
Add the stacktrace to find the problem. – sabadow Nov 7 '12 at 20:05
1  
If your program crashes study the logcat output and then if still in trouble add it here – Alex Nov 7 '12 at 20:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.