问题描述: 在Android Studio中使用扩展控件时,运行模拟器时,位置不显示地图。
解决方法:
在模拟器中启用位置模拟功能: a. 打开Android Studio的AVD Manager(AVD Manager位于工具栏上方的工具按钮旁边)。 b. 选择要使用的模拟器,然后点击Edit按钮。 c. 在左侧面板中选择“Emulated Performance”选项卡。 d. 在右侧面板中,找到“Location”部分,选择一个位置或手动输入经纬度。 e. 点击“Finish”保存更改并启动模拟器。
在代码中使用Google地图API来显示地图:
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapView;
public class MainActivity extends AppCompatActivity implements OnMapReadyCallback {
private MapView mapView;
private GoogleMap googleMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mapView = findViewById(R.id.mapView);
mapView.onCreate(savedInstanceState);
mapView.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap map) {
googleMap = map;
googleMap.setMyLocationEnabled(true);
}
@Override
public void onResume() {
super.onResume();
mapView.onResume();
}
@Override
public void onPause() {
super.onPause();
mapView.onPause();
}
@Override
public void onDestroy() {
super.onDestroy();
mapView.onDestroy();
}
@Override
public void onLowMemory() {
super.onLowMemory();
mapView.onLowMemory();
}
}
请将YOUR_API_KEY
替换为您自己的Google地图API密钥。
implementation 'com.google.android.gms:play-services-maps:17.0.1'
allprojects {
repositories {
google()
jcenter()
maven {
url "https://maven.google.com"
}
}
}
注意:确保您的设备或模拟器已连接到互联网,以便能够加载地图数据。