0

这是 Andrj 活动

 private void switchActivity(String key)
    {
        String r="123";
        Bundle basket=new Bundle();
        //basket.putString("key", key);
        basket.putString("roll", r);
        Intent i=new Intent(Andprj.this, extra.class);
        i.putExtras(basket);
        startActivity(i);

    }

这是额外的活动

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.exam);
    tv=(TextView) findViewById(R.id.t1);
    setContentView(R.layout.exam);
    Bundle gotbasket=getIntent().getExtras();
    String gotbread=gotbasket.getString("roll");
    tv.setText(gotbread);
}

即将显示的只是 TextView...(默认值)

4

2 回答 2

0

尝试这个

protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.exam);
        tv=(TextView) findViewById(R.id.t1);
        Bundle gotbasket=getIntent().getExtras();
        String gotbread=gotbasket.getString("roll");
        tv.setText(gotbread);
    }
于 2013-04-25T02:00:49.967 回答
0

你还记得invalidate()设置文本后的视图吗?<-----不需要。

或者你应该打电话setText()之前setContentView()<-----错了

更新:上面的两行都不正确。对不起。

于 2013-04-25T02:04:29.250 回答