Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what are best practices for showing help information

Tags:

android

I would like to put fairly extensive help information within my app - both "how to use" and explanation of what one is seeing.

The app (map oriented) has a row of buttons at the bottom, and I was considering adding a help button.

Context sensitive help is mostly not appropriate, btw.

What are common and best practices for this?

Thanks

like image 728
Mesocyclone Avatar asked Feb 20 '11 19:02

Mesocyclone


1 Answers

I wouldn't suggest using a help button, once the user knows how to use your app it will be useless, and will only takes some space.

What I do (but it's maybe not the best practice) is to show a popup on the first use. Within the popup I put some basic help and a link to my website which fully explains how my app works (with some screenshots to make it user-friendly). I also put a "Help" button in the activity menu which redirects to my website again.

What I can suggest is to explore by yourself how other android apps shows the help information, and reuse or adapt the one you prefer (this is what I've done).

like image 57
Dalmas Avatar answered Oct 05 '22 22:10

Dalmas