Anyone has good advise on how to implement one-to-many mapping for SQLite using ContentProvider? If you look at Uri ContentProvider#insert(Ur
You can use ContentProviderOperations for this.
They are basically bulk operations with the ability to back-reference to the identifiers generated for parent rows.
How ContentProviderOperations can be used for a one-to-many design is very well explained in this answer: What are the semantics of withValueBackReference?