我正在尝试在Android上创建一个简单的应用程序,以使用GPS或网络提供商(WIFI或塔)获取当前位置,但我在尝试使其在Android上运行时遇到了这样的问题。它不会启动它给了我一个例外,我不知道为什么。
这是代码。这很简单,因为我想测试一下这个位置&稍后我会添加一些功能和功能..
主要:
package com.GpsTesting;
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.Toast;
public class GPS_TestActivity extends Activity{
/** Called when the activity is first created. */
String location_text="";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
// Define a listener that responds to location updates
LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location location) {
// Called when a new location is found by the network location provider.
if (location != null) {
double lat = location.getLatitude();
double lng = location.getLongitude();
location_text= "latitude: "+lat+"longitude: "+lng;
Toast.makeText(getApplicationContext(), location_text, Toast.LENGTH_SHORT).show();
}
}
public void onStatusChanged(String provider, int status, Bundle extras) {}
public void onProviderEnabled(String provider) {}
public void onProviderDisabled(String provider) {}
};
lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,0,0,locationListener);
}
}
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.GpsTesting"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:permission="android.permission.ACCESS_FINE_LOCATION">
<activity android:name=".GPS_TestActivity"
android:label="@string/app_name">
<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_COARSE_LOCATION" />
</manifest>
那么,代码中是否存在问题?我正在使用在线教程(来自android开发和其他网站)。
非常感谢。
已添加注释:
**我真的很喜欢。我尝试使用eclipse方式运行应用程序(通过USB连接我的设备并将应用程序运行到设备而不是应用程序中)。 当我尝试这种方式,应用程序运行正常没有问题!使用旧的方式(通过电子邮件发送.apk然后从手机安装它,它一直给我例外!) 任何人都可以解释为什么会发生这种情况?我错过了什么? 因为,我知道在Android开发中。所以,我担心我错过了一点...
注意: 我正在通过电子邮件发送bin文件夹中的.apk文件(用eclipse签名,用于测试目的)...我尝试使用另一个简单的应用程序只是为了确保.apk文件是可以在bin文件夹中找到正确的onw(用于测试)或不用,&amp;它确实有效..所以,apk文件就好了......但是为什么网络应用程序在eclipse中不起作用呢? 提前致谢;)**
已解决;)
问题的解决方案我之前在应用程序标记
的清单中添加了权限机器人:权限= “android.permission.ACCESS_FINE_LOCATION”
它是重复的,因为它已经在下面添加(或因为它在错误的地方)。 所以,我删除它&amp;它运行正常。
非常感谢你们
答案 0 :(得分:4)
首先,我检查哪些提供程序已启用。有些可能在设备上被禁用,有些可能在应用程序清单中被禁用。 如果任何提供者可用,我启动位置监听器和超时计时器。在我的例子中,这是20秒,可能还不够GPS,所以你可以放大它。 如果我从位置监听器获得更新,我使用提供的值。我停止了听众和计时器。 如果我没有得到任何更新和计时器过去,我必须使用最后的已知值。 我从可用的提供者那里获取最后的已知值并选择最新的值。
MyLocation myLocation = new MyLocation();
private void locationClick() {
myLocation.getLocation(this, locationResult);
}
public LocationResult locationResult = new LocationResult() {
@Override
public void gotLocation(final Location location) {
//Got the location!
}
};
这是MyLocation类:
import java.util.Timer;
import java.util.TimerTask;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
public class MyLocation {
Timer timer1;
LocationManager lm;
LocationResult locationResult;
boolean gps_enabled=false;
boolean network_enabled=false;
public boolean getLocation(Context context, LocationResult result)
{
//I use LocationResult callback class to pass location value from MyLocation to user code.
locationResult=result;
if(lm==null)
lm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
//exceptions will be thrown if provider is not permitted.
try{gps_enabled=lm.isProviderEnabled(LocationManager.GPS_PROVIDER);}catch(Exception ex){}
try{network_enabled=lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);}catch(Exception ex){}
//don't start listeners if no provider is enabled
if(!gps_enabled && !network_enabled)
return false;
if(gps_enabled)
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListenerGps);
if(network_enabled)
lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListenerNetwork);
timer1=new Timer();
timer1.schedule(new GetLastLocation(), 20000);
return true;
}
LocationListener locationListenerGps = new LocationListener() {
public void onLocationChanged(Location location) {
timer1.cancel();
locationResult.gotLocation(location);
lm.removeUpdates(this);
lm.removeUpdates(locationListenerNetwork);
}
public void onProviderDisabled(String provider) {}
public void onProviderEnabled(String provider) {}
public void onStatusChanged(String provider, int status, Bundle extras) {}
};
LocationListener locationListenerNetwork = new LocationListener() {
public void onLocationChanged(Location location) {
timer1.cancel();
locationResult.gotLocation(location);
lm.removeUpdates(this);
lm.removeUpdates(locationListenerGps);
}
public void onProviderDisabled(String provider) {}
public void onProviderEnabled(String provider) {}
public void onStatusChanged(String provider, int status, Bundle extras) {}
};
class GetLastLocation extends TimerTask {
@Override
public void run() {
lm.removeUpdates(locationListenerGps);
lm.removeUpdates(locationListenerNetwork);
Location net_loc=null, gps_loc=null;
if(gps_enabled)
gps_loc=lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if(network_enabled)
net_loc=lm.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
//if there are both values use the latest one
if(gps_loc!=null && net_loc!=null){
if(gps_loc.getTime()>net_loc.getTime())
locationResult.gotLocation(gps_loc);
else
locationResult.gotLocation(net_loc);
return;
}
if(gps_loc!=null){
locationResult.gotLocation(gps_loc);
return;
}
if(net_loc!=null){
locationResult.gotLocation(net_loc);
return;
}
locationResult.gotLocation(null);
}
}
public static abstract class LocationResult{
public abstract void gotLocation(Location location);
}
}
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
答案 1 :(得分:1)
您可能缺少清单中的互联网权限
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
答案 2 :(得分:1)
我认为您可以阅读并观看Reito Meier在IO 2011期间提供的内容。
来自Meier的Google IO 2011(观看视频,获取幻灯片,获取代码段...):
http://blog.radioactiveyak.com/2011/05/android-protips-where-to-download.html
Reito Meier关于基于位置的应用程序的出版物:
http://blog.radioactiveyak.com/2011/06/how-to-build-location-based-apps-that.html
http://blog.radioactiveyak.com/2011/06/deep-dive-into-location-part-2-being.html