我有一个使用方法从一开始就记录数据的应用程序。我还有一个按钮,现在只显示祝酒词,但我希望它开始记录。
主要问题是,我如何启动一个方法,只使用按钮?
我的 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);
}