GoogleApiClient:未触发onConnected或onConnectionFailed

9

我正在尝试使用GoogleApiClient获取我的上一个位置。我执行了连接语句,但onConnected没有触发,也没有触发onConnectionFailed。有什么想法吗?

注:我在模拟器上运行此代码,而不是在真实设备上运行。在模拟器上浏览是可以的。

package com.example.jdc.testjdc;

import android.location.Location;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import com.google.android.gms.common.api.*;
import com.google.android.gms.drive.*;
import com.google.android.gms.location.LocationServices;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;



import android.support.v4.app.FragmentActivity;
import android.widget.TextView;


public class MainActivity extends ActionBarActivity implements GoogleApiClient.ConnectionCallbacks,GoogleApiClient.OnConnectionFailedListener {
    private GoogleApiClient mGoogleApiClient;
    private Location mLastLocation;
    private TextView mLatitudeText;
    private TextView mLongitudeText;
    private TextView Toast;

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

    }
   // public GoogleApiClient mGoogleApiClient;
    protected synchronized void buildGoogleApiClient() {
        mGoogleApiClient = new GoogleApiClient.Builder(this)
                .addApi(LocationServices.API)
                .build();
       // mGoogleApiClient.connect();
    }
    @Override
    public void onConnectionFailed(ConnectionResult connectionResult){
        Log.e("Connected failed", String.valueOf(mGoogleApiClient.isConnected()));
    }

    public void onStart(){
        super.onStart();
        Log.e("Connected?", String.valueOf(mGoogleApiClient.isConnected()));
        mGoogleApiClient.connect();
        Log.e("Connected?", String.valueOf(mGoogleApiClient.isConnected()));
    }
    public void onConnected(Bundle connectionHint) {

        mLastLocation = LocationServices.FusedLocationApi.getLastLocation(
                mGoogleApiClient);
        if (mLastLocation != null) {
           mLatitudeText.setText(String.valueOf(mLastLocation.getLatitude()));
           mLongitudeText.setText(String.valueOf(mLastLocation.getLongitude()));
            TextView t=new TextView(this);

            t=(TextView)findViewById(R.id.mLatitude);
            t.setText(String.valueOf(mLastLocation.getLatitude()));
            setContentView(mLatitudeText);
        }
    }



    @Override
    public void onConnectionSuspended(int i) {

    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, 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();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

这是清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.jdc.testjdc" >
    package="com.google.android.gms.location.sample.basiclocationsample" >

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/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>
        <meta-data android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />
    </application>

</manifest>

我有些困惑。通过调试器,我发现上述函数甚至没有被触发...

2个回答

10

尝试更改您的buildGoogleApiClient()方法

        mGoogleApiClient = new GoogleApiClient.Builder(this)
            .addApi(LocationServices.API)
            .addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this)
            .build();

你只需要为你的客户端添加监听器即可。

                .addConnectionCallbacks(this)
                .addOnConnectionFailedListener(this) 

我遇到了同样的问题。请解释一下这个更改发生了什么。 - Pravinraj Venkatachalam
我们为这些操作设置了googleApiClient监听器,包括.addConnectionCallbacks(this)和.addOnConnectionFailedListener(this),因此在连接后,googleApiClient会将回调返回给您的监听器(addConnectionCallbacks、addOnConnectionFailedListener)在您的类中。 - Ognev Zair

7
您需要在buildGoogleApiClient()方法中注册回调函数。

1
@JohanDeCoster 请记得接受答案,StackOverflow不是一个简单的论坛。 - greywolf82

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接