Android使用GoogleApiClient获取用户位置纬度和经度[重复]
Posted
技术标签:
【中文标题】Android使用GoogleApiClient获取用户位置纬度和经度[重复]【英文标题】:Android Getting user location latitude and longitude using the GoogleApiClient [duplicate] 【发布时间】:2017-08-01 21:50:40 【问题描述】:我正在使用 GoogleApiClient 获取用户的纬度和经度,这就是我迄今为止所做的。我按照谷歌地图上的 Udacity 教程来做这个。我已经完全按照 Udacity 上显示的方式完成了,但是我的纬度和经度没有像教员那样显示。
没有错误,所以我看不到错误在哪里。 我安装了 Google Play Services 10.2.0 版并将其输入到 build.gradle 应用程序的依赖项部分。 非常感谢任何帮助。
package com.example.udacitylocation;
import android.content.pm.PackageManager;
import android.location.Location;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.ActivityCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationServices;
import com.google.android.gms.location.LocationRequest;
public class MainActivity extends AppCompatActivity implements
GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener,
com.google.android.gms.location.LocationListener
private final String LOG_TAG = "LaurenceTestApp";
private TextView txtOutput;
private GoogleApiClient mGoogleApiClient;
private LocationRequest mLocationRequest;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(LocationServices.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
txtOutput = (TextView) findViewById(R.id.txtOutput);
@Override
public void onConnected(@Nullable Bundle bundle)
mLocationRequest = LocationRequest.create(); // Another way to write a new object
mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
mLocationRequest.setInterval(10); // Always write in milliseconds
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED)
return;
LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this);
@Override
public void onLocationChanged(Location location)
Log.i(LOG_TAG, location.toString());
txtOutput.setText(location.toString());
@Override
public void onConnectionSuspended(int i)
Log.i(LOG_TAG, "GoogleApiClient connection has been suspended");
@Override
public void onConnectionFailed(ConnectionResult connectionResult)
Log.i(LOG_TAG, "GoogleApiClient connection has failed");
@Override
protected void onStart()
super.onStart();
mGoogleApiClient.connect();
@Override
protected void onStop()
mGoogleApiClient.disconnect();
super.onStop();
XML 文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_
android:layout_
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.udacitylocation.MainActivity">
<TextView
android:layout_
android:layout_
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/txtOutput"
android:text="Location Goes Here"/>
</RelativeLayout>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.udacitylocation">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
</manifest>
【问题讨论】:
你得到了什么? Location[fused ....] 类似的东西? @tahsinRupam 在我的手机上,显示“位置在此处”,因为我在 xml 文件中对其进行了硬编码。没有其他显示 @DimaRostopira 谢谢!我去看看。 成功了!非常感谢! 【参考方案1】:在你的 androidManifest.xml 中添加这个互联网权限,我希望这对你有用.... Go to this picture
【讨论】:
以上是关于Android使用GoogleApiClient获取用户位置纬度和经度[重复]的主要内容,如果未能解决你的问题,请参考以下文章
没有 GET_ACCOUNTS 权限的 Android 中的 Google Cloud Endpoints + GoogleApiClient
使用 GoogleApiClient 进行 REST API 调用
GoogleApiClient 无法在 android studio 中连接
Android - GoogleApiClient 实例在 IntentService 中的 .connect() 和 onConnected() 之间丢失