An Android Notepad Application that uses ListView and DatabaseHandler (SQLite) to store and display the notes. It’s a functional note-taking app that provides basic CRUD functionality.
View the code on GitHub: https://github.com/Akshat55/Android-Notepad
Core components
- Data model (Note.java) - Represents a single note
- Database handler (DatabaseHandler.java) - Manages SQLite database operations
- Note Activity (NoteActivity.java) - screen for creating/editing notes
- Notepad Adapter (NotepadAdapter.java) - Customer adapter for displaying notes in listview. Handles the layout of individual note items.