0

ここに行きます:私は一晩中インターネット、特にStackOverflowを精査し、Androidで基本的な位置情報サービスを動作させることができない理由を理解しようとしました。Android 1.6 から Android 4 までのさまざまなエミュレート環境で、すべてエミュレートされた GPS サービスと、実際の Android 2.2.2 デバイスで試しました。場所は常に null として返されます。少なくとも 7 つの異なるダウンロード可能なサンプル プロジェクトを試してみましたが、それらを逐語的に使用し、同じ結果を得ました。

明らかに、私は何か重要なものを見逃しています。誰かが私が間違っていることを指摘できれば、それは大歓迎です。

com.mytestproject.android:

package com.mytestproject.android;
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.util.Log;
import android.widget.TextView;
import android.widget.Toast;
import com.mytestproject.android.R;
public class MyTestProject extends Activity {
private TextView mytext;
private LocationManager locmgr = null;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mytext = (TextView) findViewById(R.b.mytext);

    //grab the location manager service
    locmgr = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

    mytext.setText("waiting for location");
}

//Start a location listener
LocationListener onLocationChange=new LocationListener() {
    public void onLocationChanged(Location loc) {
        //sets and displays the lat/long when a location is provided
        String latlong = "Lat: " + loc.getLatitude() + " Long: " + loc.getLongitude();   
        mytext.setText(latlong);
    }

    public void onProviderDisabled(String provider) {
    // required for interface, not used
    }

    public void onProviderEnabled(String provider) {
    // required for interface, not used
    }

    public void onStatusChanged(String provider, int status,
    Bundle extras) {
    // required for interface, not used
    }
};

//pauses listener while app is inactive
@Override
public void onPause() {
    super.onPause();
    locmgr.removeUpdates(onLocationChange);
}

//reactivates listener when app is resumed
@Override
public void onResume() {
    super.onResume();
    locmgr.requestLocationUpdates(LocationManager.GPS_PROVIDER,0,10000.0f,onLocationChange);
}
}

main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/mytext"  
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.johnandbrian.android"
    android:versionCode="1"
    android:versionName="1.0" >

<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.CONTROL_LOCATION_UPDATES"></uses-permission>

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".MyTestProject"
        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>
4

2 に答える 2

0

onCreate()これを関数に追加し、

locmgr.requestLocationUpdates(LocationManager.GPS_PROVIDER,0,10000.0f,onLocationChange);
于 2012-04-22T19:42:39.090 に答える
0

onLocationChanged()サンプルプロジェクトでも呼び出されていない場合、「場所は常にnullです」は問題の正確な説明ではないと思います。場所が変更onLocationChanged()されたときにのみ呼び出されます。そのため、(a) エミュレーターを使用するときにモックの場所を注入したり、場所エンジンを駆動したりしていない、(b) 実際のデバイス上で十分に動き回っていないように思えます。サンプル プロジェクトを実際のデバイスにロードし、に出て、いくつか (数十メートル) 移動することをお勧めします。メソッド (サンプル プロジェクト内) にブレッドクラムを追加して、メソッドが呼び出されていることを確認します。onLocationChanged()

于 2012-04-22T20:35:45.533 に答える