gpt4 book ai didi

java - 如何在旧版本的 Android 操作系统中使用 API V2 显示 GoogleMap(iam 使用 map fragment )

转载 作者:行者123 更新时间:2023-12-01 13:49:15 26 4
gpt4 key购买 nike

我在一个项目中,我想在 Google map 中显示车辆的位置。我从 Json Web 服务获取车辆的纬度和经度,显示标记和设置位置没有问题。

我的问题是应用程序在 ICE CREAM SAND WITCH 和 Jelly Bean OS 手机上运行良好,当我尝试将应用程序放入 Gingerbread OS 中时,它被强制关闭。

在我的应用程序中,我使用 map fragment 和 API V2。我已将 android-support v 13 jar 文件添加到我的库中。

这是我的 list 代码。

enter code here

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="info.tekguc.umut.googlemapsmapsandroidv2"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="19"
/>

<permission
android:name="com.example.androidmapsv2.permission.MAPS_RECEIVE"
android:protectionLevel="signature"></permission>

<uses-permission
android:name="com.example.androidmapsv2.permission.MAPS_RECEIVE"/>
<uses-permission
android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-permission
android:name="android.permission.INTERNET"/>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"/>

<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>

<application
android:allowBackup="true"
android:icon="@drawable/goo"
android:label="@string/app_name"
android:theme="@style/Translucent" >
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyDXAFrfJnmvVqOJFQ4w5WPajngNoeZpDMI"/>
<activity
android:name="info.tekguc.umut.googlemapsmapsandroidv2.LoginActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>
<activity
android:name="info.tekguc.umut.googlemapsmapsandroidv2.HelpActivity"
android:label="@string/app_name" >

</activity>
<activity
android:name="info.tekguc.umut.googlemapsmapsandroidv2.MainActivity"
android:label="@string/app_name" >

</activity>
</application>

</manifest>

请任何人帮助我如何在旧版本的 Android 操作系统中运行此应用程序..

提前致谢。

最佳答案

首先将com.example.androidmapsv2替换为manifest.xml中的包名

然后

对 <3.0 版本使用 SupportMapFragment,因为 fragment 可从 API 11(3.0) 获取

<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />

您的 Activity 类应该如下所示

public class SupportMapFragmentActivity extends FragmentActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_support_map_fragment);

FragmentManager fmanager = getSupportFragmentManager();
Fragment fragment = fmanager.findFragmentById(R.id.map);
SupportMapFragment supportmapfragment = (SupportMapFragment)fragment;
GoogleMap supportMap = supportmapfragment.getMap();

}

}

关于java - 如何在旧版本的 Android 操作系统中使用 API V2 显示 GoogleMap(iam 使用 map fragment ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20089588/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com