總網頁瀏覽量

關於我自己

我的相片
人生的必修課是接受無常,人生的選修課是放下執著。

2014年4月6日 星期日

【Fragment】 用Bundle傳遞資料


Fragment是Android 3.0後提出的一種東西

現在有FragmentA與FragmentB這兩個Fragment

FragmentA要透過Bundle傳遞資料給FragmentB〉
FragmentB fragmentB = new FragmentB();
Bundle bundle = new Bundle();
String exception = "yummy";

// "EXCEPTION"就像暗號, 由此來判別儲存的值
bundle.putString("EXCEPTION", exception);        
fragmentB.setArguments(bundle);



FragmentB要知道FragmentA傳來什麼資料〉String whatException = getArguments("EXCEPTION");

沒有留言:

張貼留言