Xin Xia
Xin Xia
刚看了一下代码,默认实现应该是会恢复View(带ID)和fragment的状态的 ``` outState.putBundle(WINDOW_HIERARCHY_TAG, mWindow.saveHierarchyState()); outState.putInt(LAST_AUTOFILL_ID, mLastAutofillId); Parcelable p = mFragments.saveAllState(); ``` 如果你覆盖了 并且注释了,应该不会恢复状态。 不清楚你的具体情况,你是否是指view也不会恢复了? 那跟这个没关系,这个只是恢复view自带的数据,比如edittext的输入内容等
hi @GavinThePacMan , i've walked into the same situation: try to use the AndroidKeyStore to protect our keys, but can not retrieve the raw key data after we put the...
hi @nelenkov , so do you think for the case like that, we need to protect the keys our self?
Thanks @kevjava , the reason I want to retrieve the raw key is I want to use our own ssl lib and also take advantage of the system key store...
@kevjava Thanks. The solution we came up is use two keys - One stored in Android KeyStore and used to decrypt the second key, the second key I could use...
@kevjava - Useful article! in fact, for Pre-M, we use a local keystore(basically a file) to store the key and for After-M we use the AndroidKeyStore
要合并音频得了解音频格式把,以前做过解析WAV 格式头并且进行合并的。如果格式不固定,你要么可以试试MediaPlayer onComplete的时候继续播放下一个,这样应该也能连续播放