我想将一个字符串变量从一个活动传递到另一个活动,但是对我不起作用,我想将字符串从Main活动发送到transmitms活动。发送字符串应该在sms消息部分中设置。
主要活动.java
@Override
public void onClick(View v) {
StringBuffer sb = new StringBuffer();
// Retrive Data from list
for (Application bean : items) {
if (bean.isSelected()) {
sb.append(Html.fromHtml(bean.getContent()));
sb.append(",");
}
}
showAlertView(sb.toString().trim());
}
@SuppressWarnings("deprecation")
private void showAlertView(String str) {
AlertDialog alert = new AlertDialog.Builder(this).create();
final String strContactList = str.substring(0, str.length() - 1);
if (TextUtils.isEmpty(str)) {
alert.setTitle("Not Selected");
alert.setMessage("No One is Seleceted!!!");
} else {
// Remove , end of the name
alert.setTitle("Selected");
alert.setMessage(strContactList);
}
alert.setButton("sms", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//sendSMS();
/*Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", strContactList);
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);*/
Intent intent1=new Intent(MainActivity.this,SendSMSActivity.class);
intent1.putExtra("firstkeyName", strContactList);
startActivity(intent1);
}
});
从main活动发送一个字符串到sendsmsactivity.java
sendsmsactivity.java
public class SendSMSActivity extends Activity {
Button buttonSend;
EditText textPhoneNo;
EditText textSMS;
String sms;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.about);
buttonSend = (Button) findViewById(R.id.buttonSend);
textPhoneNo = (EditText) findViewById(R.id.editTextPhoneNo);
textSMS = (EditText) findViewById(R.id.editTextSMS);
Bundle extras = getIntent().getExtras();
if(extras !=null) {
sms = extras.getString("firstkeyName");
}
buttonSend.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String phoneNo = textPhoneNo.getText().toString();
try {
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, sms, null, null);
Toast.makeText(getApplicationContext(), "SMS Sent!",
Toast.LENGTH_LONG).show();
} catch (Exception e) {
Toast.makeText(getApplicationContext(),
"SMS faild, please try again later!",
Toast.LENGTH_LONG).show();
e.printStackTrace();
}
}
});
}
}
在sentmsactivity中,我想从主要活动获取字符串,它必须设置为发送短信活动的短信主体。我想这样做,但是现在我的代码不起作用,它没有得到字符串从main到sendmsactivity。
答案 0 :(得分:0)
看起来有一个错字是你的额外内容。尝试使用“firstkeyName”。它应该工作。类似的东西:
sms = extras.getString("firstkeyName");
答案 1 :(得分:0)
你有firstkeyName和firstKeyName两个不同的键名。即k是第一次活动的资本。 只需将其作为一个常数&从两个活动中访问它。
答案 2 :(得分:0)
这是你问题的答案,试一试......
Intent intent1= getIntent(); // gets the previously created intent
final String firstKeyName = intent1.getStringExtra("firstKeyName");
textSMS.setText(firstKeyName);
像这样更改你的Onclick功能
smsManager.sendTextMessage(phoneNo, null, firstKeyName, null, null);