1

i recently created a application so i want to give a descreption or help to the application .

Like a hint or alert so that user can refer this and if he want this show every time or on first time like this

so after installing the app should give this notice if user dont want that notice he can hide it for ever.. How to show this kind of alert.. i tried with alert but it always displays i want it just like this

enter image description here

  • 3
    It is simple custom dialog in android and you can use this as per your requirement.check [this](http://stackoverflow.com/questions/13341560/how-to-create-a-custom-dialog-box-in-android/13342157#13342157) – Chintan Khetiya Dec 25 '13 at 06:36
  • This sis also fine chintan khetiya sir.. i am not checking your comment.. i am seeing answer, thankyou –  Dec 25 '13 at 07:26

4 Answers4

0

did you check this library, i found it really usefull : https://github.com/amlcurran/ShowcaseView

R00t
  • 186
  • 1
  • 2
  • 14
0

The second one is quiet easier then the previous one and its nothing but an AlertDialog and you may keep track of it by persisting its state via shared-preferences or Sqlite Db.

And for the previous case without googling for an opensource project I would recommend you to create your own RelativeLayout and place some imageViews at the respective positions and for persisting the states go by the above mentioned methodology.

Prateek
  • 3,923
  • 6
  • 41
  • 79
0

You are supposed to create simple custom alertdialog with the custom layout as show HERE

GrIsHu
  • 29,068
  • 10
  • 64
  • 102
  • Sorry grishma dixit mam.. Thanks a lot i am working with this but finally its worked, i am new to android so i used to copy paste but i need to change my way.. i got that code just i need little bit practice... –  Dec 25 '13 at 07:15
  • Thanks a Lot for And advance Happy new year.. may be you are elder or younger than me but i will respect every one with sir or medam.. so please ignore. that..Thank you –  Dec 25 '13 at 07:19
  • 1
    Happy New Year to you also. :) – GrIsHu Dec 25 '13 at 07:21
0

use one transparent layout and maintain your help text on it, using images to draw the layout. check this link it gives some idea for that help layout.

link

Community
  • 1
  • 1
balaji koduri
  • 1,321
  • 9
  • 25