搜索位置和地图类型功能不起作用

时间:2016-08-21 22:38:00

标签: android google-maps

我正在尝试使搜索位置功能和地图类型更改功能在我的Android谷歌地图api应用程序上工作,但是当我点击与搜索相关的按钮和地图更改时,应用程序停止运行。 按钮的布局和功能都很好实现,我无法看到错误的位置。有没有人知道缺少什么使这两个功能正常工作?

Manifest file:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.dborahramos.myapplication">

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="AIzaSyBVCTEWR6ifov2W_9itWuUfBvptd8MoA7U" />

        <activity
            android:name=".MapsActivity"
            android:label="@string/title_activity_maps">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

Here is activity maps:

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <EditText
                android:layout_width="130dp"
                android:layout_height="wrap_content"
                android:id="@+id/TFaddress" />
            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Search"
                android:id="@+id/Bsearch"
                android:layout_gravity="right"
                android:onClick="onSearch" />
            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Map Type"
                android:id="@+id/Btype"
                android:layout_gravity="right"
                android:nestedScrollingEnabled="false"
                android:onClick="changeType" />
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <fragment xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools" android:layout_width="320dp"
                android:layout_height="450dp" android:id="@+id/map" tools:context=".MapsActivity"
                android:name="com.google.android.gms.maps.SupportMapFragment" />

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="vertical">
                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="^"
                    android:id="@+id/Bzoomin"
                    android:onClick="onZoom" />

                <Button
                    style="?android:attr/buttonStyleSmall"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="v"
                    android:id="@+id/Bzoomout"
                    android:layout_gravity="center_vertical"
                    android:onClick="onZoom" />

            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

And here are search location and map type functions on maps activity.java.

    public void onSearch(View view)
        {
            EditText location_tf = (EditText)findViewById(R.id.TFaddress);
            String location = location_tf.getText().toString();
            List<Address> addressList = null;
            if(location != null || !location.equals(""))
            {
                Geocoder geocoder = new Geocoder(this);
                try {
                    addressList = geocoder.getFromLocationName(location , 1);


                } catch (IOException e) {
                    e.printStackTrace();
                }

                Address address = addressList.get(0);
                LatLng latLng = new LatLng(address.getLatitude() , address.getLongitude());
                mMap.addMarker(new MarkerOptions().position(latLng).title("Marker"));
                mMap.animateCamera(CameraUpdateFactory.newLatLng(latLng));

            }
        }

    public void changeType(View view)
    {
        if(mMap.getMapType() == GoogleMap.MAP_TYPE_NORMAL)
        {
            mMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
        }
        else
            mMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
    }

1 个答案:

答案 0 :(得分:0)

请尝试检查您的意图请求。

documentation中所述:

  

要以意图启动Google地图,您必须首先创建一个Intent对象,指定其操作,URI和包。

     
      
  • 操作:所有Google地图意图都称为“查看”操作 - ACTION_VIEW
  •   
  • URI :Google地图意图使用指定所需操作的URI编码字符串,以及用于执行操作的一些数据。
  •   
  • 套餐:致电setPackage("com.google.android.apps.maps")将确保Android版Google地图应用处理意图。
  •   

此外,

  

要验证应用是否可用于接收意图,请在resolveActivity()对象上调用Intent。如果结果为非null,则至少有一个应用程序可以处理意图,并且可以安全地调用startActivity()。如果结果为null,则不应使用intent,如果可能,应禁用调用intent的功能。

详细信息和示例可在Google Maps Intents中找到。