android.app.TimePickerDialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.app;
public class TimePickerDialog
extends android.app.AlertDialog
implements android.content.DialogInterface.OnClickListener, android.widget.TimePicker.OnTimeChangedListener
{
public static interface OnTimeSetListener
{
public abstract void onTimeSet(android.widget.TimePicker view, int hourOfDay, int minute);
}
public TimePickerDialog(android.content.Context context, android.app.TimePickerDialog.OnTimeSetListener callBack, int hourOfDay, int minute, boolean is24HourView) { super((android.content.Context)null,false,(android.content.DialogInterface.OnCancelListener)null); throw new RuntimeException("Stub!"); }
public TimePickerDialog(android.content.Context context, int theme, android.app.TimePickerDialog.OnTimeSetListener callBack, int hourOfDay, int minute, boolean is24HourView) { super((android.content.Context)null,false,(android.content.DialogInterface.OnCancelListener)null); throw new RuntimeException("Stub!"); }
public void onClick(android.content.DialogInterface dialog, int which) { throw new RuntimeException("Stub!"); }
public void onTimeChanged(android.widget.TimePicker view, int hourOfDay, int minute) { throw new RuntimeException("Stub!"); }
public void updateTime(int hourOfDay, int minutOfHour) { throw new RuntimeException("Stub!"); }
public android.os.Bundle onSaveInstanceState() { throw new RuntimeException("Stub!"); }
public void onRestoreInstanceState(android.os.Bundle savedInstanceState) { throw new RuntimeException("Stub!"); }
}