4
在我的主要活動中,我有以下簡單的方法。在仿真器中找不到處理地理意圖的活動
private void showMap(String name) {
String thePlace = name.replaceAll(" ", "+");
Intent intent= new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=" + thePlace+ ""));
startActivity(intent);
}
在我的清單
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET" />
但是當我運行在模擬器的應用程序,它墜毀並根據日誌,它說
No activity found to handle the intent
有什麼我做錯了?