Notepad is a simple notepad application for Android: it can read, edit and create text files from the device storage or other apps.
- Open, edit and create text files
- Cursor and selection information
- Undo actions
- Automatically close brackets and quotes:
' '
," "
,( )
,[ ]
,{ }
- Support different EOL
- Text wrapping
- Commands
/my text
: find next occurrence of my text from the current cursor positiond/my text
: delete all occurrences of my textN d/my text
: delete first N occurrences of my text (write the number instead of N)s/my text/new text
: substitute all occurrences of my text with new textN s/my text/new text
: substitute first N occurrences of my text with new text (write the number instead of N)
- Open selected text from other apps as a new text file and save it on the device
- Keyboard shortcuts
ctrl
+N
: Create a new filectrl
+O
: Open a filectrl
+Q
: Quitctrl
+S
: Savectrl
+Z
: Undoctrl
++
: Increase text sizectrl
+-
: Decrease text sizectrl
+/
: Show (or hide) command field
Download the apk from latest release tag.
With Gradle:
./gradlew :app:assembleRelease
./gradlew :app:assembleDebug
With AOSP / LineageOS:
mka notepad
Open an issue on github
notepad is licensed under the GNU General Public License v3 (GPL-3).