List of usage examples for android.widget TimePicker isShown
public boolean isShown()
From source file:com.finchuk.clock2.dialogs.SystemTimePickerDialog.java
@Override public void onTimeSet(TimePicker view, int hourOfDay, int minute) { // http://stackoverflow.com/q/19452993/5055032 // BUG PRE-LOLLIPOP! This is also called when the dialog is dismissed, so clicking // the 'Done' button will end up calling this twice! if (view.isShown() && mListener != null) { mListener.onTimeSet(view, hourOfDay, minute); }//from ww w . j a va 2 s.c om }