需要在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);
設置成全局的話
private String char1,char2;
@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");
//上面修改為char1 = (String) extras.getString("char1");
TextView textView = (TextView) findViewById(R.id.header);
}
}
textView.setText(char1+" vs "+"char2");//這句話你就得等char1 char2都賦值完成後才能設置了
public void selectChar2(View v) {
Button btn = (Button)v;
String char2 = btn.getText().toString();//這個也得把String去掉