Android Question Pointers for comments and ratings

Rob Rendle

Member
Licensed User
Longtime User
Afternoon all,

I was wondering if any of you have ever played around with having items within your app that can be commented on by users of your app.

In my example, I have a functional remote sqlite database, where users can upload (share) their recipes. I was wondering how I'd go about letting users comment on these shared recipes and also rate them.

Has anyone done this using sqlite before?

I've tried searching for documentation but I'm not having much joy.

Perhaps I don't need a complete step by step, just a pointer to an article.

Thanks

Rob
 

KMatle

Expert
Licensed User
Longtime User
If I get you right, you have a remote database, yet where the users can already upload recipes? So just add another "rating" table and add a rate-button to your app or something like 1 to 5 stars. In that table add a column which points to the id of the recipe.
 
Upvote 0

Rob Rendle

Member
Licensed User
Longtime User
Thanks, you know what, I had that in mind (and had a ratings table in place) but I didn't believe it would be that simple.
 
Upvote 0
Top