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>
4

1 回答 1

0

我相信它可以被视为您进行Ti.App.Properties.getString('Utrecht')OR的财产Ti.App.Properties.getBool('Utrecht')

另见http://developer.appcelerator.com/question/99541/where-is-android-app-property-list-in-emulator

于 2011-08-08T11:52:04.983 回答