-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from ntoskrnl/feature/refactoring
Rectangular and custom shapes support and some refactoring
- Loading branch information
Showing
24 changed files
with
503 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 2 additions & 5 deletions
7
library/src/main/java/uk/co/deanwild/materialshowcaseview/IDetachedListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
package uk.co.deanwild.materialshowcaseview; | ||
|
||
/** | ||
* Created by deanwild on 24/08/15. | ||
*/ | ||
interface IDetachedListener { | ||
void onShowcaseDetached(MaterialShowcaseView showcaseView, boolean wasDismissed); | ||
|
||
public interface IDetachedListener { | ||
void onShowcaseDetached(MaterialShowcaseView showcaseView, boolean wasDismissed); | ||
} |
5 changes: 1 addition & 4 deletions
5
library/src/main/java/uk/co/deanwild/materialshowcaseview/IShowcaseListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
package uk.co.deanwild.materialshowcaseview; | ||
|
||
/** | ||
* Created by deanwild on 11/08/15. | ||
*/ | ||
|
||
public interface IShowcaseListener { | ||
void onShowcaseDisplayed(MaterialShowcaseView showcaseView); | ||
void onShowcaseDismissed(MaterialShowcaseView showcaseView); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.