sujithkanna / SmileyRating

SmileyRating is a simple rating bar for android. It displays animated smileys as rating icon.
Apache License 2.0
1.07k stars 183 forks source link

How to get each of these 5 smiley value for INSERTION INTO DATABASE? #41

Closed MuhammadFaisalIchal closed 6 years ago

MuhammadFaisalIchal commented 6 years ago

It's a marvelous library, thanks!

I know, to get current rating level, is by adding int level = mSmileRating.getRating();. But my case is, I want to send current rating level into MySql database.

If it an EditText type, I know we have to create API first by using Volley to make communication between Android and MySql database. It works well because it's a String data type. But how if the rating of the Smiley that has an int data type? How to send it?

Do you have any idea?

Currently, I'm using Mysql as database and I use PHP as server-side program language to create API, to connect between Mysql database and Android inputs.

Much appreciate any helps, thanks!

MuhammadFaisalIchal commented 6 years ago

I've found it