/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/src/com/mapswithme/maps/dialog/AlertDialogCallback.java
31 строка
904 B
Dmitry Donskoy
[android] Added sharing options click listeners, modified alert dialog fragment, added images, supported errors processing
12 ноя 2018, 13:47
12 ноя 2018, 13:47
8dff98c
Код
Авторство
О чём код?
package com.mapswithme.maps.dialog; public interface AlertDialogCallback { /** * * @param requestCode the code that the dialog was launched with. * @param which indicates which button was pressed, for details see * {@link android.content.DialogInterface} * * @see android.content.DialogInterface.OnClickListener */ void onAlertDialogPositiveClick(int requestCode, int which); /** * * @param requestCode the code that the dialog was launched with. * @param which indicates which button was pressed, for details see * {@link android.content.DialogInterface} * * @see android.content.DialogInterface.OnClickListener */ void onAlertDialogNegativeClick(int requestCode, int which); /** * Called when the dialog is cancelled. * * @param requestCode the code that the dialog was launched with. */ void onAlertDialogCancel(int requestCode); }