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
5
votes
1 answer

How to use ShowCaseView v5 builder with fragments?

I found examples for the legacy version, but not for the new builder pattern. Does anyone know how to do this?
Michael Litvin
  • 3,976
  • 1
  • 34
  • 40
5
votes
5 answers

Android Showcase View how to use?

Well For Showcase View I using this: https://github.com/amlcurran/ShowcaseView After importing files it gives error. this is my errors and improted .jar files Errors says in java R cannot be resolved to a variable in style error: Error…
mehmet
  • 1,558
  • 5
  • 30
  • 41
5
votes
3 answers

Using ShowcaseView with the v7 appcompat ActionBar

I'm using the ShowcaseView android library to add a welcome screen when my app is first launched. Now, on 4.0+ (and possibly 3.0, however I haven't got a device to test it) it works perfectly, however on Gingerbread, the app crashes with the…
5
votes
2 answers

How to create an info overlay in Android

I am looking for a way to create a short overlay intro of an app to display to first time users. These posts gave me some understanding of how it can be done, but not entirely: How do I create a help overlay like you see in a few Android apps and…
Daniel Larsson
  • 6,278
  • 5
  • 44
  • 82
4
votes
0 answers

MaterialShowsaseView skip option

I am using Material showcase library in my android app:- https://github.com/deano2390/MaterialShowcaseView And using sequential showcase. But I am not able to find a way to skip the showcase item on single click. Is there anyone who has done this…
Narendra Jadon
  • 148
  • 1
  • 11
4
votes
5 answers

ShowcaseView is not working without ActionBar

Is there any way to use ShowcaseView if the application has a theme Theme.AppCompat.Light.NoActionBar and using android.support.v7.widget.Toolbar in the application. I am getting below stack trace while executing the app. Please suggest...…
Shankar Prasad
  • 405
  • 6
  • 17
4
votes
1 answer

Custom ShowcaseView

I am familiar implementing ShowCaseView as helper/walkthrough, and it's working really great. Now I want to know If I can customized the showcaseview layout like adding a button on the left side of default 'OK' button. And also I want to add a 'skip…
JayR
  • 441
  • 1
  • 4
  • 16
4
votes
4 answers

ShowcaseView - width and height must be > 0

Research has been fruitless because all other references to this error seem to be reliably repeatable; I'm unable to consistently repeat this error: 08-22 17:32:25.216 22699-22699/com.smbds.punisher11 E/AndroidRuntime﹕ FATAL EXCEPTION: main …
zba
  • 103
  • 1
  • 2
  • 7
4
votes
3 answers

How to use ShowcaseView with GridView or ListView

How can ShowcaseView (library) be used with GridView or ListView? The library is https://github.com/amlcurran/ShowcaseView
user3544087
  • 49
  • 1
  • 3
4
votes
1 answer

Android: heap error importing ShowcaseView as project, ClassNotFound if as JAR, Out of Memory

I'm trying to get ShowcaseView into my Android project. I forked the repo from GitHub and tried to run the demo app, but couldn't because of a Java Heap error. Unable to execute dex: Java heap space I tried to increase Eclipse and RunConfiguration…
Marco Zanetti
  • 4,051
  • 6
  • 32
  • 48
3
votes
1 answer

Flutter showcase view not working at all without showing errors

Am using the showcase_view package and following everything mentioned in the example but it is not working at all not showing the showcase and also not showing an error. Here is my code : final _searchShowcase = GlobalKey(); BuildContext…
Ahmed Wagdi
  • 3,913
  • 10
  • 50
  • 116
3
votes
0 answers

ShowCaseView/TapTargetView implementation in Android Compose

Is there any library in Jetpack Compose which supports ShowCaseView/TapTargetView kind of implementation. I tried searching but did not find any.
Ali_Waris
  • 1,944
  • 2
  • 28
  • 46
3
votes
0 answers

Android: get coordinates of a row in a RecyclerView

I want to use a Showcase library in order to show a message in an item of a row of a RecyclerView. In order to do this, I need to pass to the library the coordinates of the item, and I do this in the adapter. The problem is that in the…
noloman
  • 11,411
  • 20
  • 82
  • 129
3
votes
2 answers

How do you change a showcaseview circle radius?

I use the master code from git repo of the showcaseview library. Since am new to setting up this library, I am not sure how one can reduce the size of the circle indicator. Some legacy code contained config options where you can set the radius, but…
Abhilash L R
  • 805
  • 1
  • 9
  • 24
3
votes
2 answers

Showcaseview NoClassDefFoundError

I added showcaseview jar into my project and use it like this ShowcaseView.ConfigOptions co = new ShowcaseView.ConfigOptions(); co.hideOnClickOutside = true; ViewTarget target = new ViewTarget(R.id.button_start_game, this); …
boroloro
  • 133
  • 2
  • 10
1
2
3
11 12