You cannot save items in Recyclerview. Its only meant for Listing out items in your UI.
What You should do is to store data inside SQLite DB and show it in recyclerview in activities onResume or onCreate Callback
Check here for SQLite and RecyclerView Implementation
solved Saving Items with RecyclerView