0

バージョン2.3.3のAndroidデバイスでGoogle Earthを表示しようとしています

次のコードを試してみました。「Google Earth をインストールしてください」と尋ねられ、Google Play ストアにリダイレクトされます。ただし、「pname:com.google.earth の結果が見つかりませんでした」というメッセージが表示されます。

uri も "com.google.earth" と "m.google.earth" に変更しましたが、どちらも機能していません。手伝ってくれてありがとう。

これが私のコードです。

package com.example.test;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.SearchManager;
import android.content.ActivityNotFoundException;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.Menu;

import com.google.android.gms.maps.model.LatLng;

public class MainActivity extends Activity {

  @SuppressLint("NewApi")
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    // the new intent we will launch 
    Intent myIntent = new Intent(); 

    // send the intent directly to the google earth activity that can 
    // handle search 
    myIntent.setClassName("com.google.earth", 
    "com.google.earth.EarthActivity"); 

    // we are doing a search query 
    myIntent.setAction(Intent.ACTION_SEARCH); 

    // change this address to any address you want to fly to 
    myIntent.putExtra(SearchManager.QUERY, "2900 Frenchmen Street, New Orleans, LA"); 

        // always trap for ActivityNotFound in case Google earth is not on the device 

        try { 
          // launch google earth and fly to location 
          this.startActivity(myIntent); 
        } 
    catch (ActivityNotFoundException e) { 
      showGoogleEarthDialog(); 
    } 
}

 private void showGoogleEarthDialog() { 

    AlertDialog.Builder downloadDialog = new AlertDialog.Builder(this); 
    downloadDialog.setTitle("Install Google Earth?"); 
    downloadDialog.setMessage("This application requires Google Earth. Would you like to install it?"); 
    downloadDialog.setPositiveButton("Yes", new 
        DialogInterface.OnClickListener() { 
      public void onClick(DialogInterface dialogInterface, int i) { 
        Uri uri = Uri.parse("market://search?q=pname:com.google.earth"); //pname:
        Intent intent = new Intent(Intent.ACTION_VIEW, uri); 
        MainActivity.this.startActivity(intent); 
      } 
    }); 
    downloadDialog.setNegativeButton("No", new 
        DialogInterface.OnClickListener() { 
      public void onClick(DialogInterface dialogInterface, int i) {} 
    }); 
    downloadDialog.show(); 
  } 
  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
  }

}
4

1 に答える 1