Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Adw41t committed Aug 14, 2021
2 parents b81d2b8 + e22ec89 commit 27e6dbe
Showing 1 changed file with 41 additions and 1 deletion.
42 changes: 41 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,36 @@ new GuideView.Builder(this)
.setDismissType(DismissType.outSide) //optional - default dismissible by TargetView
.build()
.show();
```
```

## Change title and Content text color

```java
new GuideView.Builder(this)
.setTitle("Guide Title Text")
.setContentText("Guide Description Text\n .....Guide Description Text\n .....Guide Description Text .....")
.setTargetView(view)
.setMessageTitleColor(Color.BLACK)//optional - default is BLACK
.setMessageContentTextColor(Color.BLACK)//optional - default is BLACK
.setDismissType(DismissType.outSide) //optional - default dismissible by TargetView
.build()
.show();
```

## Change MessageBox color and color of Line and Pointer

```java
new GuideView.Builder(this)
.setTitle("Guide Title Text")
.setContentText("Guide Description Text\n .....Guide Description Text\n .....Guide Description Text .....")
.setTargetView(view)
.setMessageBoxColor(Color.WHITE) //optional - default is WHITE
.setLineAndPointerColor(Color.WHITE) //optional - default is WHITE
.setDismissType(DismissType.outSide) //optional - default dismissible by TargetView
.build()
.show();
```

## Change Gravity

```java
Expand All @@ -112,6 +141,17 @@ new GuideView.Builder(this)
.build()
.show();
```
## use Skip for Sequence of ShowCase
```java
new GuideView.Builder(this)
.setTitle("Guide Title Text")
.setTargetView(view)
.setSkip(true,view6) // view6 is supposed to be the last target view of the sequence.
.setDismissType(DismissType.outSide) //optional - default dismissible by TargetView
.build()
.show();
```

## Set Listener
```java
Expand Down

0 comments on commit 27e6dbe

Please sign in to comment.