I have recently started using Android Volley in my project. The common practice mentioned in most of the tutorials is to use it this way:
JsonObjectRequest
Create a class (like "ApiManager") that you pass the url and parameters, that creates the Volley request and keeps track of the replies and listeners. The ApiManager would typically get a callback from the calling class for the results. This way, you have to type the Volley code only once, while the logic for each call would be concise. Or, that's how I do it.