Reputation: 4234
i need to add an help window to my android application. But actually i don't know how to do it if there is a best practice, or some prepare objects.
I simply want to add an help option in the application menu, and when it is chooesed the help is showed. What is the best way to do that?
I think about several solution, but i'm not sure they are good.
They are good ideas? Btw what is the best way to provide a basic help page into an android application?
Thanks.
Upvotes: 2
Views: 1674
Reputation: 12367
Is suitable if your amount of help is small and does not need formatting
Is good for formatted text, bigger amounts of text and does not require internet connection or your server to be present when user likes to have help
Is the most flexible, as you can change help information without updating application, but requires dedicated web page and internet connection.
Now it's your choice. My personal preference is #2.
Upvotes: 2
Reputation: 20567
What you want to do is make a xml layout containing all the help information and just create an activity that displays it, if you need help with code just ask me.
Upvotes: 1