- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
因此,我正在尝试使用 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/
我为 Google LocationClient API 实现了这个 onConnected 回调: @Override public void onConnected(Bundle arg0) {
我只是想教自己关于Android音频开发的知识,而对于为什么在这里既不调用connectionCallback的onConnected方法也不对onConnectionFailed方法感到困惑。实例化
在我的集线器中,我有这样的东西(伪代码): public override Task OnConnected() { var isLegal = Authorize(); if (!i
我正在尝试覆盖 OnConnected() , OnDisconnected()方法,但我得到: OnConnected()': no suitable method found to overrid
使用“express”我设置了这个中间件: app.use(function(request, response, next) { console.log(request.headers["u
我有以下内容: public override Task OnConnected() { HandleConnectionAsync(Context).Wait();
我正在使用 onConnection Hook 和一些模板助手来执行一些统计操作。但现在,当我是注册用户时,我不想排除这些操作。问题是,我无法在 onConnection Hook 中使用 Meteo
我正在尝试通过 onConnected() 方法获取我的当前位置。但不幸的是 onMapReady() 被提前调用。因此,我的变量 currentLatitude 和 currentLongitude
中心代码 public class TestHub : Hub { public void Message(string message) {
很简单的问题。为什么刚刚连接的客户端没有收到任何消息,而其他所有客户端都收到了广播?发送连接消息的客户端的正确方法是什么? protected override void OnConnected(Ht
我正在尝试创建一个板,用户可以在其中动态添加 block 并将 block 与链接连接起来。 (类似 this 但动态)我正在使用 JointJs 框架,到目前为止一切都按预期工作,但我需要在用户连接
我今天一直在试验 SignalR,它真的很简洁。基本上我想要实现的是: 一旦设备连接上,它就应该向第一个设备发送一条消息。如果连接的设备多于 1 个,我想发送两条消息。一对所有除了最后一个连接的客户端
我有一个可穿戴设备,我正在尝试连接到 GoogleApiClient,但从未调用回调(onConnected、onConnectionSuspended 或 onConnectionFailed)。其
Meteor 客户端有 onConnection 钩子(Hook)吗?这是我的问题:我正在尝试检测 Meteor 何时重新连接到服务器以基于参数以编程方式重新订阅某些数据。 Meteor其实是自动重新
因此,我有自定义位置服务类,我想从中获取最后已知的位置。我有可能在连接 GoogleApiClient 之前调用 getLastKnownLocation(),所以我必须等待它然后调用 getLast
我正在编写一个使用 Google 定位服务的应用程序。据我了解,当我在 LocationClient 对象上调用 connect() 方法时,实现 GooglePlayServicesClient.C
当用户点击广告地理围栏按钮时,我想在用户的当前位置添加地理围栏。但是,在使用融合 api 客户端后,它声明尚未连接。这是我的代码- import android.Manifest; import an
有没有人遇到过这个问题:- 我正在用 ConnectionCallbacks 等初始化 LocationClient...- 然后,我在上面调用“connect()”。- 在我的“onConnecte
所以我有这段代码: package com.entu.bocterapp; import android.content.Context; import android.location.Locati
当我在 Activity 中使用 GoogleApiClient 但将其移至 Service 并且未调用 onConnected 时正在工作。 public class StepsMonitoring
我是一名优秀的程序员,十分优秀!