MCPcopy Index your code
hub / github.com/deano2390/MaterialShowcaseView

github.com/deano2390/MaterialShowcaseView @1.3.7

Chat with this repo
repository ↗ · DeepWiki ↗ · release 1.3.7 ↗ · + Follow
324 symbols 677 edges 20 files 30 documented · 9%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Looking for collaborators to help maintain this library, drop me a line at me@deanwild.co.uk if you want to help.

MaterialShowcaseView

A Material Design themed ShowcaseView for Android

This library is heavily inspired by the original ShowcaseView library.

Since Google introduced the Material design philosophy I have seen quite a few apps with a nice clean, flat showcase view (the Youtube app is a good example). The only library out there however is the original one. This was a great library for a long time but the theming is now looking a bit dated.

Logo

Animation

Gradle


jitpack

Add the jitpack repo to your your project's build.gradle at the end of repositories Why?

/build.gradle

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

Then add the dependency to your module's build.gradle:

/app/build.gradle

compile 'com.github.deano2390:MaterialShowcaseView:1.3.5'

NOTE: Some people have mentioned that they needed to add the @aar suffix to get it to resolve from JitPack:

compile 'com.github.deano2390:MaterialShowcaseView:1.3.5@aar'

How to use


This is the basic usage of a single showcase view, you should check out the sample app for more advanced usage.


    // single example
    new MaterialShowcaseView.Builder(this)
        .setTarget(mButtonShow)
        .setDismissText("GOT IT")
        .setContentText("This is some amazing feature you should know about")
        .setDelay(withDelay) // optional but starting animations immediately in onCreate can make them choppy
        .singleUse(SHOWCASE_ID) // provide a unique ID used to ensure it is only shown once
        .show();




    // sequence example            
    ShowcaseConfig config = new ShowcaseConfig();
    config.setDelay(500); // half second between each showcase view

    MaterialShowcaseSequence sequence = new MaterialShowcaseSequence(this, SHOWCASE_ID);

    sequence.setConfig(config);

    sequence.addSequenceItem(mButtonOne,
        "This is button one", "GOT IT");

    sequence.addSequenceItem(mButtonTwo,
        "This is button two", "GOT IT");

    sequence.addSequenceItem(mButtonThree,
        "This is button three", "GOT IT");

    sequence.start();

Why Jitpack


Publishing libraries to Maven is a chore that takes time and effort. Jitpack.io allows me to release without ever leaving GitHub so I can release easily and more often.

Apps using MaterialShowcaseView


Learning Resources

https://medium.com/@yashgirdhar/android-material-showcase-view-part-1-22abd5c65b85

https://1bucketlist.blogspot.com/2017/03/android-material-showcase-view-1.html

https://blog.fossasia.org/tag/material-showcase-view/

License


Copyright 2015 Dean Wild

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Extension points exported contracts — how you extend this code

Shape (Interface)
Specifies a shape of the target (e.g circle, rectangle). Implementations of this interface will be responsible to draw t [8 …
library/src/main/java/uk/co/deanwild/materialshowcaseview/shape/Shape.java
IAnimationFactory (Interface)
(no doc) [4 implementers]
library/src/main/java/uk/co/deanwild/materialshowcaseview/IAnimationFactory.java
AnimationEndListener (Interface)
(no doc) [4 implementers]
library/src/main/java/uk/co/deanwild/materialshowcaseview/IAnimationFactory.java
AnimationStartListener (Interface)
(no doc) [3 implementers]
library/src/main/java/uk/co/deanwild/materialshowcaseview/IAnimationFactory.java
TooltipAnimation (Interface)
(no doc) [2 implementers]
library/src/main/java/uk/co/deanwild/materialshowcaseview/ShowcaseTooltip.java

Core symbols most depended-on inside this repo

getWidth
called by 14
library/src/main/java/uk/co/deanwild/materialshowcaseview/shape/Shape.java
setTarget
called by 10
library/src/main/java/uk/co/deanwild/materialshowcaseview/MaterialShowcaseView.java
show
called by 9
library/src/main/java/uk/co/deanwild/materialshowcaseview/ShowcaseTooltip.java
start
called by 8
library/src/main/java/uk/co/deanwild/materialshowcaseview/MaterialShowcaseSequence.java
getHeight
called by 8
library/src/main/java/uk/co/deanwild/materialshowcaseview/shape/Shape.java
build
called by 7
library/src/main/java/uk/co/deanwild/materialshowcaseview/ShowcaseTooltip.java
setText
called by 6
library/src/main/java/uk/co/deanwild/materialshowcaseview/ShowcaseTooltip.java
getContext
called by 6
library/src/main/java/uk/co/deanwild/materialshowcaseview/ShowcaseTooltip.java

Shape

Method 291
Class 21
Interface 10
Enum 2

Languages

Java100%

Modules by API surface

library/src/main/java/uk/co/deanwild/materialshowcaseview/MaterialShowcaseView.java94 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/ShowcaseTooltip.java81 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/ShowcaseConfig.java20 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/MaterialShowcaseSequence.java16 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/shape/OvalShape.java13 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/shape/CircleShape.java13 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/shape/RectangleShape.java11 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/PrefsManager.java9 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/FadeAnimationFactory.java9 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/CircularRevealAnimationFactory.java9 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/IAnimationFactory.java8 symbols
library/src/main/java/uk/co/deanwild/materialshowcaseview/shape/Shape.java7 symbols

For agents

$ claude mcp add MaterialShowcaseView \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact