在主要活动中,我有以下内容:
((TextView)findViewById(R.id.TextView02)).setText(getSharedPreferences("FearAlert", 1).getString("contactName", "Tap to select an Emergency Contact."));
((TextView)findViewById(R.id.TextView03)).setText(getSharedPreferences("FearAlert", 1).getString("contactNumber", ""));
现在我想在另一个 Activty 中使用 contactNumber 值说 Activty2 中的 activity2 是:
SmsManager.getDefault().sendTextMessage(??, null, "message",null, null, null);
return null;
我应该写什么来代替??以上..请帮助..