@nativescript-community/preferences
公共 API,允许用户使用原生的(熟悉的)应用设置界面,而不是需要自定义 UI
npm i --save @nativescript-community/preferences
- 版本:1.3.2
- GitHub:
- NPM: https://npmjs.net.cn/package/%40nativescript-community%2Fpreferences
- 下载
- 前一天:0
- 上周:4
- 上个月:47
@nativescript-community/preferences
此插件允许在 iOS 和 Android 上进行原生首选项的保存和加载
iOS 前提条件
Android 前提条件
- 在 App_Resources/Android/xml 中创建 preferences.xml
- Android PreferenceScreen 文档
安装
描述您的插件安装步骤。理想情况下应该是这样的
tns plugin add @nativescript-community/preferences
用法
var prefs = new Preferences();
//Get existing value
prefs.getValue("name_preference");
//Set value
prefs.setValue("name_preference", "some new text");
API
属性 | 默认值 | 描述 |
---|---|---|
openSettings(): any; | 打开原生设置面板 | |
getValue(key: string): any; | 获取首选项的值 | |
setValue(key: string, value: any): void; | 将传递的值设置到首选项 |
许可证
Apache 许可证版本 2.0,2004 年 1 月