【问题标题】:Cannot get the getLastLocation method to work in Android Studio无法让 getLastLocation 方法在 Android Studio 中工作
【发布时间】:2015-07-26 17:59:08
【问题描述】:

我正在使用 Android 中的定位服务进行测试,并且我严格按照开发人员的说明(此处为:Google dev. link)执行此操作,但运气不佳。在我的布局中,我只有两个 TextView 来显示 Location 对象的纬度和经度。我应该提到我正在使用启用 GPS 的 Genymotion VM。

这是我在 MainActivity 中的代码:

package criminalintent.android.bignerdranch.com.testgetlocation;

import android.app.Activity;
import android.location.Location;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.drive.Drive;
import com.google.android.gms.location.LocationServices;

public class MainActivity extends Activity implements
    GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener {
GoogleApiClient mGoogleApiClient;
private TextView mLatitudeText;
private TextView mLongitudeText;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mLatitudeText=  (TextView) findViewById(R.id.latitudeTextView);
    mLongitudeText = (TextView) findViewById(R.id.longitudeTextView);

    buildGoogleApiClient();


}

protected synchronized void buildGoogleApiClient() {
    Toast.makeText(this,"buildGoogleApiClient",Toast.LENGTH_SHORT).show();
     mGoogleApiClient = new GoogleApiClient.Builder(this)
            .addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this)
            .addApi(LocationServices.API)
            .build();
}

@Override
public void onConnected(Bundle bundle) {
    Toast.makeText(this,"onConnected",Toast.LENGTH_SHORT).show();
   Location mLastLocation = LocationServices.FusedLocationApi.getLastLocation(
            mGoogleApiClient);
    if (mLastLocation != null) {
        mLatitudeText.setText(String.valueOf(mLastLocation.getLatitude()));
        mLongitudeText.setText(String.valueOf(mLastLocation.getLongitude()));
    }
}

@Override
public void onConnectionSuspended(int i) {
    Toast.makeText(this,"onConnectionSuspended",Toast.LENGTH_SHORT).show();
}

@Override
public void onConnectionFailed(ConnectionResult connectionResult) {
    Toast.makeText(this,"onConnectionFailed",Toast.LENGTH_SHORT).show();
}
}

我在Manifest文件中添加了获取定位服务的权限:

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

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

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

这是我的模块 build.gradle 文件代码:

apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "criminalintent.android.bignerdranch.com.testgetlocation"
    minSdkVersion 14
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'),   'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.google.android.gms:play-services:7.3.0'
}

【问题讨论】:

  • Android Studio 还是 Eclipse?
  • 你能添加你的 build.gradle 文件吗?
  • 是的,请稍等片刻。 :)
  • 那么问题出在哪里?文档说它可能是空的..
  • 我正在使用启用 GPS 的 Genymotion。它不应该为空 + 我已经在物理设备上测试过它,并且再次......

标签: android service location


【解决方案1】:

您错过了连接呼叫。

在调用buildGoogleApiClient() 后,在onCreate() 中添加对connect() 的调用:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mLatitudeText=  (TextView) findViewById(R.id.latitudeTextView);
    mLongitudeText = (TextView) findViewById(R.id.longitudeTextView);

    buildGoogleApiClient();

    mGoogleApiClient.connect(); //add this here

}

请注意,即使使用此修复程序,对 getLastLocation() 的调用也很可能会为您提供空位置。

如果您的位置为空,我建议您注册一个侦听器,请查看this answer 以获取有关如何执行此操作的信息。

编辑:由于我已经运行了您的代码,因此我继续添加了位置侦听器。请注意,在此代码中,我在第一个 onLocationChanged() 回调发生时立即添加了对 removeLocationUpdates() 的调用,作为示例:

import android.os.Bundle;
import android.app.Activity;
import android.location.Location;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationServices;
import com.google.android.gms.location.LocationListener;

public class MainActivity extends Activity implements
        GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, LocationListener {

    LocationRequest mLocationRequest;
    GoogleApiClient mGoogleApiClient;
    private TextView mLatitudeText;
    private TextView mLongitudeText;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mLatitudeText=  (TextView) findViewById(R.id.latitudeTextView);
        mLongitudeText = (TextView) findViewById(R.id.longitudeTextView);

        buildGoogleApiClient();

        mGoogleApiClient.connect(); //add this here

    }

    protected synchronized void buildGoogleApiClient() {
        Toast.makeText(this,"buildGoogleApiClient",Toast.LENGTH_SHORT).show();
        mGoogleApiClient = new GoogleApiClient.Builder(this)
                .addConnectionCallbacks(this)
                .addOnConnectionFailedListener(this)
                .addApi(LocationServices.API)
                .build();
    }

    @Override
    public void onConnected(Bundle bundle) {
        Toast.makeText(this,"onConnected",Toast.LENGTH_SHORT).show();
        Location mLastLocation = LocationServices.FusedLocationApi.getLastLocation(
                mGoogleApiClient);
        if (mLastLocation != null) {
            mLatitudeText.setText(String.valueOf(mLastLocation.getLatitude()));
            mLongitudeText.setText(String.valueOf(mLastLocation.getLongitude()));
        }

        mLocationRequest = new LocationRequest();
        mLocationRequest.setInterval(10000); //10 seconds
        mLocationRequest.setFastestInterval(5000); //5 seconds
        mLocationRequest.setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY);
        mLocationRequest.setSmallestDisplacement(1); //1 meter

        LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this);



    }

    @Override
    public void onConnectionSuspended(int i) {
        Toast.makeText(this,"onConnectionSuspended",Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onConnectionFailed(ConnectionResult connectionResult) {
        Toast.makeText(this,"onConnectionFailed",Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onLocationChanged(Location location) {

        Toast.makeText(this,"Location Changed",Toast.LENGTH_SHORT).show();

        mLatitudeText.setText(String.valueOf(location.getLatitude()));
        mLongitudeText.setText(String.valueOf(location.getLongitude()));

        //If you only need one location, unregister the listener
        LocationServices.FusedLocationApi.removeLocationUpdates(mGoogleApiClient, this);

    }

}

还请注意,您应该将此添加到应用程序标记内的 AndroidManifest.xml 中:

    <meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />

【讨论】:

  • 谢谢。这在我的 OPO 上有效,但在启用 GPS 的 Genymotion VM 上无效,不知道为什么。再次感谢! :)
  • @GeorgiKoemdzhiev 当然,没问题!还有一点需要注意,您应该将其添加到应用程序标签内的 AndroidManifest.xml 中:&lt;meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /&gt;
  • 让我猜猜。这会让我的谷歌服务保持更新吗? :)
猜你喜欢
  • 2013-09-17
  • 1970-01-01
  • 1970-01-01
  • 2022-11-17
  • 1970-01-01
  • 2019-12-30
  • 2022-09-23
  • 2020-12-30
  • 1970-01-01
相关资源
最近更新 更多