0

I have an update for my app that includes ActionBarSherlock with a sliding menu. I have put my navigation entirely in to the sliding menu, leaving my main_activity pretty bare. I am worried the user won't know about the menu. So I want to add a prompt at start-up that will highlight the new feature. Like this:

enter image description here

I am not even sure what this is called, so I don't know how to research it. Any help or suggestions will be rewarded. Thanks!

Chad Bingham
  • 32,650
  • 19
  • 86
  • 115

1 Answers1

1

You could just use overlay layout (Frame layout with multiple inner layouts will fit perfectly. Please note Frame Layout Z axis is by the lower the layout is in the xml, so the guide should be the last in the XML). Make that layout's background mostly transparent and add buttons and design to fit your needs. When you don't want to show the layout just set visibility to gone. And when you need it set to visible.

user2558461
  • 281
  • 1
  • 6
  • 21