Android - Intent工作不正常

时间:2015-02-03 02:37:41

标签: android android-intent

我创建了一个Intent,可以在Google Play中打开MX Player应用的链接。

builder.setPositiveButton("Get Now",
                            new DialogInterface.OnClickListener() {

                                @Override
                                public void onClick(DialogInterface dialog,
                                        int which) {
                                    Intent mx = new Intent(
                                            android.content.Intent.ACTION_VIEW);
                                    mx.setData(Uri
                                            .parse("https://play.google.com/store/apps/details?id=com.mxtech.videoplayer.ad&hl=en"));
                                    startActivity(mx);
                                }
                            });

问题是当谷歌播放已经在后台打开并且用户按下按钮打开链接时,应用程序强制关闭。 欢迎任何解决方案。

0 个答案:

没有答案