Questions tagged [showcaseview]

The ShowcaseView is an Android library which showcases specific parts of an application.

ShowcaseView is an Android library designed to highlight and showcase specific parts of apps to the user with a distinctive and attractive overlay. The library shows points of interest for users, gestures, etc.

The library is based on the "Cling" view found in the Launcher on Ice-Cream Sandwich and Jelly Bean, but extended for ease of use.

167 questions
3
votes
3 answers

Android: ShowCase View show only once and repeat animation

I am using ShowCase View library in my fragments. I show a gesture animation which should be repeated until the user presses the OK button. But is only shown once. Also the showcase is shown every time the Fragment is created and not only once. My…
Mokkapps
  • 2,028
  • 9
  • 42
  • 67
3
votes
2 answers

Use ShowCaseView with ActionBarCompat / ActionBarSherlock Android

I am using ShowcaseView library from here in my android application. I want use ShowcaseView with Actionbar Compat. But i am not getting how to use it? I have tried following code but it throws NullPointerexception. Please help me solve this…
Zankhna
  • 4,570
  • 9
  • 62
  • 103
3
votes
1 answer

Showcaseview for Long Press click - Android

I want to use Showcaseview in my android application to indicate LongPress gesture. I am using ShowcaseView Library and i also reffered its sample demo app.I also searched for other sample application but couldn't get much idea. As i am new to this…
Zankhna
  • 4,570
  • 9
  • 62
  • 103
3
votes
1 answer

Undefined method errors after adding a library

I'm trying to use the ShowcaseView library, and for some reason after making the reference to this library, I'm getting a following undefined method errors: The method getActionView(MenuItem) is undefined for the type MenuItemCompat The method…
Emil Adz
  • 40,709
  • 36
  • 140
  • 187
3
votes
2 answers

ShowcaseView with gestures

I'm using the great ShowcaseView library in my project. Along with that I'm also using this awesome wrapper class ShowcaseViewExample to show the views one after the other. This works great but I'm lost as to how to use gestures. Code so far: …
input
  • 7,503
  • 25
  • 93
  • 150
2
votes
1 answer

Add Showcase / Highlight Flutter

I have the flutter code to display the showcase or highlights using https://pub.dev/packages/showcaseview/example I want to show a long description which is 3 lines, is this possible? now when my description is long it will show 1 line Showcase( …
Rohmatul Laily
  • 371
  • 3
  • 15
2
votes
1 answer

How can I use the Showcase View in a ListView Item in Flutter?

How can I use the Showcase View in a ListView Item in Flutter? I have a ListView, I want to show a showcase in any item of this list. is there any way to do this in flutter? I guess the showcaseview package doesn't support ListView items. (or I…
Ufuk Zimmerman
  • 510
  • 6
  • 18
2
votes
0 answers

How to add an Image to ShowcaseView library

I want to add a picture maybe an ImageView on top of showcaseView like in this example pic. I've researched regarding this thing but found nothing. I know this is possible , I've seen it on showcaseview's example on playstore. picture below: What I…
dens14345
  • 192
  • 1
  • 4
  • 17
2
votes
0 answers

Image in showcase view

I am using showcase view in my android app to give the users a tutorial of my app. Everything is working fine but the image displayed on screen is a circle like in the…
Ravi Kuldeep
  • 233
  • 1
  • 10
2
votes
0 answers

How to create a transparent demo screen for phonegap android app

I want to create a semi-transparent demo screen that is launched only when a user first installs my application. I looked in the internet and I found this How do you create a transparent demo screen for an Android app? which is the thing I want to…
Amirado
  • 1,053
  • 1
  • 8
  • 12
2
votes
0 answers

ShowCaseView library error with hide() method

when i use showcaseview in my device no error happen. but when run the app in emulator crash. the showcaseview work correctly until want to hide() it .this is my code : ShowcaseView showcaseView = new ShowcaseView.Builder(MainActivity.this) …
Kapta
  • 1,525
  • 14
  • 24
2
votes
1 answer

Overlay not transparent for ShowcaseView

I am using ShowcaseView (https://github.com/amlcurran/ShowcaseView) with the following code: ViewTarget target = new ViewTarget(R.id.targetButton, this); ShowcaseView sv = new ShowcaseView.Builder(this, true) .setTarget(target) …
checklist
  • 12,340
  • 15
  • 58
  • 102
2
votes
1 answer

How to target an element in a ListView with ShowcaseView in Android?

I targeted the items in an action bar using ShowcaseView, but I can't target elements of a ListView! I tried that and it didn't work: ShowcaseView sv = new ShowcaseView.Builder(this,true) .setTarget(new…
carlos kekwa
  • 39
  • 1
  • 8
2
votes
1 answer

IllegalArgumentException: Layout: -998896 < 0 in showcaseview

For some reason i get this error on a few devices such for example : is google nexus 10 or lg g3. this is the code that generates this error: mPlusButton.setClickable(false); guide.setVisibility(View.INVISIBLE); final…
kitsuneFox
  • 1,243
  • 3
  • 18
  • 31
2
votes
1 answer

Where should I put my ShowCaseView builder in this case?

I have this in my MainActivity.java: public class MainActivity extends Activity { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); …
BigBoy1337
  • 4,735
  • 16
  • 70
  • 138
1 2
3
11 12