是否有最佳实践方法来提示 Android 用户对您的应用程序进行评分?考虑到他们可以从 Amazon.com 或 Google Marketplace 获得它,以允许用户投票的方式处理此问题的最佳途径是什么?
9 回答
对于 Google Marketplace,请查看这个简洁的代码片段。我相信您可以修改它以替代或补充启动 Amazon Appstore。
编辑:看起来网站改变了他们的 URL 结构,所以我已经更新了上面的链接,所以它现在可以工作了。这是Wayback Machine的旧副本,以防他们的网站再次出现故障。我将粘贴下面帖子的主要内容作为附加备份,但您仍可能希望访问链接以阅读评论并获取任何更新。
此代码提示参与的用户在 Android 市场中对您的应用进行评分(受 iOS Appirater 启发)。在评级对话框出现之前,它需要应用程序的一定数量的启动和安装天数。
调整APP_TITLE
并APP_PNAME
满足您的需求。您还应该调整DAYS_UNTIL_PROMPT
和LAUNCHES_UNTIL_PROMPT
.
要对其进行测试并调整对话框外观,您可以AppRater.showRateDialog(this, null)
从 Activity 调用。正常使用是在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();
}
}
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);
}
您也可以使用 RateMeMaybe:https ://github.com/Kopfgeldjaeger/RateMeMaybe
它为您提供了相当多的配置选项(最少天数/启动到第一个提示,最少天数/启动到每个下一个提示,如果用户选择“不是现在”,对话框标题,消息等)。它也很容易使用。
README 中的示例用法:
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 调用可以用字符串替换
更改代码以打开亚马逊市场应该很容易
也许设置一个 Facebook 链接到带有“喜欢”选项的粉丝页面等等?主菜单上带有小标签的图标就足够了,而且不会像弹出提醒那样烦人,如果有的话。
只需在“对此应用程序排名”按钮下编写这两行代码,它就会将您带到您上传应用程序的 Google 商店。
String myUrl ="https://play.google.com/store/apps/details?id=smartsilencer";
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(myUrl)));
我认为,将用户重定向到您的应用程序的网页是这里唯一的解决方案。
Play 商店政策规定,如果我们通知用户在我们的应用中执行某些操作,那么如果用户不想执行该操作,我们还必须让用户取消该操作。因此,如果我们要求用户更新应用程序或在 Play 商店中使用 Yes(Now) 对应用程序进行评分,那么我们还必须提供 No(Later, Not Now) 等选项。
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/
对于简单的解决方案,试试这个库 https://github.com/kobakei/Android-RateThisApp
您还可以更改其配置,例如标准以显示对话框、标题、消息
无论如何:例如按钮
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData
(Uri.parse("market://details?id="+context.getPackageName()));
startActivity(intent);