2

i'm sorry for my bad english speaking. i am developing an android app. iwant make a user friendly help for my layouts if you see "viber" or "go backup" thease apps show a alpha layout on main layout for user helping on first run. for example see theas picture 1- main layout

enter image description here

2- when help is showing

enter image description here

how can i make something like this? any idea? thank u

Community
  • 1
  • 1
aTa
  • 641
  • 2
  • 8
  • 20

1 Answers1

2

Here are a few of my ideas of how you might do this

  • Create a popup with no background color attribute, and dim the background, then using an image view, placed overtop of the icon that you are helping the user with, show a highlighted picture of your icon

Making a popup - How to create a popup window in android?

Diming the background - Blur or dim background when Android PopupWindow active

  • Or you could create a sperate layout, by copying your original layout, putting it in a framelayout, and overlaying a dim empty image view, and putting your text view, your button, and a small highlighted icon overtop of this view

Framelayout - http://developer.android.com/reference/android/widget/FrameLayout.html

Hope this helps, if you have any questions feel free to ask

Community
  • 1
  • 1
jcw
  • 5,132
  • 7
  • 45
  • 54