gpt4 book ai didi

android - GoogleApiClient : not firing onConnected or onConnectionFailed

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:25:01 25 4
gpt4 key购买 nike

因此,我正在尝试使用 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);
}
}

这是 list 文件

<?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>

我在这里不知所措。通过调试器,我发现上面的函数从未被触发过......

最佳答案

尝试更改您的 buildGoogleApiClient() 方法

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

所有你需要的只是给你的客户端添加监听器

                .addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)

关于android - GoogleApiClient : not firing onConnected or onConnectionFailed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28352284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com