使用按钮和错误的GPS数据调用方法

时间:2013-02-13 11:20:04

标签: android button gps

我有一个使用方法从头开始记录数据的应用程序。我还有一个按钮,此刻只显示吐司,但我想开始记录。

主要问题是,如何仅使用按钮启动方法?

我的GPS也让我在坦桑尼亚的-9,53。我不在坦桑尼亚,我就在路上。

任何帮助都会很棒。

感谢。

 private OnClickListener startListener = new OnClickListener() {
    public void onClick(View v) {

      Toast.makeText(getApplicationContext(), "The Start button was clicked.", Toast.LENGTH_LONG).show();

    }


public void onLocationChanged(Location arg0) {
    double Longitude = arg0.getLongitude();
    double Latitude = arg0.getLatitude();
    String Long = new DecimalFormat("##.##").format(Longitude);
    String Lat = new DecimalFormat("##.##").format(Latitude);
    location = Long + "," + Lat;
    locationText.setText(location);
}

1 个答案:

答案 0 :(得分:1)

回答问题2:你交换经纬度,53,-9在爱尔兰利默里克附近 问题1:基本教程将向您展示如何调用按钮单击触发的方法。