我刚刚将我的应用程序中的 apptentive 更新为 1.5.0v。当条件为真时,评分提示对话框显示成功,但如果用户单击“稍后提醒我”,评分提示将不再显示。
我显示对话框,下面的代码:
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
if (hasFocus
&& this instanceof SongActivity
&& InternalCache.getCounterApptentiveDialog() >= DOWNLOADS_TO_SHOW_APPTENTIVE) {
boolean ret = Apptentive.engage(this, "init");
if (ret) {
System.out.println("GA-APPtentive");
GAHelper.getInstance().apptentiveRateDialog(getClassName(),
getItemId());
}
}
}
为了再次显示评级提示对话框,我是否需要更多内容?