在我的Android應用程序中,我正在使用Google地圖,我想在其中搜索特定地址,例如「Apple Office」。所以我找到了當前的位置,並且需要在當前位置的五公里範圍內搜索「Apple Office」。所以我的地址已經在Google地圖中標記了。我知道如何搜索一個位置Android地圖搜索地址
Uri gmmIntentUri = Uri.parse("geo:37.7749,-122.4194");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
if (mapIntent.resolveActivity(getPackageManager()) != null) {
startActivity(mapIntent);
}
這將搜索舊金山......但我需要搜索文本。那麼我需要做些什麼改變?
檢查了嗎? http://stackoverflow.com/a/21557967/1921263也是這一個.http://stackoverflow.com/a/15872289/1921263 – Shadow
謝謝讓我檢查... – Jocheved