GPS当前位置

时间:2012-04-29 21:28:58

标签: android

我一直在研究这段代码,一切似乎都没问题,但我的编辑,eclipse一直告诉我要投射myManager。代码如下,

package com.gps.project;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;
import android.content.Context;
import android.widget.Button;
/*LOcation based API*/
import android.location.LocationManager;


public class GpsActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        /*Create ab ttuon we are to use in our GPS*/
        final Button gpsButton=(Button) findViewById(R.id.gpsButton);
        gpsButton.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                LoadCoords();

            }
        });

    }
    public void LoadCoords(){
        /*Create two textfields that will contain information as latitudes and longitudes*/
        TextView latText=(TextView) findViewById(R.id.latText);
        TextView lngText=(TextView) findViewById(R.id.lngText);

        /*Creation of a location manager from which we are to pull the location values*/
        LocationManager myManager=(LocationManager) getSystemService(Context.LOCATION_SERVICE);
        /*To pull the coordinates from myManager, we use the getCurrentLocation( ) method.*/
        Double latPoint = myManager.getCurrentLocation("gps").getLatitude();
        Double lngPoint = myManager.getCurrentLocation("gps").getLongitude();
        /*Finally, take the new Double values and pass them to your TextViews:*/
        latText.setText(latPoint.toString());
        lngText.setText(lngPoint.toString());
    }
}

如果有人帮助我纠正错误,我们会很高兴。我打算获得经度和纬度。

1 个答案:

答案 0 :(得分:0)

正如我在回复中所说,我认为您应该使用getCurrentLocation <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 的内容,而这些内容在文档中找不到(可能已弃用)。

  

返回指示上一个已知位置的数据的位置   修复从给定的提供者获得。这可以不用   启动提供者。请注意,此位置可能已过时,   例如,如果设备已关闭并移至另一个设备   地点。如果当前禁用了提供程序,则返回null。

您需要添加的getLastKnownLocation是:

{{1}}