gpt4 book ai didi

java - 如何在fragment_map.xml 中启用位置并启用工具栏?

转载 作者:行者123 更新时间:2023-12-01 11:53:05 29 4
gpt4 key购买 nike

我已经能够在 fragment 内显示 Google map ,但我无法用它做任何其他事情!我只有指向 MapFragment.java 文件的主要 Activity ,该文件又指向 map_fragment.xml 文件。

fragment_map.xml

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:name="com.google.android.gms.maps.MapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
map:cameraBearing="0"
map:cameraTargetLat="29.7189"
map:cameraTargetLng="-95.3392"
map:cameraTilt="0"
map:cameraZoom="13"
map:mapType="normal"
map:uiCompass="true"
map:uiRotateGestures="true"
map:uiScrollGestures="true"
map:uiTiltGestures="true"
map:uiZoomControls="true"
map:uiZoomGestures="true"/>

这是MapFragment.java文件

package info.teammumu.cougarcardapp;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class MapFragment extends Fragment {

public MapFragment(){}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

View rootView = inflater.inflate(R.layout.fragment_map, container, false);

return rootView;
}

}

谁能告诉我哪里出错了?

最佳答案

如果您想启用位置,可以添加 GoogleMap 实例变量:

private GoogleMap googleMap;

然后您需要将 setMyLocationEnabled() 设置为 true:

googleMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
googleMap.setMyLocationEnabled(true);

如果您需要搜索工具栏,则需要在 XML 布局中添加 EditText View 或 AutoCompleteTextView,您可以阅读 this tutorial了解更多详情,以及 this Google Maps official page.

关于java - 如何在fragment_map.xml 中启用位置并启用工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28636636/

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