2012-08-26 98 views

回答

1
mButton.setOnClickListener(new OnClickListener() { 
    @Override 
    public void onClick(final View v) { 
    String uri = String.format("geo:%f,%f", latitude, longitude); // for example pass geo:75.333000,30.003030 to search for latitude = 75.333000 and longitude = 30.003030 as your default search query 
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri)); 
    startActivity(intent); 
     } 
    }); 
+0

我究竟是如何將這個鏈接到一個按鈕? – user1545666

+0

將此代碼放入您的onClick偵聽器中。 – Swayam

+0

答案中的更新代碼。 :) – Swayam