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 に答える