1

可能重复:
要求用户在 Android 电子市场上评分/评论/评论

我已经开发并在 Android 市场上放置了一个应用程序。在其更新版本中,我想向用户添加评价应用程序的功能。

我希望应用程序具有以下功能:

  • 当用户尝试退出应用程序时,将显示一个弹出窗口,要求对应用程序进行评分。此弹出窗口有三个选项:是、否和稍后
  • 选择任何选项后,用户将退出应用程序。
  • 如果用户选择Yes然后他将重定向到安卓市场来评价这个应用程序。如果用户对应用程序进行了一次评分,那么他将永远不会再显示该弹出窗口。
  • 如果用户选择No,则用户也不会再次弹出此弹出窗口。
  • 如果用户选择“稍后”,则下次将显示弹出窗口

我的Yes选项有问题。如何管理,那个用户已经在`android market上给出了一次费率。

是否有任何 API 可以返回有关用户评分的信息?

4

2 回答 2

0
using code on buttonclick listener   
 String App_Name="";
 bt.setOnClickListener(new OnClickListener() {

            public void onClick(View v) {

    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + APP_PNAME)));
                      }});
于 2012-09-10T12:08:57.900 回答
0

我认为您真正想要的是:

要对其进行测试并调整对话框的外观,您可以AppRater.showRateDialog(this, null)从您的活动中调用。正常使用是在AppRater.app_launched(this)每次调用您的活动时调用(例如,从 onCreate 方法中)。如果满足所有条件,则会出现对话框。

顺便说一句,没有任何 API 可以为您提供用户对其评分的信息。不用担心,他会使用不再显示此选项...

另一件事:你应该更喜欢在开始时显示这个......当用户想要离开时,他大多不想评价你的应用程序!

public class AppRater {
    private final static String APP_TITLE = "YOUR-APP-NAME";
    private final static String APP_PNAME = "YOUR-PACKAGE-NAME";

    private final static int DAYS_UNTIL_PROMPT = 3;
    private final static int LAUNCHES_UNTIL_PROMPT = 7;

    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", 0);
        if (date_firstLaunch == 0) {
            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 * 24 * 60 * 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(240);
        tv.setPadding(4, 0, 4, 10);
        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();        
    }
}

来源:链接

于 2012-09-10T14:31:50.630 回答