Skip to content

Commit 6456c0f

Browse files
committed
Merge pull request #18 from ParitoshBh/master
Updated files to include new method and image optimization
2 parents 95966a6 + a29b207 commit 6456c0f

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ We saw this kind of showcase on [Fabulous App](http://www.thefabulous.co/) and w
1010
```java
1111
new MaterialIntroView.Builder(this)
1212
.enableDotAnimation(true)
13+
.enableIcon(false)
1314
.setFocusGravity(FocusGravity.CENTER)
1415
.setFocusType(Focus.MINIMUM)
1516
.setDelayMillis(500)
@@ -84,6 +85,9 @@ dependencies {
8485
.enableDotAnimation(true) //Shows dot animation center of focus area
8586
```
8687
```java
88+
.enableIcon(false) //Turn off helper icon, default is true
89+
```
90+
```java
8791
.performClick(true) //Trigger click operation when user click focused area.
8892
```
8993
```java
Loading
Loading

sample/src/main/java/co/mobiwise/sample/fragment/MainFragment.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public void onClick(View v) {
5050
private void showIntro(View view, String usageId, String text){
5151
new MaterialIntroView.Builder(getActivity())
5252
.enableDotAnimation(true)
53+
//.enableIcon(false)
5354
.setFocusGravity(FocusGravity.CENTER)
5455
.setFocusType(Focus.MINIMUM)
5556
.setDelayMillis(200)

0 commit comments

Comments
 (0)