Search in sources :

Example 1 with RadialTimePickerDialogFragment

use of com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment in project android-betterpickers by code-troopers.

the class SampleRadialTimeBasicUsage method onResume.

@Override
public void onResume() {
    // Example of reattaching to the fragment
    super.onResume();
    RadialTimePickerDialogFragment rtpd = (RadialTimePickerDialogFragment) getSupportFragmentManager().findFragmentByTag(FRAG_TAG_TIME_PICKER);
    if (rtpd != null) {
        rtpd.setOnTimeSetListener(this);
    }
}
Also used : RadialTimePickerDialogFragment(com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment)

Example 2 with RadialTimePickerDialogFragment

use of com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment in project android-betterpickers by code-troopers.

the class SampleRadialTimeDismissListener method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.text_and_button_colored);
    mResultTextView = (TextView) findViewById(R.id.text);
    Button button = (Button) findViewById(R.id.button);
    mResultTextView.setText(R.string.no_value);
    button.setText(R.string.radial_time_picker);
    button.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            RadialTimePickerDialogFragment rtpd = new RadialTimePickerDialogFragment().setOnTimeSetListener(SampleRadialTimeDismissListener.this).setOnDismissListener(SampleRadialTimeDismissListener.this);
            rtpd.show(getSupportFragmentManager(), FRAG_TAG_TIME_PICKER);
        }
    });
}
Also used : Button(android.widget.Button) RadialTimePickerDialogFragment(com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment) TextView(android.widget.TextView) View(android.view.View)

Example 3 with RadialTimePickerDialogFragment

use of com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment in project android-betterpickers by code-troopers.

the class SampleRadialTimeDismissListener method onResume.

@Override
public void onResume() {
    // Example of reattaching to the fragment
    super.onResume();
    RadialTimePickerDialogFragment rtpd = (RadialTimePickerDialogFragment) getSupportFragmentManager().findFragmentByTag(FRAG_TAG_TIME_PICKER);
    if (rtpd != null) {
        rtpd.setOnTimeSetListener(this);
    }
}
Also used : RadialTimePickerDialogFragment(com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment)

Example 4 with RadialTimePickerDialogFragment

use of com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment in project android-betterpickers by code-troopers.

the class SampleRadialTimeForced24hFormat method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.text_and_button);
    mResultTextView = (TextView) findViewById(R.id.text);
    Button button = (Button) findViewById(R.id.button);
    mResultTextView.setText(R.string.no_value);
    button.setText(R.string.radial_time_picker);
    button.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            RadialTimePickerDialogFragment rtpd = new RadialTimePickerDialogFragment().setOnTimeSetListener(SampleRadialTimeForced24hFormat.this).setForced24hFormat();
            rtpd.show(getSupportFragmentManager(), FRAG_TAG_TIME_PICKER);
        }
    });
}
Also used : Button(android.widget.Button) RadialTimePickerDialogFragment(com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment) TextView(android.widget.TextView) View(android.view.View)

Example 5 with RadialTimePickerDialogFragment

use of com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment in project android-betterpickers by code-troopers.

the class SampleRadialTimeMinMax method onResume.

@Override
public void onResume() {
    // Example of reattaching to the fragment
    super.onResume();
    RadialTimePickerDialogFragment rtpd = (RadialTimePickerDialogFragment) getSupportFragmentManager().findFragmentByTag(FRAG_TAG_TIME_PICKER);
    if (rtpd != null) {
        rtpd.setOnTimeSetListener(this);
    }
}
Also used : RadialTimePickerDialogFragment(com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment)

Aggregations

RadialTimePickerDialogFragment (com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment)21 View (android.view.View)12 TextView (android.widget.TextView)11 Button (android.widget.Button)9 CalendarDatePickerDialogFragment (com.codetroopers.betterpickers.calendardatepicker.CalendarDatePickerDialogFragment)3 AdapterView (android.widget.AdapterView)2 Calendar (java.util.Calendar)2 Time (ve.com.abicelis.remindy.model.Time)2 DialogInterface (android.content.DialogInterface)1 Nullable (android.support.annotation.Nullable)1 Editable (android.text.Editable)1 TextWatcher (android.text.TextWatcher)1 OnDialogDismissListener (com.codetroopers.betterpickers.OnDialogDismissListener)1 MonthAdapter (com.codetroopers.betterpickers.calendardatepicker.MonthAdapter)1 NumberPickerBuilder (com.codetroopers.betterpickers.numberpicker.NumberPickerBuilder)1 BigDecimal (java.math.BigDecimal)1