我想知道如何使用 appcelerator titan 读取偏好设置.xml 复选框的状态
我正在使用 Titanium Appcelerator 构建 Android 应用程序。我已经成功地使用下面的preferences.xml 创建了一个首选项屏幕。我试图弄清楚如何查看该复选框是否被选中。
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="Instellingen kortingen">
<PreferenceCategory android:title="Plaats">
<CheckBoxPreference
android:title="Almere"
android:defaultValue="false"
android:key="checkbox" />
<CheckBoxPreference
android:title="Amsterdam"
android:defaultValue="false"
android:key="checkbox" />
<CheckBoxPreference
android:title="Lelystad"
android:defaultValue="false"
android:key="checkbox" />
<CheckBoxPreference
android:title="Utrecht"
android:defaultValue="false"
android:key="checkbox" />
</PreferenceCategory>
I'm using Titanium Appcelerator to build a App for Android. And i have succeeded in creating a preference screen with the preferences.xml below. I'm trying to figure out how i can see if the checkbox is selected or not.
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="Instellingen kortingen">
<PreferenceCategory android:title="Plaats">
<CheckBoxPreference
android:title="Almere"
android:defaultValue="false"
android:key="checkbox" />
<CheckBoxPreference
android:title="Amsterdam"
android:defaultValue="false"
android:key="checkbox" />
<CheckBoxPreference
android:title="Lelystad"
android:defaultValue="false"
android:key="checkbox" />
<CheckBoxPreference
android:title="Utrecht"
android:defaultValue="false"
android:key="checkbox" />
</PreferenceCategory>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信它可以被视为一个属性,您可以在其中执行
Ti.App.Properties.getString('Utrecht')
或Ti.App.Properties.getBool('Utrecht')
代码>另请参阅 http://developer.appcelerator.com/question/99541/where-is-android-app-property-list-in-emulator
I believe it can be treated as a property where you do a
Ti.App.Properties.getString('Utrecht')
ORTi.App.Properties.getBool('Utrecht')
see this also http://developer.appcelerator.com/question/99541/where-is-android-app-property-list-in-emulator