我对 Android 开发非常陌生。所以请原谅这个重复的问题。我已经尝试了许多解决方案,但似乎没有一个对我来说很合适......它们都在模拟器和我的手机上崩溃。
我正在开发一个应用程序,只想获取我的 GPS 位置,然后将名为“大”的 TextView 设置为该位置的值。
这是代码。(我的代码中有导入语句和所有内容..我只是没有将它们复制过来
GPSActivity //启动的活动。textview R.id.big 确实存在
public class GPSActivity extends Activity{
private LocationManager manager = null;
private MyLocationListener listener;
private TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listener = new MyLocationListener(textView);
textView = (TextView) findViewById(R.id.big);
manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
listener = new MyLocationListener(textView);
manager.requestLocationUpdates(LocationManager
.GPS_PROVIDER, 5000, 10,listener);
}
}
我实现了我自己的 LocationListener 来改变我的 TextView...我不确定我是否真的被允许这样做....
public class MyLocationListener implements LocationListener
{
TextView textView;
public MyLocationListener(TextView textView)
{
this.textView = textView;
}
@Override
public void onLocationChanged(Location location) {
this.textView.setText(location.toString());
}
@Override
public void onStatusChanged(String s, int i, Bundle bundle) {
}
@Override
public void onProviderEnabled(String s) {
}
@Override
public void onProviderDisabled(String s) {
}
}
最后是我的清单文件。我确保包括我需要的权限。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mytestapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name="com.mytestapp.GPSActivity"
android:permission="ACCESS_FINE_LOCATION"
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>
</manifest>
问题发生在GPSActivity
我打电话时requestLocationUpdates()
。如果我将这一行留在代码中,应用程序会崩溃。如果我将其注释掉,TextView 的“大”会像我期望的那样显示。
编辑:我也尝试过创建一个LocationListener
内部类,就像我看到很多其他人在 SO 上所做的那样......我得到了相同的结果(应用程序崩溃)