Send a cursor to an activity from a service
问题 I'm trying to send database cursor from a service(An IntentService) to my Activity(Which implements a Receiver to catch any response from the service). Once i get the data from query cursor = db.query(DBHelper.DB_BOOKS_TABLE, columns, where, whereArgs, groupBy, having, orderBy); i would like to send back the cursor from the service to his caller thru the receiver. but the bundle structure just let me send tical data(Strings, ints, thinks like that). i know the bundle also let send parcelable