編輯:關於android開發
轉載請注明出處,謝謝http://blog.csdn.net/harryweasley/article/details/46557827
因為項目中,有一個消息推送的功能,每次推送一個消息,就會開啟FunctionActivity,那麼為了避免重復開啟它,在退後的時候,多次出現該Activity,就將該Activity的啟動模式變為singleTask。
這樣在之後的多次啟動該Activity,便會調用onNewIntent(Intent intent)方法。
activity通過intent傳遞數據的時候,如果activity未啟動,那麼 在這個剛啟動的activity裡通過getIntent()會獲取到這個intent的數據.如果要啟動的activity是已經存在的,這時候通過 getInten()方法獲取到的intent是已啟動的activity的原始intent.換句話說intent的數據沒有更新.這樣在已啟動的 activity裡拿到的intent的數據是舊數據.如果要每次獲取intent傳來的新數據就需要在onNewIntent(Intent intent)方法裡調用setIntent(intent)設置這個傳來的最新的intent.如下所示:
@Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); Log.e("tag", "onNewINtent執行了"); setIntent(intent); String ringName = intent.getStringExtra("ringName"); Log.e("tag", ringName+"傳過來的值"); if (ringName != null) { pager.setCurrentItem(1); } }
當然,如果activity的啟動模式是standard,那麼每次都重新創建一個新的activity.這樣intent也是最新的.就不用通過setIntent來更新這個intent.
我這個項目中,FunctionActivity中裡面是四個Fragment,這樣 我從其他Activity跳轉到FunctionActivity是不會實例化,通過getIntent()方法也不能獲得最新的intent,為了解決 這個辦法。還是在onNewIntent方法中,將更新的intent通過getIntent().putExtras(intent);共享出去,如下 所示:
@Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); Log.e("tag", "onNewINtent執行了"); setIntent(intent); getIntent().putExtras(intent); }
這樣在與它關聯的Fragment中,就可以調用
@Override public void onResume() { super.onResume(); // 第一次進入這個頁面,下面的方法是不會執行的,因為ringName是null String ringName = getActivity().getIntent().getStringExtra("ringName"); if (ringName != null) { newSound.setText(ringName); Log.e("tag", ringName + "要保存的值"); SharedPreferenceUtil.setString(getActivity(), SharedPreferenceUtil.RINGTONE_NAME, ringName); } }
注意,這裡Fragment調用的時候,一定要在onResume方法中。
android開發中遇到的問題匯總【九】 244.http請求的url含有中字符時,需要Uri編碼。Uri.encoder() 245.使用androidstudio時,
雜談——Android從啟動到程序運行發生的事情 前言 好久沒有寫博客了,瞬間感覺好多學了的東西不進行一個自我的總結與消化總歸變不成自己的。通過博客可能還可以找到一些
android byte字節數組轉換十六進制字符串(物聯網開發總結) 想起前段時間的物聯網的外包開發,經常遇到通過wifi接受的數據,要通過轉換成十六進制字符串,或者最後
Android,android官網 設置標題欄背景 1> 准備背景圖片: background_pix.png 注:用背景圖片比用顏色好處,可以讓背景
SwipeRefreshLayout + RecyclerView 實現