vikeyToy 2013-06-28 06:17 采纳率: 0%
浏览 2059
已采纳

在方法范围外使用变量

需要在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);
  • 写回答

1条回答

  • 码密码密哄 2013-06-28 06:41
    关注

    设置成全局的话
    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去掉

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services