Android中如何使用onSaveInstanceState()方法,針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
成都創(chuàng)新互聯(lián)專注于當陽網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供當陽營銷型網(wǎng)站建設(shè),當陽網(wǎng)站制作、當陽網(wǎng)頁設(shè)計、當陽網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造當陽網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供當陽網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
Android 中 onSaveInstanceState()使用方法詳解
覆蓋onSaveInstanceState方法,并在onCreate中檢測savedInstanceState和獲取保存的值
@Override protected void onSaveInstanceState(Bundle outState) { outState.putInt("currentposition", videoView.getCurrentPosition()); super.onSaveInstanceState(outState); }
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); initView(); if (savedInstanceState != null && savedInstanceState.getInt("currentposition") != 0) { videoView.seekTo(savedInstanceState.getInt("currentposition")); } }
關(guān)于Android中如何使用onSaveInstanceState()方法問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。