I have an EditText in RecyclerView in which i am able to increase or decrease the quantity. Now I want to get the quantity of EditText and post it in JSON Array and send to server
Asked
Active
Viewed 88 times
0
-
Check out [retrofit](http://square.github.io/retrofit/) or [volly](https://developer.android.com/training/volley/index.html) – Stephen Apr 24 '17 at 17:11
-
I am using volley to display the list and in each row of recyclerview there is edittext and problem is to get the value from edittext and post it on server – Ameet Prajapati Apr 25 '17 at 21:13
-
Then you want to look up how to POST. I would put it into a hashmap -- i.e "key" : editText.getText().toString() and then send it. Here's a great thread that has several answers and different implementations [here](http://stackoverflow.com/a/28656935/4329778) – Stephen Apr 26 '17 at 20:29