光环助手V3.3 RELEASE(20180701-0730)测试问题汇总

This commit is contained in:
kehaoyuan
2018-07-03 16:24:20 +08:00
parent 03eebf2c07
commit 7d29c0d883
21 changed files with 176 additions and 80 deletions

View File

@ -381,7 +381,7 @@ public class DialogUtils {
* @param cmListener 确认按钮监听
* @param clListener 取消按钮监听
*/
public static void showAlertDialog(Context context, String title, CharSequence message
public static Dialog showAlertDialog(Context context, String title, CharSequence message
, String positive, String negative, final ConfirmListener cmListener, final CancelListener clListener) {
final Dialog dialog = new Dialog(context, R.style.GhAlertDialog);
@ -420,7 +420,7 @@ public class DialogUtils {
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(contentView);
dialog.show();
return dialog;
}
/**