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.
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!