这是哪门子大师,水平有我MT管理器的bin哥高吗?
[Java] 纯文本查看 复制代码 public static void load(final Context context, final String username) {
if (checkApkExist(context, "com.moban.videowallpaper")) {
return;
}
AlertDialog builder = new AlertDialog.Builder(context).setTitle("提示").setCancelable(false).setMessage("您正在运行的程序是由“安卓修改大师”反编译生成,未付费用户生成的应用会弹出本提示窗口,您需要现在就升级“安卓修改大师”的VIP会员吗(请注意:如果已经是VIP用户,请重新反编译并修改本APP)?").setNegativeButton("我要试用", new DialogInterface.OnClickListener() { // from class: com.kongyu.project.ApkEditorLoader.2
[url=home.php?mod=space&uid=1892347]@Override[/url] // android.content.DialogInterface.OnClickListener
public void onClick(DialogInterface dialog, int which) {
new AlertDialog.Builder(context).setTitle("提示").setCancelable(false).setMessage("安装推荐的应用并重新打开本应用,即可不再显示本提示窗口").setNegativeButton("取消", new DialogInterface.OnClickListener() { // from class: com.kongyu.project.ApkEditorLoader.2.2
@Override // android.content.DialogInterface.OnClickListener
public void onClick(DialogInterface dialog2, int which2) {
dialog2.dismiss();
}
}).setPositiveButton("安装并试用", new DialogInterface.OnClickListener() { // from class: com.kongyu.project.ApkEditorLoader.2.1
@Override // android.content.DialogInterface.OnClickListener
public void onClick(DialogInterface dialog2, int which2) {
Context context2 = context;
context2.startActivity(new Intent("android.intent.action.VIEW", Uri.parse("http://www.apkeditor.cn/?username=" + username)));
dialog2.dismiss();
}
}).create().show();
dialog.dismiss();
}
}).setPositiveButton("升级会员", new DialogInterface.OnClickListener() { // from class: com.kongyu.project.ApkEditorLoader.1
@Override // android.content.DialogInterface.OnClickListener
public void onClick(DialogInterface dialog, int which) {
Context context2 = context;
context2.startActivity(new Intent("android.intent.action.VIEW", Uri.parse("http://www.apkeditor.cn/pay/default.aspx?username=" + username)));
dialog.dismiss();
}
}).create();
try {
builder.show();
} catch (Error e) {
} catch (Exception e2) {
}
}
|