You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -131,7 +131,7 @@ You can create an instance of the Balloon with Java by using the `Balloon.Builde
131
131
<details>
132
132
<summary>Keep reading for more details</summary>
133
133
134
-
You can create an instance of the Balloon as the following example below:
134
+
You can create an instance of the Balloon as the following example below:
135
135
```java
136
136
Balloon balloon =newBalloon.Builder(context)
137
137
.setArrowSize(10)
@@ -225,7 +225,7 @@ lifecycleScope.launch {
225
225
awaitBalloons {
226
226
// dismissing of any balloon dismisses all of them. Default behaviour
227
227
dismissSequentially =false
228
-
228
+
229
229
textView.alignTop(balloonAlignTop)
230
230
textView.alignStart(balloonAlignStart)
231
231
textView.alignEnd(balloonAlignEnd)
@@ -317,7 +317,7 @@ We can decide the position of the arrow depending on the aligning rules with the
317
317
We can decide the orientation of the arrow depending on the aligning rules with the `ArrowOrientationRules`.<br>
318
318
```kotlin
319
319
// Align depending on the position of an anchor.
320
-
// For example, `arrowOrientation` is ArrowOrientation.TOP and
320
+
// For example, `arrowOrientation` is ArrowOrientation.TOP and
321
321
// we want to show up the balloon under an anchor using the `Balloon.showAlignBottom`.
322
322
// However, if there is not enough free space to place the tooltip at the bottom of the anchor,
323
323
// tooltips will be placed top of the anchor and the orientation of the arrow will be `ArrowOrientation.BOTTOM`.
@@ -416,7 +416,7 @@ We can customize the icon on the balloon.
416
416
417
417
### IconForm
418
418
`IconForm` has some attributes for `ImageView` to customize the icon of the Balloon. You can create the `IconForm` instance and reuse it on multiple Balloons.
@@ -539,7 +539,7 @@ val balloon = Balloon.Builder(context)
539
539
That's all. If you need to get Views or need some interactions, you can get your custom layout with the `getContentView()` method from your instance of the Balloon.
0 commit comments