2

我尝试使用 Google Maps API v2 (Android)进行以下活动。生成的 API 密钥正在运行,并且 manifest.xml 中的必要权限已相应声明。

这是活动类 MapView.java 的代码,它引用了 xml 布局 Google_Map.xml:

**Map View.java**

public class MapView extends Activity implements LocationListener {

    private GoogleMap googleMap;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_google_map);

        int status= GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());
        if(status!=ConnectionResult.SUCCESS){
            int reqCode=10;
            Dialog diag= GooglePlayServicesUtil.getErrorDialog(status,this,reqCode);
        }
        else{
            buildMap();
        }

    }


    private void buildMap(){
        if(googleMap==null){
            googleMap= ((MapFragment)getFragmentManager().findFragmentById(R.id.map)).getMap();
            googleMap.setMyLocationEnabled(true);
           googleMap.getUiSettings().setMyLocationButtonEnabled(true);

            LocationManager locManager= (LocationManager)getSystemService(LOCATION_SERVICE);
            Criteria criteria= new Criteria();


            String provider= locManager.getBestProvider(criteria,true);
            Location location= locManager.getLastKnownLocation(provider);



            if(googleMap==null){
                Toast.makeText(this,"Unable to initialise map at the moment...",Toast.LENGTH_SHORT).show();
            }
            if(location!=null){
                onLocationChanged(location);
            }
            locManager.requestLocationUpdates(provider,20000,0,this);
        }
    }

    @Override
    public void onLocationChanged(Location loc){
        double lat= loc.getLatitude();
        double lng=loc.getLongitude();

        LatLng latlng= new LatLng(lat,lng);
        googleMap.moveCamera(CameraUpdateFactory.newLatLng(latlng));
        googleMap.animateCamera(CameraUpdateFactory.zoomTo(15));

    }

    @Override
    public void onProviderDisabled(String provider){}

    @Override
    public void onProviderEnabled(String provider){}

    @Override
    public void onStatusChanged(String provider,int status, Bundle extra){}





    @Override
    protected void onResume(){
        super.onResume();
        buildMap();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.google_map, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="com.example.hotel.moeccefamilytime.MapView">

    <fragment
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.MapFragment"/>

</RelativeLayout>

我对 Android 的体验非常基础,这是我第一个结合 Google 地图为用户提供地理功能以获取到特定地点的路线的项目。

这是调试时发生的错误;相机不会放大当前位置。(已在手机上激活位置设置)

以下是已提供但解决方案不适用于我的案例的以下参考资料:

如果你能指出我正确的方向,非常感谢。

4

1 回答 1

0

升级到 API 级别 23(使用客户端 google-play-service_lib 5.0.77)后,我遇到了类似的问题。

在测试设备上将 Google Play 服务更新到最新版本 (6.1.09) 后,该问题得到解决。

因此,由于设备/模拟器上的 Google Play 服务版本与项目中的客户端库 API (google-play-service_lib) 不兼容,这似乎是(特定于设备的问题)。

根据 Google 的文档,当客户端比服务更新时,客户端库 API 应该解决服务 apk 过期问题;(在这种情况下几乎是这样,因为该问题并没有真正影响已发布的 apk,除了 logcat 消息)https://developer.android.com/google/play-services/index.html

我之前尝试通过使用新的 API 密钥和全新安装的 Eclipse/ADT/SDK/google-play-service_lib 来解决此问题,如本文和其他类似问题中所建议的那样,但没有奏效。

于 2014-09-26T12:15:21.033 回答