我正在尝试在我的应用程序上显示基本的Google地图,但是即使我有网络连接,它也无法显示白屏,我还检查了MANEFIST一百次,并生成了一个调试密钥,并确保它是真实的
我想如果有人可以引导我做错了什么?
我也没有修改代码,但是在模拟器上有一秒钟,地图消失了,并且消失了,在我的设备上,它一点也不突然,在模拟器上根本不显示。public class MyMapDisplayActivity extends MapActivity {
ojit_pre
MapController MControl;
GeoPoint GeoP;
MapView mapview;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//Map
MapView mapview = (MapView) findViewById(R.id.mapview);
mapview.displayZoomControls(true);
mapview.setBuiltInZoomControls(true);
double lat = 19.7888;
double longi = 52.535;
GeoP = new GeoPoint ((int) (lat *1E6),(int) (longi *1E6));
MControl = mapview.getController();
MControl.animateTo(GeoP);
MControl.setZoom(14);
MyLocationOverlay LocationOverlay = new MyLocationOverlay(this, mapview);
mapview.getOverlays().add(LocationOverlay);
LocationOverlay.enableCompass();
LocationOverlay.enableMyLocation();
}//onCreate
//Map
@Override
protected boolean isRouteDisplayed() {
return false;
}
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/tab2"
android:orientation="vertical"
android:paddingTop="60px"
>
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="0jiwJEbT6if6dhaf0x6Fr_zRLsrz_CYxcLGj6pQ"
/>
</LinearLayout>
最佳答案
您必须创建两个不同的API密钥,一个使用仿真器的调试签名密钥,另一个使用用于为设备的APK签名的密钥。