在 Bundle 中获取值,但是当将该 bundle 值放在字符串中时,它显示为空值。这是我的代码:
活动:1
public void btnDeposite(View v)
{
s1 = e1.getText().toString();
amt1 = Integer.parseInt(s1);
Intent i =new Intent(this,Transfer.class);
i.putExtra("depositeAmount", amt1);
startActivity(i);
}
活动:2
//在onCreate()中
b = getIntent().getExtras();
s1 = b.getString("depositeAmount");