需要在onCreate方法之外传递char1到另一个方法selectChar2中。可以设置char1或者char2为全局吗?不知道怎么实现。谢谢
private String char1,char2; // does this even do anything? I thought this would let me use char1 and char2 anywhere. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_pick_char2); Bundle extras = getIntent().getExtras(); if (extras != null) { String char1 = (String) extras.getString("char1"); //is the (String) necessary? TextView textView = (TextView) findViewById(R.id.header); textView.setText(char1+" vs "+"char2"); } } public void selectChar2(View v) { Button btn = (Button)v; String char2 = btn.getText().toString(); Intent intent = new Intent(PickChar2.this, DisplayMatchUp.class); Bundle extras = new Bundle(); extras.putString("Character1",char1); //char1 here is null...how do I get the value from the method above? extras.putString("Character2", char2); intent.putExtras(extras); startActivity(intent);
相关分类