一般是用 Intent 或 Bundle 的方式傳遞參數
倒是沒用過你這種寫法
你的意思是說用到像是下面這樣的方法嗎?
Bundle objgetbundle = this.getIntent().getExtras();
String Account = objgetbundle.getString("account");
String Pwd = objgetbundle.getString("pwd");
Intent intent = new Intent();
intent.setClass(this, record_code.class);
objgetbundle.putString("account",Account);
objgetbundle.putString("pwd",Pwd);
intent.putExtras(objgetbundle);
startActivity(intent);
這樣的方法之前有試過了 但是打在OnCreate裡面會閃退
參考這篇看看
真的非常感謝你!!! 我解決了!
這個問題我找很久了 但是就是沒看到這篇文章
真的很謝謝你