Antwort auf: Veränderungen in einer App speichern

Startseite Foren Deutsches LiveCode-Forum Veränderungen in einer App speichern Antwort auf: Veränderungen in einer App speichern

#9383
SashMo
Teilnehmer

    Aaaalso mein Stack (hab nur einen) für meine ersten Gehversuche einer Android-App sieht nun so aus:

    on shutdown
       set the defaultFolder to specialFolderPath("Documents")
       
       put the hilite of widget "SwitchButton" of card "Card" into tHilite1   
       put specialfolderpath("Documents") & "/saves.txt" into tFile
       put tHilite1 into url("file:saves.txt" & tFile)
       
    end shutdown
    
    on openstack
       put specialfolderpath("Documents") & "/saves.txt" into tFile
       
       if there is not a file tFile then
          exit openstack
       end if
       
       put url("file:saves.txt" & tFile) into tMeinePrefs
       set the hilite of widget "SwitchButton" of card "Card" to tMeinePrefs
       
    end openstack

    Es hat bisher noch nicht geklappt, dass der SwitchButton (ist ein Widget), bei einem Neustart der App seinen Zustand beibehält. Ich bin noch auf Fehlersuche. 🙂 Vielleicht hat jemand Zeit uns Lust dazu ein Kommentar abzugeben.

    Übrigens: Gibt es einen bestimmten Android-Emulator zu empfehlen damit ich nicht immer mit meinem Handy rumhantieren muss? Oder ist es egal hauptsache kann *.apk öffnen?

    Viele Grüße