Description
This is a demo app on how to implement Room persistance library, making use of LiveData in Android app
RoomDb-Sample alternatives and similar packages
Based on the "Demo" category.
Alternatively, view RoomDb-Sample alternatives based on common mentions on social networks and blogs.
-
android-best-practices
Do's and Don'ts for Android development, by Futurice developers -
u2020
A sample Android app which showcases advanced usage of Dagger among other open source libraries. -
android-proguard-snippets
Proguard configurations for common Android libraries -
Android-Material-Examples
[Deprecated] Little bites of Material Design -
MovieGuide
Movie discovery app showcasing MVP, RxJava, Dagger 2 and Clean Architecture -
Android-ItemTouchHelper-Demo
Basic example of using ItemTouchHelper to add drag & drop and swipe-to-dismiss to RecyclerView. -
CardSlidePanel
enable users to slide card to the left or right smoothly and continuously -
socket.io-android-chat
A simple chat demo for socket.io and Android -
kotlin-sample-app
๐ Sample Android Components Architecture on a modular word focused on the scalability, testability and maintainability written in Kotlin, following best practices using Jetpack. -
android-basic-samples
Google Play game services - Android samples -
android-demo
Android common lib demo, include ImageCache, HttpCache, DropDownListView, DownloadManager, install apk silent and so on, you can find description -
BlurEffectForAndroidDesign
Sample to show how to implement blur graphical tricks -
Android-LollipopShowcase
A simple app to showcase some of the cool new cool stuff in Android L. RecyclerView, CardView, ActionBarDrawerToggle, DrawerLayout, Animations, Android Compat Design, Toolbar -
rx-android-architecture
RxJava architecture library for Android -
AndroidPushNotificationsDemo
A example of an android app that receives push notifications using MQTT. -
Android-WizardPager
Android pager-style wizard flow sample code -
Quality-Tools-for-Android
This is an Android sample app + tests that will be used to work on various project to increase the quality of the Android platform. -
AndroidDemoProjects
Collection of Small Android Projects -
MaterialTransitions
Sample material transition animations for Android -
android-layout-samples
Explorations around Android custom layouts -
android-support-23.2-sample
Sample Project for Android Support Library 23.2 -
Watch
A project which demonstrate how to develop a custom client on android for dribbble.com -
GraphView-Demos
Examples for my Android GraphView library -
Android-AOPExample
This is a simple example of Aspect Oriented Programming in Android -
hellomap-android
Quick start with the Google Maps Android API -
android-movies-demo
Sample application demonstrating Android design and animation -
ProgrammingAndroidExamples
This repo contains example code for O'Reilly's "Programming Android" by Zigured Mednieks, Laird Dornin, Blake Meike and Masumi Nakamura -
LearningAndroidYamba
This is the code that goes along with Learning Android book. -
ProgrammingAndroid2Examples
This repo contains example code for O'Reilly's "Programming Android" by Zigured Mednieks, Laird Dornin, Blake Meike and Masumi Nakamura -
u2020-mvp
[DEPRECATED] Port of Jake Wharton's U2020 sample app with use of MVP and Dagger 2 -
ViewPagerHeaderScrollDemo
ViewPagerHeaderScrollDemo -
maven-android-plugin-samples
DEPRECATED! Usage examples for Android Maven Plugin -
googletv-android-samples
Source for many GoogleTV Example applications. -
Material-Animation-Samples
Samples in Material Animation (Deprecated) -
RoboDemo
RoboDemo is a ShowCase library for Android to demonstrate to users how a given Activity works. -
Android-Notification-Example
A simple sample showing the different types of notifications on Andoid -
android_L_preview_example
This project is focused on the sample using the API's new preview version of Android-L, use of transitions, shadows etc... -
ToolbarMenudrawer
TOOLBARMENUDRAWER 2.0: http://goo.gl/J77i3z -
AndroidTVExplorer
A sample project which can be used as a base in order to develop Media Library applications for Android TV. Follow the series of blogs starting at http://www.malmstein.com/blog/2014/10/21/building-applications-for-android-tv/ in order to keep up to date with the process -
PlayPauseDrawable
This is a sample Play & Pause Drawable with morphing animation for Android -
Curve Bottom Bar
Create curve bottom navigation using this library -
CustomFontView
Custom View classes for TextView, EditText & Buttons - to set custom fonts -
Inshorts
A demo app news app for a hackathon - includes MVP architecture example -
GameOfThronesTrivia
An open source app that is refactored to demo ViewModel and LiveData -
Trailers
An open source app that is refactored to demo MVVM architecture
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of RoomDb-Sample or a related project?
README
RoomDb-Sample
This is a demo app on how to implement Room persistance library, making use of LiveData in Android app
How to implement Room: a SQLite object mapping library in your Android app? Step 1: Add following library and annotation processor to your app gradle file.
compile "android.arch.persistence.room:runtime:1.0.0"
annotationProcessor "android.arch.persistence.room:compiler:1.0.0"
Note: The reason why annotation processor is needed is because all operations like Insert, Delete, Update etc are annotated.
Step 2: Component 1 in room - Create an entity class:
This is nothing but a model class annotated with @Entity where all the variable will becomes column name for the table and name of the model class becomes name of the table. The name of the class is the table name and the variables are the columns of the table
Example: Note.java
@Entity
public class Note implements Serializable {
@PrimaryKey(autoGenerate = true)
private int id;
private String title;
private String description;
@ColumnInfo(name = "created_at")
@TypeConverters({TimestampConverter.class})
private Date createdAt;
@ColumnInfo(name = "modified_at")
@TypeConverters({TimestampConverter.class})
private Date modifiedAt;
private boolean encrypt;
private String password;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getModifiedAt() {
return modifiedAt;
}
public void setModifiedAt(Date modifiedAt) {
this.modifiedAt = modifiedAt;
}
public boolean isEncrypt() {
return encrypt;
}
public void setEncrypt(boolean encrypt) {
this.encrypt = encrypt;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
Step 3: Component 2 in room - Create a DAO class
This is an interface which acts is an intermediary between the user and the database. All the operation to be performed on a table has to be defined here. We define the list of operation that we would like to perform on table
Example: DaoAccess.java
@Dao
public interface DaoAccess {
@Insert
Long insertTask(Note note);
@Query("SELECT * FROM Note ORDER BY created_at desc")
LiveData<List<Note>> fetchAllTasks();
@Query("SELECT * FROM Note WHERE id =:taskId")
LiveData<Note> getTask(int taskId);
@Update
void updateTask(Note note);
@Delete
void deleteTask(Note note);
}
Step 4: Component 3 in room - Create Database class
This is an abstract class where you define all the entities that means all the tables that you want to create for that database. We define the list of operation that we would like to perform on table
Example: NoteDatabase.java
@Database(entities = {Note.class}, version = 1, exportSchema = false)
public abstract class NoteDatabase extends RoomDatabase {
public abstract DaoAccess daoAccess();
}
Step 5: Create the Repository class
A Repository mediates between the domain and data mapping layers, acting like an in-memory domain object collection. We access the database class and the DAO class from the repository and perform list of operations such as insert, update, delete, get
Example: NoteRepository.java
public class NoteRepository {
private String DB_NAME = "db_task";
private NoteDatabase noteDatabase;
public NoteRepository(Context context) {
noteDatabase = Room.databaseBuilder(context, NoteDatabase.class, DB_NAME).build();
}
public void insertTask(String title,
String description) {
insertTask(title, description, false, null);
}
public void insertTask(String title,
String description,
boolean encrypt,
String password) {
Note note = new Note();
note.setTitle(title);
note.setDescription(description);
note.setCreatedAt(AppUtils.getCurrentDateTime());
note.setModifiedAt(AppUtils.getCurrentDateTime());
note.setEncrypt(encrypt);
if(encrypt) {
note.setPassword(AppUtils.generateHash(password));
} else note.setPassword(null);
insertTask(note);
}
public void insertTask(final Note note) {
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
noteDatabase.daoAccess().insertTask(note);
return null;
}
}.execute();
}
public void updateTask(final Note note) {
note.setModifiedAt(AppUtils.getCurrentDateTime());
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
noteDatabase.daoAccess().updateTask(note);
return null;
}
}.execute();
}
public void deleteTask(final int id) {
final LiveData<Note> task = getTask(id);
if(task != null) {
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
noteDatabase.daoAccess().deleteTask(task.getValue());
return null;
}
}.execute();
}
}
public void deleteTask(final Note note) {
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
noteDatabase.daoAccess().deleteTask(note);
return null;
}
}.execute();
}
public LiveData<Note> getTask(int id) {
return noteDatabase.daoAccess().getTask(id);
}
public LiveData<List<Note>> getTasks() {
return noteDatabase.daoAccess().fetchAllTasks();
}
}
Note: DO NOT PERFORM OPERATION ON MAIN THREAD AS APP WILL CRASH
Sample Implementation of basic CRUD operations using ROOM 1. Insert:
NoteRepository noteRepository = new NoteRepository(getApplicationContext());
String title = "This is the title of the third task";
String description = "This is the description of the third task";
noteRepository.insertTask(title, description);
2. Update:
NoteRepository noteRepository = new NoteRepository(getApplicationContext());
Note note = noteRepository.getTask(2);
note.setEncrypt(true);
note.setPassword(AppUtils.generateHash("Password@1"));
note.setTitle("This is an example of modify");
note.setDescription("This is an example to modify the second task");
noteRepository.updateTask(note);
3. Delete:
NoteRepository noteRepository = new NoteRepository(getApplicationContext());
noteRepository.deleteTask(3);
4. Get all notes:
NoteRepository noteRepository = new NoteRepository(getApplicationContext());
noteRepository.getTasks().observe(appContext, new Observer<List<Note>>() {
@Override
public void onChanged(@Nullable List<Note> notes) {
for(Note note : notes) {
System.out.println("-----------------------");
System.out.println(note.getId());
System.out.println(note.getTitle());
System.out.println(note.getDescription());
System.out.println(note.getCreatedAt());
System.out.println(note.getModifiedAt());
System.out.println(note.getPassword());
System.out.println(note.isEncrypt());
}
}
});
5. Get single note by id:
NoteRepository noteRepository = new NoteRepository(getApplicationContext());
Note note = noteRepository.getTask(2);
And that's it! It's super simple. You can check out the official documentation here