Looking for programming help on an android project!

by edarem
4 replies
Hey, for example I am going to register in somewhere and acidentally my browser or system crashing in android. So I would like to know how to program an app which helps to revert a saved point into tabs (saving data after every type of word). Visitor only have to retype the secret code which means that the recent information is already reactivated. Which language I should learn: java/c++/javascript or should I have to learn something else. Any sites or examples are welcome about the documentation.
#progamming
  • Profile picture of the author 4umNinja
    learning how to use cookies is what I feel you are looking for .. this isn't an easy task however.

    I feel it really depends on where the failure point exists as to where the cookie might need to save the users data into browsers cache.

    Check out JavaScript Cookies, or JavaScript - Cookies.
    Javascript is the way to go, but you need to have a solid foundation of how the web works with basic http services first.
    Signature
    “When you really want something, the whole universe conspires in helping you to achieve it.” ― Paulo Cohelo

    Check Out My Videos On YouTube
    {{ DiscussionBoard.errors[9457028].message }}
  • Profile picture of the author edarem
    Thanks for the advice! Any other opionions out there?

    Yes, also that application have to save all the data after every type of word. But the point is where I have to store the data and how, because the info is from registration fields. I want to build an app which saves the data from fulfilled blanks. Only secret questions or codes you have to retype.
    {{ DiscussionBoard.errors[9458850].message }}
    • Profile picture of the author David B
      It sounds like you are referring to a browser running on android as opposed to an Android application. In that case the options are the same regardless of which browser/device you are using. You would need to store the information on your server as the enter the information from previous pages/tabs and associate it with some identifier from the users browser, likely a cookie as mentioned above so it persists after a browser restart.

      From the coding standpoint, this would be the same as coding tabs that communicate between each step with your webserver to store each piece of information. This is not typically what jquery and other javascript libraries that display tabs on a user browser usually do, they usually gather all the information from all tabs and then submit it. You would need to deal with the situation where you have partial information stored.

      I have done this in the past with some minimal user registration where I associate an ID with a customer as soon as I have an email address and then continue to add information to their user profile as they add it over time.
      {{ DiscussionBoard.errors[9468463].message }}
  • Profile picture of the author edarem
    I see, have to be a programmer with solid skills to program it.
    {{ DiscussionBoard.errors[9478254].message }}

Trending Topics