Android - MapActivity中的搜索工具栏

时间:2016-07-16 12:10:42

标签: android android-layout

我需要Google地图上的搜索工具栏。

我使用MapActivity显示地图。
我的方法是通过创建项目向导,当您创建一个新项目时,您可以选择基本活动,空活动,地图活动。
我选择了MapActivity。 在XML文件中我只有这个:

<resources> 
    <string name="google_maps_key" templateMergeStrategy="preserve"
         translatable="false">AIzaSyCx3iR5fkeWr2LUf6JBHwGLEEkeghL3snk
    </string> 
</resources> 

那么在地图上插入搜索工具栏的方法是什么?

然后如何添加该搜索工具栏。如果我添加布局,则显示错误。

2 个答案:

答案 0 :(得分:0)

我这样做的方法如下:
我会有一个活动,里面有一个包含地图的片段。
在活动中,我将有一个方法,用地图显示片段:

 public void showMap() {

    MapLocationFragment locationFragment = MapLocationFragment.newInstance();
    getSupportFragmentManager().beginTransaction()
            .replace(R.id.fragment_container, locationFragment)
            .addToBackStack(null)
            .commit();
}

activity xml:
<?xml version="1.0" encoding="utf-8"?>
   <RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
   <include
      android:id="@+id/app_bar_include"
      layout="@layout/app_bar_layout_device" />

   <FrameLayout
      android:id="@+id/fragment_container"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_marginTop="?attr/actionBarSize" />
  </RelativeLayout>

现在,在MapLocationFragment中你需要有类似的东西:

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.maps_layout, container, false);
    return view;
}


@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    initializeMapIfNeeded();
}

private void initializeMapIfNeeded() {
    if (googleMap == null) {
        loadMapAsync();
    }
}

private void loadMapAsync() {
    ((SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.location_map)).getMapAsync(getOnMapReadyCallback());
}

public OnMapReadyCallback getOnMapReadyCallback() {
    return new OnMapReadyCallback() {
        @Override
        public void onMapReady(GoogleMap map) {
            googleMap = map;
            if (googleMap == null) {
                return;
            }

            googleMap.setIndoorEnabled(true);
            googleMap.getUiSettings().setMyLocationButtonEnabled(true);
            googleMap.setOnMyLocationButtonClickListener(getMapMpOnMyLocationClickListener());
            googleMap.setLocationSource(getNewLocationSource());
            googleMap.setOnCameraChangeListener(getCameraChangeListener());
            //do other stuff too
        }
    };
}

xml:

<android.support.design.widget.CoordinatorLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

<fragment
        android:id="@+id/location_map"
        class="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:clickable="true"
        android:src="@android:drawable/ic_menu_set_as"
        app:layout_anchorGravity="bottom|right|end"
        android:layout_gravity="bottom|end"/>

</android.support.design.widget.CoordinatorLayout>

有关详细信息,请查看此项目:
Sunshine app

答案 1 :(得分:0)

你可以尝试一下。

public class MapsActivity extends FragementActivity implements OnMapReadyCallback,LocationListener在这里,放置AppCompatActivity而不是FragementActivity。