我已经能够显示谷歌地图显示在片段内,但我不能用它做任何其他事情!我只是将主活动指向指向map_fragment.xml文件的MapFragment.java文件。
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;
}
}
谁能告诉我哪里出错了?
答案 0 :(得分:1)
如果要启用位置,可以添加GoogleMap实例变量:
private GoogleMap googleMap;
然后你需要将myMocationLnabled()设置为true:
googleMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
googleMap.setMyLocationEnabled(true);
如果您需要搜索工具栏,则需要在XML布局中添加EditText
视图或AutoCompleteTextView
,有关详细信息,请参阅this tutorial,{{3} }