在方法范围外使用变量

需要在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);


Smart猫小萌
浏览 443回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java