gpt4 book ai didi

android - 带有 Google Map V2 和 SupportMapFragment 的空白 map (不,这不是 API key 问题)

转载 作者:行者123 更新时间:2023-11-29 17:56:22 25 4
gpt4 key购买 nike

我知道有很多这样的帖子,但其中大部分都与错误的 API key 有关,但这不是我的情况。

我知道 API key 没问题,如果我更改它,我会收到授权错误。从 API 控制台,如果我转到“报告”,我可以看到我的所有请求。

我按照官方教程看了10遍: https://developers.google.com/maps/documentation/android/start

需要注意的一些奇怪的事情:

第一次显示 fragment 时,网格是空白的。但是,如果我关闭屏幕,然后将其打开(onResum), map 出现但卡住了,我无法移动 map 或使用缩放 Controller )而且,如果从我的 fragment 中,我将 map 放在一个位置的中心, map 就会居中。所以忘记 API key 的东西吧。

这是我的 list :

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.restoaparis"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

<!-- The following two permissions are not required to use
Google Maps Android API v2, but are recommended. -->
<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:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Black.NoTitleBar" >


<activity android:name=".StartActivity"
android:label="@string/app_name"
android:theme="@style/FapiaoTheme" android:screenOrientation="portrait"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>



<meta-data android:name="com.google.android.maps.v2.API_KEY"
android:value="MY_KEY"/>


</application>

这是我的布局:

    <?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"/>

这是我的 fragment (你可以看到我使用的是 Sherlock)

    public class FragmentContact extends SherlockFragment
{

public void onActivityCreated(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
}

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
View view = inflater.inflate(R.layout.plan2 , container, false);

return view;
}

}

当然,我没有从 logcat 收到任何错误和警告。

我刚收到一些关于内存的调试消息,我认为这与我的问题无关。

/dev/pmem: 映射缓冲区基数:0x559da000 大小:9539584 偏移量:7798784 fd:115

我将 google-play-service 添加为我的 eclipse 项目的库

有什么想法吗?请帮助我

我是个好人,我值得拥有

最佳答案

我遇到过类似的问题,我通过添加 onResume() 解决了我的问题。在我的例子中,我使用了 MapView 类。

@Override
public void onResume() {
mapView.onResume();
super.onResume();
}

关于android - 带有 Google Map V2 和 SupportMapFragment 的空白 map (不,这不是 API key 问题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19065564/

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