- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过fused location api 检索位置。我已尝试构建一个辅助类,以便我可以在我的整个应用程序中使用它。
代码:
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks;
import com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener;
import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationServices;
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;
public class GPSTracker2 implements ConnectionCallbacks,
OnConnectionFailedListener,LocationListener {
// LogCat tag
private static final String TAG = GPSTracker2.class.getSimpleName();
private final static int PLAY_SERVICES_RESOLUTION_REQUEST = 1000;
private Location mLastLocation;
// Google client to interact with Google API
private GoogleApiClient mGoogleApiClient;
// boolean flag to toggle periodic location updates
private boolean mRequestingLocationUpdates = false;
private LocationRequest mLocationRequest;
// Location updates intervals in sec
private static int UPDATE_INTERVAL = 1000; // 10 sec
private static int FATEST_INTERVAL = 500; // 5 sec
private static int DISPLACEMENT = 10; // 10 meters
Context context;
// flag for GPS status
boolean canGetLocation = true;
double latitude,longitude;
public GPSTracker2(Context context) {
// TODO Auto-generated constructor stub
// First we need to check availability of play services
this.context=context;
createLocationRequest();
if (checkPlayServices()) {
// Building the GoogleApi client
buildGoogleApiClient();
}
if (mGoogleApiClient != null) {
mGoogleApiClient.connect();
}
// Show location button click listener
}
/**
* Method to display the location on UI
* */
/*private void displayLocation() {
mLastLocation = LocationServices.FusedLocationApi
.getLastLocation(mGoogleApiClient);
if (mLastLocation != null) {
double latitude = mLastLocation.getLatitude();
double longitude = mLastLocation.getLongitude();
} else {
}
}*/
/**
* Method to display the location on UI
* */
private void displayLocation() {
mLastLocation = LocationServices.FusedLocationApi
.getLastLocation(mGoogleApiClient);
if (mLastLocation != null) {
double latitude = mLastLocation.getLatitude();
double longitude = mLastLocation.getLongitude();
Toast.makeText(context,latitude+" "+longitude,Toast.LENGTH_LONG).show();
} else {
}
}
/**
* Function to get latitude
* */
public double getLatitude(){
mLastLocation = LocationServices.FusedLocationApi
.getLastLocation(mGoogleApiClient);
if (mLastLocation != null) {
this.canGetLocation = true;
double latitude = mLastLocation.getLatitude();
System.out.println("In GetLat==>"+latitude);
return latitude;
}else{
System.out.println("last known null");
return 0.0;
}
}
/**
* Function to get longitude
* */
public double getLongitude(){
mLastLocation = LocationServices.FusedLocationApi
.getLastLocation(mGoogleApiClient);
if (mLastLocation != null) {
this.canGetLocation = true;
longitude = mLastLocation.getLongitude();
System.out.println("In Getlong==>"+longitude);
}
return longitude;
}
/**
* Creating google api client object
* */
protected synchronized void buildGoogleApiClient() {
mGoogleApiClient = new GoogleApiClient.Builder(context)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API).build();
}
/**
* Method to verify google play services on the device
* */
private boolean checkPlayServices() {
int resultCode = GooglePlayServicesUtil
.isGooglePlayServicesAvailable(context);
if (resultCode != ConnectionResult.SUCCESS) {
if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
GooglePlayServicesUtil.getErrorDialog(resultCode, (Activity) context,
PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Toast.makeText(context,
"context device is not supported.", Toast.LENGTH_LONG)
.show();
//finish();
}
return false;
}
return true;
}
/**
* Creating location request object
* */
protected void createLocationRequest() {
mLocationRequest = new LocationRequest();
mLocationRequest.setInterval(UPDATE_INTERVAL);
mLocationRequest.setFastestInterval(FATEST_INTERVAL);
mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
mLocationRequest.setSmallestDisplacement(DISPLACEMENT);
}
/**
* Starting the location updates
* */
protected void startLocationUpdates() {
LocationServices.FusedLocationApi.requestLocationUpdates(
mGoogleApiClient, mLocationRequest, this);
}
/**
* Stopping location updates
*/
protected void stopLocationUpdates() {
LocationServices.FusedLocationApi.removeLocationUpdates(
mGoogleApiClient, this);
}
/**
* Google api callback methods
*/
@Override
public void onConnectionFailed(ConnectionResult result) {
Log.i(TAG, "Connection failed: ConnectionResult.getErrorCode() = "
+ result.getErrorCode());
}
@Override
public void onConnected(Bundle arg0) {
// Once connected with google api, get the location
// displayLocation();
//getLatitude();
//getLongitude();
displayLocation();
System.out.println("On Connected");
if (mRequestingLocationUpdates) {
startLocationUpdates();
}
}
@Override
public void onConnectionSuspended(int arg0) {
mGoogleApiClient.connect();
}
@Override
public void onLocationChanged(Location location) {
// Assign the new location
mLastLocation = location;
Toast.makeText(context, "Location changed!",
Toast.LENGTH_SHORT).show();
displayLocation();
// Displaying the new location on UI
// displayLocation();
// getLatitude();
// getLongitude();
}
/**
* Function to check GPS/wifi enabled
* @return boolean
* */
public boolean canGetLocation() {
return this.canGetLocation;
}
}
我正在尝试将其用作:
CallingClass.java
GPSTracker2 gps=new GPSTracker2(SettingsActivity.this);
if(gps.canGetLocation())
{
System.out.println("lat-->"+gps.getLatitude()+" long===>"+gps.getLongitude());
}else{
showSettingsAlert(true);
}
问题:方法 gps.getLatitude() 和 gps.getLongitude() 返回 0.0。但是在 toast 消息中(在 displayLocation( ); 方法) 经纬度来得恰到好处。
因此我调试了我的应用程序,发现在调用 GpsTracker2 类的构造函数后,控制权返回到调用类并且完成调用类的 onCreate 后,GoogleApiclient 正在连接。因此它无法在调用类的 onCreate() 中获取纬度和经度,因此无法获取结果。
我怎样才能克服这个问题??
最佳答案
您正在查询您的 gps 助手,然后它才有位置。例如在您的 getLatitude
方法中。
public double getLatitude(){
mLastLocation = LocationServices.FusedLocationApi
.getLastLocation(mGoogleApiClient);
// At first mLastKnownLocation will be null
if (mLastLocation != null) {
this.canGetLocation = true;
double latitude = mLastLocation.getLatitude();
System.out.println("In GetLat==>"+latitude);
return latitude;
} else {
System.out.println("last known null");
return 0.0; // This here is what is being returned.
}
}
直到您的 apiclient 调用 public void onLocationChanged(Location location)
位置才会可用。
方法一
返回一个 Location
对象而不是原语。这样,如果过早查询它并且调用者可以处理它,您可以返回 null。
方法二
您的 GPS 助手的用户向其注册回调。现在他们会在位置可用时收到通知。
在 GPSTracker 类中
List<LocationListener> listeners = new ArrayList<>();
public void registerListener(LocationListener listener) {
listeners.add(listener);
}
public void removeListener(LocationListener listener) {
listeners.remove(listener);
}
@Override
public void onLocationChanged(Location location) {
mLastLocation = location;
for (LocationListener listener : listeners) {
listener.onLocationChanged(location);
}
}
GPSTracker用户
GPSTracker gps = new GPSTracker();
LocationListener myCallback = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
// This code runs every time your gps gets a new location
System.out.println("lat-->"+location.getLatitude()+" long===>"+location.getLongitude());
doStuffWithLocation(location);
}
};
gps.registerListener(myCallback);
// Then when you are finished
gps.removeListener(myCallback);
关于android - 使用 FusedLocation api 制作辅助类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32455413/
我正在尝试 specFlow 辅助,但不确定如何从表中创建类属性。 想象一下我有这门课: public class Tracking { public string Category { ge
我如何使用带 IOS 应用程序的辅助 GPS 来计算给定区域(例如建筑物)内部(或外部)某人的位置? 是否有可能在几英尺内就足够准确? 这样做正确吗? 是否可以在计算中使用多个 wifi 连接? 最佳
我在 wiki 和其他一些文本中看到,他们说冒泡排序、插入排序、选择排序等的空间复杂度是 O(1) 辅助。它们是否指的是程序中使用的变量所需的常量存储单元。 最佳答案 是的,他们指的是大多数排序都是就
默认情况下,页面上有 3 个点击事件(蓝色 X、蓝色 +、灰色 X)。每个人都会打开一个模式框。 每个模式框都有一个按钮。其中两个模态框,一个用于蓝色 X,一个用于蓝色 +,内部都有功能按钮。当我单击
我正在寻找 Kotlin 的 gigasecond 练习的解决方案:http://exercism.io/exercises/kotlin/gigasecond/readme 。我可以理解它如何需要两
我基本上刚刚开始使用 PyGame 进行开发,但我在整个 Sprite 概念方面遇到了麻烦。我一直在到处寻找有关如何使用它的指南,但似乎找不到任何指南。我想知道这一切是如何运作的基本概念。这是我一直在
我有一些无法运行的 JavaScript 代码。我尝试过移动一些东西,并更改一些关键字,但到目前为止没有任何效果。我会让你们尝试一下。 这是 JavaScript 文件: var GAME =
我有这个注册网页是我在帮助下创建的,感谢这里的人。在尝试使其响应之前,我只是做了一些调整。如何在复选框及其文本和底部的 div 之间创建空间而没有间隙。有什么建议吗? https://jsfiddle
我正在尝试检查是否启用了 WiFi 辅助。当我连接到我的接入点以获取一些数据时,我遇到了问题,当我的连接不佳时,我的蜂窝数据被使用并且它干扰了我的接入点。有什么方法可以检查是否启用了此选项? 最佳答案
为了安全起见,我希望使用异地复制/辅助 Blob 存储容器作为 AzureML 数据存储的数据源。所以我执行以下操作: 新数据存储 输入名称 + Azure Blob 存储 + 手动输入 对于 URL
我的讲师现在有一个我以前从未见过的奇怪习惯,我想知道这是 Haskell 标准还是他的编程风格的怪癖。 基本上,他经常会做这样的事情: functionEx :: String -> Int func
我想从可移动SD卡中删除文件,我尝试了很多方法但没有效果。 尝试过: file.delete(); 和 File file = new File(selectedFilePath); boolean
我正在开发一款 Android 应用,用户必须能够在其中进行身份验证,然后调用 YouTube 数据 API。 我可以毫无问题地使用主帐户对用户进行身份验证,使用 Google 登录对我和用户来说一切
命令: sudo mv /temp/hello.txt /path/to/destination/ 然后我通过 key 存储添加了密码。 我确信写在 sudo.password 中的密码是正确的。
我需要编写一个 java 代码来获取给定集群的辅助名称节点的 IP 地址。给定集群的 Namenode 的 IP 地址。 我能够获取数据节点和名称节点的报告,但无法找到获取辅助名称节点的 IP 地址的
Cay Horstmann 的书《不耐烦的 Scala》中的一个非常简单的练习一直让我感到困惑。是关于primary , auxiliary和 default primary构造函数: ex 5.10
我正在尝试确定 Google Cloud DNS 是否支持通过 NOTIFY 请求进行辅助 DNS (AXFR/IXFR) 传输?我在网上找不到任何东西,Google 也没有明确声明不支持它。 最佳答
我有一个简单的 Kotlin 类: data class ValveSpan(val begin:Duration, val end:Duration, val key:String):Compara
我有一个与最初在 UISplitView 中加载辅助 View 相关的快速问题。目前,我已经在 masterVC.swift 中获得了代码,可以用数组中的第一个对象(如果有)填充detailsVC。这
我正在使用这个命令来获取另一个命令的进程 ID: ps aux | grep 7000.conf | awk '{print $2}' 这将返回两个 PID: 7731 22125 我只想要第一个。第
我是一名优秀的程序员,十分优秀!