I have an app, In this signIn through the dropbox and after the signIn I got the vale of below I declared:
DropboxAPI<AndroidAuthSession> mDBApi;
我想要的是:
我希望在手机重启后使用此值(获取此值)。
Or
我想存储此永久值。
For better understand have a look on this Link :
DROPBOX_REFERENCE_LINK
对于我尝试的这个:
我做了静电但它工作正常,直到Phone开启。不代表!
使用SharedPrefrence但I have to put this value into the String
但在typeCast时,我无法将此String值转换为DropboxAPI Generic Type。
LIKE:
String s = mDBApi_From_Prefrence;
DropboxAPI<AndroidAuthSession> mDBApi = `TypeCast From String s to DropboxAPI<AndroidAuthSession>`
我该怎么做才能存储此mBDApi值PERMANENT
?