http://stackoverflow.com/questions/10216937/how-do-i-create-a-help-overlay-like-you-see-in-a-few-android-apps-and-ics
– Nibha JainOct 23 '12 at 11:23
Try these links: http://www.tumblr.com/tagged/android-layout http://stackoverflow.com/questions/10216937/how-do-i-create-a-help-overlay-like-you-see-in-a-few-android-apps-and-ics and [sample project](https://github.com/pranayairan/AndroidExamples/tree/master/AndroidHelpOverlay)
– Vineet ShuklaOct 23 '12 at 11:21
2
The one part of the above diagram that will be more difficult than the one in the linked-to question from your answer is the "Tap to Reload" hint. That points to a specific action bar item (or what would be an action bar item if the screenshot were actually of an Android app... :-). Finding the on-screen coordinates of that item may be trouble. With respect to the sample project, that will only work for *very* simple "coach marks", as it uses a simple PNG file. That PNG file may not work well in landscape, for example.
– CommonsWareOct 23 '12 at 11:25
Whilst this may theoretically answer the question, [it would be preferable](http://meta.stackexchange.com/q/8259) to include the essential parts of the answer here, and provide the link for reference.
– ThiefMasterOct 23 '12 at 12:43
1
You can put your activity content in a FrameLayout and add an additional view with such marks. If you don't want to get implement int yourself, check out this project https://github.com/Espiandev/ShowcaseView
– Korniltsev AnatolyOct 23 '12 at 11:25
Try this: http://stackoverflow.com/questions/10216937/how-do-i-create-a-help-overlay-like-you-see-in-a-few-android-apps-and-ics/17091481#17091481
– Oded BreinerOct 30 '14 at 08:13