我想知道如何使用 appcelerator titan 读取偏好设置.xml 复选框的状态

发布于 2024-11-28 09:42:45 字数 928 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌伤ぢ 2024-12-05 09:42:45

我相信它可以被视为一个属性,您可以在其中执行 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') OR Ti.App.Properties.getBool('Utrecht')

see this also http://developer.appcelerator.com/question/99541/where-is-android-app-property-list-in-emulator

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文