use of com.codetroopers.betterpickers.radialtimepicker.RadialTimePickerDialogFragment in project android-betterpickers by code-troopers.
the class SampleRadialTimeThemeLight 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);
}
}
Aggregations