> For the complete documentation index, see [llms.txt](https://chat-sdk.gitbook.io/android/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://chat-sdk.gitbook.io/android/api/tab-customization.md).

# Tab Customization

Check out the custom tabs example.

Add a tab:

```java
ChatSDK.ui().setTab(title, drawable, fragment, 1);
```

Remove a tab:

```java
ChatSDK.ui().removeTab(1);
```
