android程式設計中用intent傳值能傳變數到另a

2021-04-03 04:46:50 字數 960 閱讀 2992

1樓:匿名使用者

intent intent= new intent(當前activity.this, 要跳轉到的activity.class);

bundle bundle=new bundle();

bundle.putint("a", "值");//這你看你要傳什麼值,int--putint("key","值");

intent.putextras(bundle);//把這個值放到intent裡面

startactivity(intent);//跳轉

------------------------------------------

這裡已經跳轉到另一個activity了

在oncreat裡寫這樣的**

intent intent=new intent();

bundle b=new bundle();

//比如這個是string或者int型的:

string str=b.getstring("key");

int a=b.getint("key");

----------------------------------------

這樣就完全ok了,好好加油吧,這條路還很長呢

2樓:匿名使用者

intent it = new intent(activity.main.this, activity2.class);

bundle bundle=new bundle();

bundle.putint("a", "值");

it.putextras(bundle);

startactivity(it);

新activity中oncreate方法中取傳遞過來的值bundle bundle = this.getintent().getextras();

int a = bundle.getint("a");

在Excel中用vba程式設計達到預期效果,滿意後追加獎賞

不是所有問題都用vba就好,你這個問題根本不用vba,用公式判斷如果產品名稱相同,就用前列 減後列 否則就返回空,用vba反而把簡單問題複雜化了。例如公式 if a1 c1,b1 d1,q15963970 乾咳要用vba用公式就可以啊 看看是不是你想要的 sub test rowmax sheets...

android開發中android虛擬機器作為伺服器與pc客戶端

android使用的僅僅使用了pc 裡邊的一個埠ip自然就是127.0.0.1了,或者是localhost吧關於5037口和5555口,找到了一個看起來合理的解釋 adb android debug bridge 包括三個部分 1 adb client,執行在pc上 為ddms,即ide工作 2 a...

android開發出現異常,Android 開發異常問題

the specified child already has a parent.you must call removeview on the child s parent first。這個問題是因為一個view只能隸屬於一個parent,你的 應該是changeview函式中的第二個迴圈中,將i...