是否有最佳做法可以提示Android用户为您的应用评分?考虑到他们可以从Amazon.com或Google Marketplace获得它,以允许用户投票的方式处理此问题的最佳途径是什么?
答案 0 :(得分:79)
对于Google Marketplace,请查看这个整洁的code snippet。我确信您可以修改它以启动Amazon Appstore,或者除了。
之外编辑:看起来该网站更改了其网址结构,因此我更新了上面的链接,以便现在正常运行。以下是Wayback Machine的旧副本,以防其网站再次出现故障。我将粘贴下面帖子的主要内容作为附加备份,但您仍然可以访问该链接以阅读评论并获取任何更新。
此代码会提示用户在Android市场中为您的应用评分(受iOS Appirater启发)。在评级对话框出现之前,它需要一定数量的应用程序启动和自安装以来的几天。
根据您的需要调整APP_TITLE
和APP_PNAME
。您还应该调整DAYS_UNTIL_PROMPT
和LAUNCHES_UNTIL_PROMPT
。
要测试它并调整对话框外观,您可以从“活动”中调用AppRater.showRateDialog(this, null)
。正常使用是每次调用您的活动时调用AppRater.app_launched(this)
(例如,从onCreate方法中)。如果满足所有条件,则会出现对话框。
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 dialog
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();
}
}
答案 1 :(得分:38)
Uri uri = Uri.parse("market://details?id=" + context.getPackageName());
Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
try {
context.startActivity(goToMarket);
} catch (ActivityNotFoundException e) {
UtilityClass.showAlertDialog(context, ERROR, "Couldn't launch the Google Playstore app", null, 0);
}
答案 2 :(得分:8)
您也可以使用RateMeMaybe:https://github.com/Kopfgeldjaeger/RateMeMaybe
它为您提供了相当多的配置选项(如果用户选择“不是现在”,对话框标题,消息等,则在第一次提示之前的最短天数/启动时间,最小天数/启动直到每个下一个提示“)。它也很容易使用。
自述文件的用法示例:
RateMeMaybe rmm = new RateMeMaybe(this);
rmm.setPromptMinimums(10, 14, 10, 30);
rmm.setDialogMessage("You really seem to like this app, "
+"since you have already used it %totalLaunchCount% times! "
+"It would be great if you took a moment to rate it.");
rmm.setDialogTitle("Rate this app");
rmm.setPositiveBtn("Yeeha!");
rmm.run();
编辑:如果您只想手动显示提示,您也可以只使用RateMeMaybeFragment
if (mActivity.getSupportFragmentManager().findFragmentByTag(
"rmmFragment") != null) {
// the dialog is already shown to the user
return;
}
RateMeMaybeFragment frag = new RateMeMaybeFragment();
frag.setData(getIcon(), getDialogTitle(), getDialogMessage(),
getPositiveBtn(), getNeutralBtn(), getNegativeBtn(), this);
frag.show(mActivity.getSupportFragmentManager(), "rmmFragment");
如果你不想使用一个,那么getIcon()可以替换为0;其余的getX调用可以用字符串
替换更改代码以打开亚马逊商城应该很容易
答案 3 :(得分:3)
也许设置Facebook链接到粉丝页面的“喜欢”选项等等?在主菜单上带有小标签的图标非常充足,并且不像在弹出提醒中那样令人讨厌。
答案 4 :(得分:3)
只需在“排名此应用”按钮下面写下这两行代码,它就会转到您上传应用的Google商店。
String myUrl ="https://play.google.com/store/apps/details?id=smartsilencer";
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(myUrl)));
答案 5 :(得分:0)
我认为,将用户重定向到应用的网页是唯一的解决方案。
答案 6 :(得分:0)
Play商店政策说如果我们通知用户在我们的应用中执行某些操作,那么如果用户不想执行该操作,我们还必须让用户取消操作。因此,如果我们要求用户更新应用程序或使用是(现在)对Play商店中的应用程序进行评级,那么我们还必须为No(稍后,不现在)等提供选项。
rateButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
r.showDefaultDialog();
}
});
其中r是一个包含showDefaultDialog方法的类
public void showDefaultDialog() {
//Log.d(TAG, "Create default dialog.");
String title = "Enjoying Live Share Tips?";
String loveit = "Love it";
String likeit = "Like it";
String hateit = "Hate it";
new AlertDialog.Builder(hostActivity)
.setTitle(title)
.setIcon(R.drawable.ic_launcher)
//.setMessage(message)
.setPositiveButton(hateit, this)
.setNegativeButton(loveit, this)
.setNeutralButton(likeit, this)
.setOnCancelListener(this)
.setCancelable(true)
.create().show();
}
下载完整示例[androidAone]:http://androidaone.com/11-2014/notify-users-rate-app-playstore/
答案 7 :(得分:0)
对于简单的解决方案尝试此库 https://github.com/kobakei/Android-RateThisApp
您还可以像标准一样更改其配置,以显示对话框,标题,消息
答案 8 :(得分:-1)
无论如何:例如按钮
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData
(Uri.parse("market://details?id="+context.getPackageName()));
startActivity(intent);