【Android(使用SharedPreferences保存和恢复';用户首选项';值)】怀抱观古今,寝食展戏谑。这篇文章主要讲述Android:使用SharedPreferences保存和恢复';用户首选项';值相关的知识,希望能为你提供帮助。
- SharedPreferences prefs = getApplicationContext( ) .getSharedPreferences( " YourAppName" , 0) ;
- // YourAppName is just a string to identify the prefs. 0 means other apps can't see your prefs.
- prefs.getString( " lastUrl" , " " ) ; // get out a string called 'lastUrl'. " " is the return value if the preference doesn't exist
- // To change values you need an 'Editor'
- Editor edit = prefs.edit( ) ;
- edit.putString( " lastUrl" , " http://www.example.com" ) ; // save the value..
- // could make multiple changes here.
- if ( !edit.commit( ) ) {
- Log.e( " FOO" , " Failed to save prefs" ) ;
- }
推荐阅读
- AppleScript-将文本从RGB转换为CMYK颜色值
- Android(具有垂直居中控件的布局)
- Applescript-同步iPhone
- Kotlin简介(适用于人类的Android编程)
- 详细解释React Native和Cordova有哪些区别()
- Kotlin的十项功能可促进Android开发
- 适用于开发人员的Android 7.0(新功能,性能升级和你不关心的其他内容)
- iOS开发人员不知道的10个最常见错误
- 大多数Swift开发人员不知道自己犯的错误