Posts

Showing posts from June, 2018

SQLite Kotlin – Notes App – Android Studio Tutorial

Image
In this tutorial we will make a "Notes App" using SQLite and Kotlin. It will contain following features. ✓Enter Data ✓Retrieve Data in ListView ✓Update/Edit Data ✓Delete Data ✓Search Data ✓Copy Data ✓Share Data Step 01:  Create a new Project  or  open new project Step 02: Create layout resource file under res>layout folder Step 03: Create new "Android Resource Directory" by clicking "res>New>Android Resource Directory", choose menu from Resource type Step 04: Create menu_main.xml by clicking "menu>New>Menu resource file"  Step 05: Create empty Activity name it as "AddNoteActivity.kt" Step 06: Create Class Note.kt Step 07: Create Class DbManager.kt Step 08: Source Code build.gradle(module:App) apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 27 defaultConfig {