0

有人可以检查这个应用程序评估代码并告诉我如何在客户请求时将其关闭,但在客户按下相同的返回按钮后不马上回来,至少在满足所有条件之前给他们 5 次尝试,谢谢

public class AppRater {
private final static String APP_TITLE = "name";
private final static String APP_PNAME = "com.code.code";

private final static int DAYS_UNTIL_PROMPT = 1;
private final static int LAUNCHES_UNTIL_PROMPT = 1;

public static void app_launched(Context mContext) {
    SharedPreferences prefs = mContext.getSharedPreferences("apprater", 0);
    if (prefs.getBoolean("dontshowagain", false)) { return ; }

    SharedPreferences.Editor editor = prefs.edit();

    // Increment launch counter
    long launch_count = prefs.getLong("launch_count", 0) + 1;
    editor.putLong("launch_count", launch_count);

    // Get date of first launch
    Long date_firstLaunch = prefs.getLong("date_firstlaunch", 1);
    if (date_firstLaunch == 1) {
        date_firstLaunch = System.currentTimeMillis();
        editor.putLong("date_firstlaunch", date_firstLaunch);
    }

 // Wait at least n days before opening
    if (launch_count >= LAUNCHES_UNTIL_PROMPT) {
        if (System.currentTimeMillis() >= date_firstLaunch +
                (DAYS_UNTIL_PROMPT * 0 * 24 * 60 * 1000)) {
            showRateDialog(mContext, editor);
        }
    }

    editor.commit();
}  

public static void showRateDialog(final Context mContext, final SharedPreferences.Editor editor) {
    final Dialog dialog = new Dialog(mContext);
    dialog.setTitle("Rate " + APP_TITLE);

    LinearLayout ll = new LinearLayout(mContext);
    ll.setOrientation(LinearLayout.VERTICAL);

    TextView tv = new TextView(mContext);
    tv.setText("If you enjoy using " + APP_TITLE + ", please take a moment to rate it. Thanks for your support!");
    tv.setWidth(600);
    tv.setPadding(24, 0, 24, 60);
    ll.addView(tv);

    Button b1 = new Button(mContext);
    b1.setText("Rate " + APP_TITLE);
    b1.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            mContext.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + APP_PNAME)));
            dialog.dismiss();
        }
    });       
    ll.addView(b1);

    Button b2 = new Button(mContext);
    b2.setText("Remind me later");
    b2.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            dialog.dismiss();

        }
    });
    ll.addView(b2);

    Button b3 = new Button(mContext);
    b3.setText("No, thanks");
    b3.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            if (editor != null) {
                editor.putBoolean("dontshowagain", true);
                editor.commit();
            }
            dialog.dismiss();
        }
    });
    ll.addView(b3);

    dialog.setContentView(ll);       
    dialog.show();       
}
}
4

1 回答 1

0

这里有一些奇怪的东西

DAYS_UNTIL_PROMPT * 0 * 24 * 60 * 1000

不应该吗?

DAYS_UNTIL_PROMPT * 24 * 60 * 60 * 1000

您还可以使用 DialogBu​​ilder 按钮选项代替手动创建按钮。这是一个例子:

builder.setPositiveButton(R.string.rate_dialog_ok, new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int id) {
            }
       });
builder.setNegativeButton(R.string.rate_dialog_never, new DialogInterface.OnClickListener() {
           public void onClick(DialogInterface dialog, int id) {

           }
       });
builder.setNeutralButton(R.string.rate_dialog_later, new DialogInterface.OnClickListener() {
       public void onClick(DialogInterface dialog, int id) {

       }
   });
于 2013-04-27T12:05:07.950 回答