- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在 onBackPressed 中为我的应用评分
public void onBackPressed() {
new AlertDialog.Builder(ChooseMenu.this)
.setMessage("Rate My Application")
.setCancelable(true)
.setPositiveButton("Rate it",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int id) {
mcontext.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + APP_PNAME)));
}
}).setNegativeButton("Later", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
finish();
}
}).show();
登录目录:
11-23 23:22:09.476: E/AndroidRuntime(594): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=market://details?id=com.moblication5.india.homeeelectriccalculator }
11-23 23:22:09.476: E/AndroidRuntime(594): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1409)
11-23 23:22:09.476: E/AndroidRuntime(594): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1379)
11-23 23:22:09.476: E/AndroidRuntime(594): at android.app.Activity.startActivityForResult(Activity.java:2827)
11-23 23:22:09.476: E/AndroidRuntime(594): at android.app.Activity.startActivity(Activity.java:2933)
11-23 23:22:09.476: E/AndroidRuntime(594): at com.moblication5.india.homeeelectriccalculator.ChooseMenu$6.onClick(ChooseMenu.java:167)
11-23 23:22:09.476: E/AndroidRuntime(594): at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:159)
11-23 23:22:09.476: E/AndroidRuntime(594): at android.os.Handler.dispatchMessage(Handler.java:99)
11-23 23:22:09.476: E/AndroidRuntime(594): at android.os.Looper.loop(Looper.java:123)
11-23 23:22:09.476: E/AndroidRuntime(594): at android.app.ActivityThread.main(ActivityThread.java:3683)
11-23 23:22:09.476: E/AndroidRuntime(594): at java.lang.reflect.Method.invokeNative(Native Method)
11-23 23:22:09.476: E/AndroidRuntime(594): at java.lang.reflect.Method.invoke(Method.java:507)
11-23 23:22:09.476: E/AndroidRuntime(594): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
11-23 23:22:09.476: E/AndroidRuntime(594): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
11-23 23:22:09.476: E/AndroidRuntime(594): at dalvik.system.NativeStart.main(Native Method)
最佳答案
改变
mcontext.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + APP_PNAME)));
到
mcontext.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + APP_PNAME)));
并非所有手机都安装了 Google Play 并且知道如何使用 market://
url。
这里有一些其他的解决方案: "no activity found to handle intent" Not all phones have Android Market installed
关于android - 如何在 OnBackPressed 方法中评价我的应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20165589/
Confusion rose because of this post. The author updated his post, and the result became clear. Concl
假设我有以下语句: bool foo=true; if (foo){ foo=false; } else{ //do
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 年前。 Improve
我有一个表单,其中有很多设置页面。所有的页面都是一样的,所以我宁愿只制作一个表格,然后传入它应该编辑的设置的名称。我该怎么做?假设该表单称为“ConfigForm”,我希望能够用这样的方式调用它: n
简单问题: 我通过 javascript 使用 Youtube gdata 来:评论、回复和喜欢/不喜欢视频。到目前为止一切正常! 但是,我正在尝试允许用户特别喜欢和不喜欢评论(就像在本地 youtu
我在设置 TableView 中有一个单元格,我想将用户直接发送到 Appstore 并打开应用程序页面,以便他们可以发表评论。在 Stackoverflow 中有很多关于此的内容,但在 iOS8 和
快速提问 - 如标题所述。那可能吗?我认为以下端点是我最好的选择:https://developers.google.com/youtube/v3/docs/comments/update ,但找不到
我是一名优秀的程序员,十分优秀!