如何使用来自gapps的任何应用程序链接重定向到9apps apk

时间:2018-03-20 06:25:18

标签: android android-intent

我想使用this link直接重定向到9apps然后9apps显示applcation,这是从上面链接获取可能像

Intent i = new Intent(Intent.ACTION_VIEW);
            i.setPackage("com.mobile.indiaapp");
            i.setData(Uri.parse("https://mx-player.en.9apps.com/");
            context.startActivity(i
            );

请帮帮我

2 个答案:

答案 0 :(得分:0)

如果您从活动中调用

 Intent i = new Intent(Intent.ACTION_VIEW,Uri.parse("https://mx-player.en.9apps.com/"));
                    startActivity(i);

以及其他

Intent i = new Intent(Intent.ACTION_VIEW,Uri.parse("https://mx-player.en.9apps.com/"));
                    context.startActivity(i);

答案 1 :(得分:0)

PackageManager pm = context.getPackageManager();
Intent launchIntent = pm.getLaunchIntentForPackage("com.example.package");
context.startActivity(launchIntent);