让我用更好的措词再试一次。我对此很陌生。我正在尝试将复选框的价值结果传递给另一个活动。我尝试了几种不同的方法,但均未成功,我将不胜感激。
我知道如何用结果做“吐司”,那不是我想要的。我希望复选框结果将出现在另一个活动的textview中。如果有人能帮助我提供一些有关如何完成该任务的提示,我将不胜感激,很抱歉让大家遇到如此棘手的问题。
 我读了几本书,看了一些教程,但是我的技能仍然很缺乏。这些书与教程(按钮和布局等)一样重复和多余。

    final CheckBox chbxshirleys = (CheckBox)findViewById(R.id.checkboxshirleys);
    final CheckBox chbxdianas = (CheckBox)findViewById(R.id.checkboxdianas);
    final CheckBox chbxzoila = (CheckBox)findViewById(R.id.checkboxzoila);
    final CheckBox chbxsheila = (CheckBox)findViewById(R.id.checkBoxSheila);
    final CheckBox chbxrobert = (CheckBox)findViewById(R.id.checkBoxrobert);
    final CheckBox chbxsam = (CheckBox)findViewById(R.id.checkBoxsam);
    final CheckBox chbxcamren = (CheckBox)findViewById(R.id.checkBoxcamren);
    final CheckBox chbxricks = (CheckBox)findViewById(R.id.checkBoxricks);
    final Button vendorbutton = (Button)findViewById(R.id.vendorbutton);

    vendorbutton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            String vendor ="";
            if (chbxshirleys.isChecked())
            {
                vendor += chbxshirleys.getText();

            }

                    if (chbxdianas.isChecked())
                    {
                vendor += chbxdianas.getText();

                    }
                    if (chbxzoila.isChecked())
                    {
                vendor += chbxzoila.getText();
                }
                    if (chbxsheila.isChecked())
                    {
                vendor += chbxsheila.getText();
                    }
                    if (chbxrobert.isChecked())
                    {
                vendor += chbxrobert.getText();
                    }
                    if (chbxsam.isChecked())
                        {
                    vendor += chbxsam.getText();
                        }
                    if (chbxcamren.isChecked())
                    {
                vendor += chbxcamren.getText();
                    }
                if (chbxricks.isChecked())
                {
            vendor += chbxricks.getText();
                }
                Intent myIntent=new Intent(getApplication(),ApplianceMessage.class);
                myIntent.putExtra("chbxshirleys", vendor);
                myIntent.putExtra("chbxdianas", vendor);
                myIntent.putExtra("chbxzoila", vendor);
                myIntent.putExtra("chbxsheila", vendor);
                myIntent.putExtra("chbxrobert", vendor);
                myIntent.putExtra("chbxsam", vendor);
                myIntent.putExtra("chbxcamren", vendor);
                myIntent.putExtra("chbxricks", vendor);
                startActivity(myIntent);
        }
        });

}


新活动

public class ApplianceMessage extends Activity {


private TextView tvname = (TextView)findViewById(R.id.tvname);
private EditText etname = (EditText)findViewById(R.id.etname);
private TextView tvcity = (TextView)findViewById(R.id.tvcity);
private EditText etcity = (EditText)findViewById(R.id.etcity);
private TextView tvtime = (TextView)findViewById(R.id.tvtime);
private EditText ettime = (EditText)findViewById(R.id.ettime);
private RadioButton rbutton =(RadioButton)findViewById(R.id.rburgent);
private TextView tvproblem = (TextView)findViewById(R.id.rburgent);
private EditText etproblem = (EditText)findViewById(R.id.etproblem);
private TextView tvvendor = (TextView)findViewById(R.id.vendorlist);
private Button msendbutton;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.appliance_message);

    final Bundle extras = getIntent().getExtras();
    extras.getInt("chbxshirleys");
    extras.getInt("chbxdianas");
    extras.getInt("chbxzoila");
    extras.getInt("chbxshiela");
    extras.getInt("chbxrobert");
    extras.getInt("chbxcamren");
    extras.getInt("chbxsam");
    extras.getInt("chbxricks");

    msendbutton = (Button)findViewById(R.id.sendbutton);
    msendbutton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            tvname.setText("Insert Name");
            etname.setText("");
            tvcity.setText("City Name");
            etcity.setText("");
            tvtime.setText("Time");
            ettime.setText("");
            tvproblem.setText("Problem");
            etproblem.setText("");

    }
});

    }

}

最佳答案

在您的第一次活动中:

Intent i=new Intent(YourClassName.this,ApplianceMessage.class);
i.putExtra("selected",vendor);
startActivity(i);


在第二个活动中:

String selecteditem=getIntent().getExtras().getString("selected");
textview.setText(selecteditem);

07-27 16:52