我在单击按钮时使用此方法。我的应用程序尚未在 google play 中启动,因此我尝试在 URI 中使用其他应用程序的包名称。我尝试了许多不同的软件包,但总是收到“找不到活动异常”
public void rateApp(View v) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=mobi.infolife.installer"));
startActivity(intent);
}catch (Exception e) {
Log.i("Exception", "Exception is "+e);
}
}
谁能说发生了什么问题。
提前致谢