0

I want to show a UI for explaining the app.It exists in many apps. It's shown when the user start the app for the first time. Unfortunately I don't have an image to explain, so I hope somebody will understand what I'm talking about.

Thanks.

tiny sunlight
  • 6,231
  • 3
  • 21
  • 42
Dgotlieb
  • 1,393
  • 2
  • 9
  • 15

3 Answers3

3

I recommend to do prior searching before posting a question.

Anyways here are couple of libraries which will definitely help you to achieve your goal.

  1. ShowCaseView but it's kind of out-dated.
  2. AppIntro most of the latest apps show something like this as intro to app for users. And it also is Material.
    1. MaterialIntro is another good library which can provide an intro for users
Prejith P
  • 195
  • 3
  • 12
Akshay Chordiya
  • 4,761
  • 3
  • 40
  • 52
0

I think you ask for Use ShowCase View

https://github.com/Espiandev/ShowcaseView

teobais
  • 2,820
  • 1
  • 24
  • 36
Pitty
  • 1,907
  • 5
  • 16
  • 34
0

Use ShowcaseView Library, Add by:

compile 'com.github.amlcurran.showcaseview:library:5.4.0'

To use it:

new ShowcaseView.Builder(this) .setTarget(new ActionViewTarget(this, ActionViewTarget.Type.HOME)) .setContentTitle("ShowcaseView") .setContentText("This is highlighting the Home button") .hideOnTouchOutside() .build();
Nirel
  • 1,855
  • 1
  • 15
  • 26