Skip to content

Commit 4bee00a

Browse files
Fixing tabs issue
1 parent a5b1496 commit 4bee00a

File tree

1 file changed

+2
-5
lines changed
  • articles/communication-services/how-tos/ui-library-sdk/includes/button-injection

1 file changed

+2
-5
lines changed

articles/communication-services/how-tos/ui-library-sdk/includes/button-injection/android.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ ms.service: azure-communication-services
1313
`CallCompositeCallScreenControlBarOptions`, allow the flexibility to customize the button bar by removing specific buttons such as camera, microphone, and audio controls. This API allows you to tailor the user interface according to their specific application requirements and user experience design. Just set the `visible` or `enabled` to `false` for the `CallCompositeButtonViewData` to hide or disable button.
1414

1515
#### [Kotlin](#tab/kotlin)
16-
1716
```kotlin
1817
val controlBarOptions = CallCompositeCallScreenControlBarOptions()
1918

@@ -33,6 +32,7 @@ val callComposite = CallCompositeBuilder()
3332

3433
callComposite.launch(context, locator, localOptions)
3534
```
35+
3636
#### [Java](#tab/java)
3737
```java
3838
CallCompositeCallScreenControlBarOptions controlBarOptions = new CallCompositeCallScreenControlBarOptions();
@@ -53,12 +53,10 @@ CallComposite callComposite = new CallCompositeBuilder()
5353

5454
callComposite.launch(context, locator, localOptions);
5555
```
56-
57-
56+
-----
5857
Button can be updated after launching call composite.
5958

6059
#### [Kotlin](#tab/kotlin)
61-
6260
```kotlin
6361
cameraButton.setVisible(true)
6462
```
@@ -75,7 +73,6 @@ cameraButton.setVisible(true);
7573
`Call composite` is using Fluent UI icons. You can download the icons directly from [the Fluent UI GitHub repository](https://github.com/microsoft/fluentui-system-icons/) and incorporate them into your project as needed. This approach guarantees visual consistency across all user interface elements, enhancing the overall user experience.
7674

7775
#### [Kotlin](#tab/kotlin)
78-
7976
```kotlin
8077
val controlBarOptions = CallCompositeCallScreenControlBarOptions()
8178

0 commit comments

Comments
 (0)