-3

あるアクティビティから別のアクティビティに 1 つの文字列変数を渡したいのですが、うまくいきません。メイン アクティビティから sendms アクティビティに文字列を送信したいです。送信文字列は、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);

            }


        });

メインアクティビティから文字列を sendmsactivity.java に送信する

sendmsactivity.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();
              }

            }
        });
    }
}

sendmsactivity で、メイン アクティビティから文字列を取得したいのですが、send sms アクティビティの sms 本文として設定する必要があります。そのようにしたいのですが、現在、コードが機能していません。メインから文字列を取得していません。アクティビティを送信します。

4

3 に答える 3

0

エクストラにタイプミスがあるようです。「firstkeyName」を使用してみてください。それはうまくいくはずです。何かのようなもの :

sms = extras.getString("firstkeyName");
于 2013-06-06T07:14:10.690 に答える