android 字符串粘贴,在android中的活动之间传递字符串

我已搜索了不少地方,但我还没有找到任何有效的解决方案,我真的需要帮助!

我正在创建一个需要将经度和纬度字符串从一个活动传递到另一个活动的应用程序.

我怎样才能做到这一点???看看我的代码:LocationActivity.java需要将字符串传递给另一个活动,另一个我没有粘贴到这里.需要传递的字符串名为:“latLongString”

LocationActivity.java:

import android.R.string;

import android.app.Activity;

import android.content.Context;

import android.content.Intent;

import android.location.Location;

import android.location.LocationListener;

import android.location.LocationManager;

import android.os.Bundle;

import android.view.View;

import android.widget.TextView;

public class LocationActivity extends Activity {

private String Location;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

LocationManager locManager;

locManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);

locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,1000L,500.0f, locationListener);

Location location = locManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);

updateWithNewLocation(location);

if(location != null)

{

double latitude = location.getLatitude();

double longitude = location.getLongitude();

}

}

private void updateWithNewLocation(Location location) {

TextView myLocationText = (TextView)findViewById(R.id.LocationWord);

String latLongString = "";

if (location != null) {

double lat = location.getLatitude();

double lng = location.getLongitude();

latLongString = "Lat:" + lat + "

Long:" + lng;

//This is where i need to pass the string to the other activity

} else {

latLongString = "No location found";

}

myLocationText.setText("Your Current Position is:

" +

latLongString);

}

private final LocationListener locationListener = new LocationListener() {

public void onLocationChanged(Location location) {

updateWithNewLocation(location);

}

public void onProviderDisabled(String provider) {

updateWithNewLocation(null);

}

public void onProviderEnabled(String provider) {

}

public void onStatusChanged(String provider, int status, Bundle extras) {

}

};

}

其他活动:

import java.io.BufferedWriter;

import java.io.File;

import java.io.FileOutputStream;

import java.io.FileWriter;

import java.io.IOException;

import java.io.OutputStreamWriter;

import java.util.List;

import java.util.Locale;

import android.R.string;

import android.app.Activity;

import android.content.Context;

import android.content.Intent;

import android.content.SharedPreferences;

import android.location.Address;

import android.location.Criteria;

import android.location.Geocoder;

import android.location.Location;

import android.os.Bundle;

import android.os.Environment;

import android.telephony.gsm.SmsMessage;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.EditText;

import android.widget.TextView;

import android.widget.Toast;

import android.location.LocationManager;

import android.location.LocationListener;

public class FindAndroidActivity extends Activity implements OnClickListener {

/** Called when the activity is first created. */

Button Nextbutton1, Nextbutton2, Nextbutton3, TestLocationService, EditSettings;

TextView Cordinates, Adress, FindAndroid, TextView;

EditText LocationWord;

private LocationManager locManager;

private LocationListener locListener;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.firsttimescreen);

Nextbutton1 = (Button)findViewById(R.id.Nextbutton1);

Nextbutton1.setOnClickListener(this);

}

public void onClick(View src) {

switch(src.getId()) {

case R.id.Nextbutton1:

setContentView(R.layout.setup);

Nextbutton2 = (Button)findViewById(R.id.Nextbutton2);

TestLocationService = (Button)findViewById(R.id.TestLocationService);

TestLocationService.setOnClickListener(this);

Nextbutton2.setOnClickListener(this);

break;

case R.id.Nextbutton2:

setContentView(R.layout.setup1);

Nextbutton3 = (Button)findViewById(R.id.Nextbutton3);

LocationWord = (EditText)findViewById(R.id.LocationWord);

LocationWord.requestFocus(View.FOCUS_DOWN);

Nextbutton3.setOnClickListener(this);

break;

case R.id.Nextbutton3:

setContentView(R.layout.main);

EditSettings = (Button)findViewById(R.id.EditSettings);

EditSettings.setOnClickListener(this);

break;

case R.id.TestLocationService:

Bundle extras = getIntent().getExtras();

if(extras !=null) {

String value = extras.getString("KEY");

}

Cordinates = (TextView)findViewById(R.id.Cordinates);

Cordinates.setText(value);

//This does not work because the string "value" isn't availible outside the braces,

//obviously. How do i make it availible there???

break;

case R.id.EditSettings:

setContentView(R.layout.setup1);

Nextbutton3 = (Button)findViewById(R.id.Nextbutton3);

LocationWord = (EditText)findViewById(R.id.LocationWord);

LocationWord.requestFocus(View.FOCUS_DOWN);

Nextbutton3.setOnClickListener(this);

break;

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值