0

我想直接从我的应用打开 Google Street View Android。谁能帮我做这件事?

多亏了 SO,我已经用 Streeview 成功打开了 Maps 应用程序,但这不是我想要的。

我实际上想直接从我的应用程序中打开街景相机,这样我就可以拍一张全景照片。

我的实际任务是开发一个可以拍摄全景图像的相机应用程序,但我找不到任何东西,所以我正在研究可以完成的事情,而不是像纸板这样的相机应用程序。这是我之前提出的问题的链接-App to capture 360​​ View android

请帮忙!

4

2 回答 2

1

PackageManager您可以通过该类获取启动意图:

PackageManager pm = context.getPackageManager();
Intent launchIntent = pm.getLaunchIntentForPackage("com.google.android.street");
context.startActivity(launchIntent);

请注意, getLaunchIntentForPackage 如果找不到包,则返回 null。所以你可能想添加一个空检查:

if (launchIntent != null) {
        context.startActivity(launchIntent);
    } else {
        Toast.makeText(context, "StreetView not Installed", Toast.LENGTH_SHORT).show();
        launchPlayStore(mContext,com.google.android.street);
    }

您可以使用以下代码导航他通过 Play 商店安装 StreetView 应用程序

public void launchPlayStore(Context context, String packageName) {
    Intent intent = null;
    try {
            intent = new Intent(Intent.ACTION_VIEW);
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            intent.setData(Uri.parse("market://details?id=" + packageName));
            context.startActivity(intent);
        } catch (android.content.ActivityNotFoundException anfe) {
            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + packageName)));
        }
    }

您还可以使用以下代码打开街景相机以从我的应用程序中单击全景图像

Intent intent = new Intent();
intent.setComponent(new ComponentName("com.google.android.street", "com.google.android.street.CameraActivity")); 
//provided you should know the camera activity name 
startActivity(intent);

此外,您可能需要添加android:exported="true"manifest您从中调用上述代码的活动中。

于 2018-03-14T11:14:00.660 回答
1
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.google.android.street"));
context.startActivity(intent);

@Rajat 您可以使用上面的代码将用户重定向到 Google Street ViewPlay 商店页面。

于 2018-03-14T11:29:24.003 回答