Skip to content

Instantly share code, notes, and snippets.

View luksha's full-sized avatar

Marko Lukovic luksha

  • Belgrade, Serbia
View GitHub Profile
@alexanza
alexanza / ExpirationDatePickerDialog.java
Last active March 10, 2021 08:11
Expiration date picker for credit card (tested on api 19 and up)
public class ExpirationDatePickerDialog extends DatePickerDialog implements DatePicker.OnDateChangedListener {
public ExpirationDatePickerDialog(Context context, OnDateSetListener callBack, int year, int monthOfYear, int dayOfMonth) {
super(
context,
Build.VERSION.SDK_INT >= 21 ? R.style.MyDialogTheme : 0,
callBack,
year,
monthOfYear,
dayOfMonth