VolleyBall

Additional

Language
Java
Version
N/A
Created
Sep 5, 2017
Updated
Nov 18, 2017 (Retired)
Owner
Ankur Yadav (ankuryadav7)
Contributor
Ankur Yadav (ankuryadav7)
1
Activity
Badge
Generate
Download
Source code

VolleyBall

It's a networking library. You can call RESTful APIs in your project by using this.

Gradle

dependencies {
    ...
   compile 'com.ankuryadav.lib:volleylib:1.0.3'
}

Maven

dependencies {
    ...
   <dependency>
       <groupId>com.ankuryadav.lib</groupId>
       <artifactId>volleylib</artifactId>
       <version>1.0.3</version>
       <type>pom</type>
   </dependency>
}

Below are the simple steps by which you can integrate VolleyBall library in your project.

  • Step 1-->> Add "VolleyResponseListener" in your main class or fragment. By implementing this you will get below two methods.
 @Override
    public void volleyResponse(String response, String type) {
        Log.w("VolleyBall response",response+"");
    }

    @Override
    public void responseError(String volleyError) {
        Log.w("VolleyBall error",volleyError+"");
    }
  • Step 2-->> Take a refrence of "VolleyRequest" in an activity
public class MainActivity extends AppCompatActivity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        VolleyRequest volleyRequest=new VolleyRequest(this);
    }
}

Take a refrence of "VolleyRequest" in a fragment

public class DemoFragment extends Fragment{
   
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View v=inflater.inflate(R.layout.demo_fragment, container, false);
       
    VolleyRequest volleyRequest=new VolleyRequest(this);
    return v;
   
  }
}
  • REST call
 VolleyRequest volleyRequest=new VolleyRequest(this);
        Map<String, String> params = new Hashtable<String, String>();
        params.put("email",   "xyz@mail.com");
        params.put("password", "123456");
        
 volleyRequest.stringPostCall("http://xyz.com/app/json/login?",params,"LOGIN");

Developed By

Ankur Yadav- ankuryadavaj729@gmail.com