gpt4 book ai didi

android - 如何在 Android App 中实现 Rate It 功能

转载 作者:IT老高 更新时间:2023-10-28 13:08:08 24 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序。其中一切正常。我的应用程序已准备好启动。但是我需要再实现一项功能。我需要显示一个弹出窗口,其中包含

评分稍后提醒我

在这里,如果任何用户对市场上的应用程序进行评分,则弹出窗口不会消失。我在谷歌上搜索了一个 link .有了这个,我明白这是不可能知道的。所以我需要一个建议。

以前有人遇到过这种情况吗?如果是这样,是否有任何解决方案或替代方案?

最佳答案

在某种程度上,我在不久前实现了这一点。无法知道用户是否对应用进行了评分,以防止评分成为货币(一些开发人员可能会添加“评价此应用并在应用中免费获得某某”之类的选项)。

我编写的类提供了三个按钮,并配置了对话框,使其仅在应用程序启动 n 次后显示(如果用户已经之前用过一点。他们中的大多数人甚至不太可能知道它在第一次运行时会做什么):

public class AppRater {
private final static String APP_TITLE = "App Name";// App Name
private final static String APP_PNAME = "com.example.name";// Package Name

private final static int DAYS_UNTIL_PROMPT = 3;//Min number of days
private final static int LAUNCHES_UNTIL_PROMPT = 3;//Min number of launches

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();
}
}

集成类就像添加一样简单:

AppRater.app_launched(this);

到您的 Activity 。只需要添加到整个应用中的一个Activity即可。

关于android - 如何在 Android App 中实现 Rate It 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14514579/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com