---
title: "Customize note editor on Android | Nutrient SDK"
canonical_url: "https://www.nutrient.io/guides/android/customizing-the-interface/customizing-the-note-editor/"
md_url: "https://www.nutrient.io/guides/android/customizing-the-interface/customizing-the-note-editor.md"
last_updated: "2026-06-09T10:25:14.356Z"
description: "Customize the note editor on Android with Nutrient Android SDK. Control content sharing and annotation reply features to enhance user interaction and experience."
---

# Customizing the note editor on Android

When editing or viewing note annotations or the content of other annotations, the note editor is displayed. This UI component will adjust its appearance based on the annotation being edited/viewed. For example, the color will change to the color of the annotation and the content will be displayed in cards. Note that the note editor is only accessible if your license and configuration allows it.

Meanwhile, the few parts of the UI that you can control by default are the ones dependent on the [`PdfConfiguration`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.configuration/-pdf-configuration/index.html).

## Enable/disable content sharing

Sharing note content, including replies, is enabled by default. You can disable it using [`PdfConfiguration.Builder#sharingNoteEditorContentEnabled`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.configuration.sharing/-share-features/-n-o-t-e_-e-d-i-t-o-r_-c-o-n-t-e-n-t_-s-h-a-r-i-n-g/index.html):

### KOTLIN

```kotlin

val configuration = PdfConfiguration.Builder().sharingNoteEditorContentEnabled(false).build()

```

### JAVA

```java

PdfConfiguration configuration = new PdfConfiguration.Builder().sharingNoteEditorContentEnabled(false).build();

```

## Enable, disable, or make replies read-only

Changing annotation reply features in the [`PdfConfiguration`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.configuration/-pdf-configuration/index.html) will control how they appear in the note editor UI. Using [`PdfConfiguration.Builder#annotationReplyFeatures`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.configuration/-pdf-configuration/-builder/annotation-reply-features.html), you can set an [`AnnotationReplyFeatures`](https://www.nutrient.io/api/android/nutrient/com.pspdfkit.configuration.annotations/-annotation-reply-features/index.html) enum that can be one of these three values:

- `DISABLED` — The annotation reply UI is disabled completely.

- `ENABLED` — The annotation reply UI is enabled.

- `READ_ONLY` — The annotation reply UI is enabled but read-only.

### KOTLIN

```kotlin

val configuration = PdfConfiguration.Builder().annotationReplyFeatures([DISABLED|ENABLED|READ_ONLY]).build()

```

### JAVA

```java

PdfConfiguration configuration = new PdfConfiguration.Builder().annotationReplyFeatures([DISABLED|ENABLED|READ_ONLY]).build();

```
---

## Related pages

- [Customizing the form editing toolbar on Android](/guides/android/customizing-the-interface/using-form-ui-within-fragment.md)
- [Customizing our PDF viewer on Android](/guides/android/user-interface.md)
- [Localization: Change languages in our Android PDF viewer](/guides/android/features/localization.md)
- [Customizing PDF viewer styling on Android](/guides/android/customizing-the-interface/appearance-styling.md)
- [Customizing dialog modals on Android](/guides/android/customizing-the-interface/modal-dialogs-styling.md)
- [Customize toolbar menus on Android](/guides/android/customizing-the-interface/customizing-menus.md)
- [Overlay views on Android](/guides/android/features/overlay-views.md)
- [Hide or customize scrollbars in our Android viewer](/guides/android/customizing-the-interface/scrollbars.md)
- [Separate the document info view in our Android viewer](/guides/android/user-interface/separate-document-info.md)
- [Customizing the electronic signature UI on Android](/guides/android/customizing-the-interface/configuring-the-signaturepickerfragment.md)
- [Customizing the thumbnail file viewer on Android](/guides/android/customizing-the-interface/customizing-the-thumbnail-bar.md)
- [Show or hide the UI in our Android viewer](/guides/android/customizing-the-interface/user-interface-visibility.md)

