CheckBoxPreference und ListPreference

  • hallo zusammen,
    ich steh grad auf dem Schlauch :(



    Mit CheckBoxPreference und ListPreference biete ich dem Nutzer an, diverse Einstellungen zu tätigen.
    Zum Zeitpunkt der App-Installation ist keine der Optionen als aktiv markiert.


    Kann ich das ändern und einzelne Optionen vorbelegen?
    wenn ja, wie ?


    ich danke euch




    Gruss KHH

  • Du kannst die Optionen in deiner XML vorbelegen -> stichwort defaultValue



    Java
    <?xml version="1.0" encoding="utf-8"?><PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">  <EditTextPreference android:title="Your Name"                      android:key="username"                       android:summary="Please provide your username"></EditTextPreference>  <CheckBoxPreference android:title="Application Updates"                      android:defaultValue="false"                      android:summary="This option if selected will allow the application to check for latest versions."                      android:key="applicationUpdates" />  <ListPreference 	android:title="Download Details"                      android:summary="Select the kind of data that you would like to download"                      android:key="downloadType"                      android:defaultValue="1"                      android:entries="@array/listArray"                      android:entryValues="@array/listValues" />  </PreferenceScreen>


    hier mal ein Tutorial zum ganzen Prefs quatsch


    http://www.rominirani.com/android-preferences-tutorial/

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!