Back to project page khandroid.
The source code is released under:
Apache License
If you think the Android project khandroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.khandroid.volley; /*from w w w . j a va2s . com*/ import com.android.volley.toolbox.StringRequest; public class GetStringRequestBuilder extends RequestBuilder<String> { public GetStringRequestBuilder(String url) { super(url); } @Override public StringRequest build() { StringRequest ret = null; ret = new StringRequest(buildUriString(), getSuccessListener(), getErrorListener()); return ret; } }