程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-intent傳遞string值失敗

android-intent傳遞string值失敗

編輯:編程綜合問答
intent傳遞string值失敗

android 中的activity:

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);

    }

在其他activity:

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。

最佳回答:


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);
    }

試試這個方法吧

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved