Android notepad app

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

  1. Data model (Note.java) - Represents a single note
  2. Database handler (DatabaseHandler.java) - Manages SQLite database operations
  3. Note Activity (NoteActivity.java) - screen for creating/editing notes
  4. Notepad Adapter (NotepadAdapter.java) - Customer adapter for displaying notes in listview. Handles the layout of individual note items.