选中CheckBox将项目发送到不同的活动

时间:2014-02-17 22:03:48

标签: android android-listview android-activity android-checkbox

在我的应用程序中,当选中CheckBox时,我希望ListView中的项目转到另一个Activity中的另一个ListView。请帮助我或给我一些指导如何做到这一点。我感谢任何帮助。

public class Check extends Activity{

CheckBox check;
TextView tvItem;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    check = (CheckBox) findViewById(R.id.checkBox1);
    tvItem = (TextView) findViewById(R.id.tvItem);
    check.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if(isChecked){

            }else{

            }

        }
    });
}



}

我应该在if和else中添加什么代码。

2 个答案:

答案 0 :(得分:1)

基本上,您需要为CheckBox设置onClickedListener,并启动活动传递足够的信息以启动新的Activity,并设置ListView。您可能需要切换checkedBox的状态,以防万一我为此包含代码,如果出现错误则将其删除。

checkBox.setOnClickListener(new OnClickListener() {
    @Override
    void onClick(View v) {
        checkedBox.toggle(); //Remove if check box is toggled correctly

        Intent intent=new Intent(MainActivity.this,OtherActivity.class);
        intent.putExtra("data",someData);
        startActivity(intent);
    }
}

其他活动检查意图,如下所示:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Get the message from the intent
    Intent intent = getIntent();
    String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

    //Magic happens here.
}

有关详细信息,请仔细阅读此Android Document文章。

答案 1 :(得分:0)

您可以捆绑信息(例如项目名称),并通过Intent将其发送到另一项活动,无论是通过检查还是通过按钮点击。

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_menu);

        final String MSTag = "MSTag"; //declare this string as your tag
            String itemName = YOUR_LIST_ITEM_NAME

...
       Intent myIntent = new Intent(this, YOUR_NEW_ACTIVITY.class);  
       myIntent.putExtra(MSTag, itemName); // add your tag and the item name to your intent.

       startActivity(m1Intent);

然后,在您的新活动中:

Bundle intent = getIntent().getExtras(); // this gets your added extras from the previous activity
myTag = intent.getString("MSTag"); // matches on your tag, and gets the string value
String itemName = myTag;
...

然后将您的项目添加到新活动

中的ListView