Can anyone provide me with the guidelines on how to retrieve a list of recently opened files in a folder?
In my application, I have a folder which contains .epub
files.
I would like to display a sorted list of recently read/opened books by the user.
The problem is actually not so trivial. There are two reasons - history's persistence and IO blocking operations.
In fact to ensure persistence of history we can use some solutions:
So, I used second method. In memory I keep just
ArrayList<Uri>
, and to save it to file I convert it toList<String>
, asandroid.net.Uri
doesn't support serialisation. In internal memory I save serialised object usingObjectIOStream
.So, see the code:
As you can see, internal storage is use to keep that file. So, there is no need to add any additional permissions. Synchronisation is ensured by using executor which will execute all request, one by one, so even if IO will be slow order or requests will be saved.
We do not block thread with IO operations, because all operations using IO are on
WorkerThread
. About the result we will be notified viaLiveData
fromandroid.arch.
In my opinion this is kind of the simplest solution. If we need to keep stats, dates etc. we can save
List<MyHistoryEntry>
, as longMyHistoryEntry
will be serialisable.As a better approach I would suggest to use database (easier migration etc.).