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 { ...