SimpleAlertDialog-for-Android
SimpleAlertDialog-for-Android copied to clipboard
Library for Android DialogFragment.
Does travis_retry really solve the build issues? According to the data in paper [An empirical study of the long duration of continuous integration builds](https://dl.acm.org/doi/10.1007/s10664-019-09695-9), travis_retry can only solve 3% of...
Was wondering if you can add support for AndroidX, custom adapter does not support passing androidx fragment on setTargetFragment()
Been using this lib for a few months for whenever I need one of your dialogs. Thanks so much for great simplicity and strong functionality.
I get this error when I try to show a dialog: 08-03 09:53:21.239: E/dalvikvm(2144): Could not find class 'com.simplealertdialog.SimpleAlertDialogFragment', referenced from method com.simplealertdialog.SimpleAlertDialogFragment$Builder.create Can you help me to fix it?
I want to use [Sourcegraph](https://sourcegraph.com) for SimpleAlertDialog-for-Android code search, browsing, and usage examples. Can an admin enable Sourcegraph for this repository? Just go to https://sourcegraph.com/github.com/ksoichiro/SimpleAlertDialog-for-Android. (It should only take 30...
I'd like to use the device's default dialog style dependant on its Android version. How would we do this?
my fragment implements SimpleAlertDialog.SingleChoiceArrayItemProvider and i call a dialog with this code: ``` new SimpleAlertDialogFragment.Builder() .setTitle(BUTTON_MENU_LABEL.get(v.getId())) .setSingleChoiceCheckedItem(0) .setRequestCode(ENABLE_DISABLE_DIALOG_REQUEST_CODE) .create() .show(getFragmentManager(), "tag"); ``` can i try other approach?