You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to implement the TimeDurationPickerDialog based on the AlertDialog, but when I click the button, the screen is just faded out without showing the TimeDurationPickerDialog. Here is my example code:
durationPicker.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { TimeDurationPickerDialog.Builder durationDialog = new TimeDurationPickerDialog.Builder(CreateEventActivity.this,R.style.AlertDialog); durationDialog.show(); } });
The text was updated successfully, but these errors were encountered:
I tried to implement the TimeDurationPickerDialog based on the AlertDialog, but when I click the button, the screen is just faded out without showing the TimeDurationPickerDialog. Here is my example code:
durationPicker.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { TimeDurationPickerDialog.Builder durationDialog = new TimeDurationPickerDialog.Builder(CreateEventActivity.this,R.style.AlertDialog); durationDialog.show(); } });
The text was updated successfully, but these errors were encountered: