Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/DWorkS/VolleyPlus
/ types & classes
Types & classes
161 in github.com/DWorkS/VolleyPlus
⨍
Functions
990
◇
Types & classes
161
Class
AboutActivity
sample/src/com/volley/demo/AboutActivity.java:26
Class
AdWrapper
A Wrapper which wraps AdView along with loading the view aswell
sample/src/com/volley/demo/util/AdWrapper.java:18
Class
AndroidAuthenticator
An Authenticator that uses {@link AccountManager} to get auth tokens of a specified type for a specified account.
library/src/com/android/volley/toolbox/AndroidAuthenticator.java:33
Class
ApplicationController
library/src/com/android/volley/ApplicationController.java:7
Class
AsyncRequestLoader
Created by HaKr on 12/08/15.
library/src/com/android/volley/AsyncRequestLoader.java:18
Class
AsyncTask
Copied from JB release framework: https://android.googlesource.com/platform/frameworks/base/+/jb-release/core/java/android/os/AsyncTask.java so that
library/src/com/android/volley/misc/AsyncTask.java:198
Class
AsyncTaskResult
library/src/com/android/volley/misc/AsyncTask.java:684
Class
AuthFailureError
Error indicating that there was an authentication failure when performing a Request.
library/src/com/android/volley/error/AuthFailureError.java:26
Interface
Authenticator
An interface for interacting with auth tokens.
library/src/com/android/volley/toolbox/Authenticator.java:24
Class
BaseInputStreamFactory
library/src/com/android/volley/misc/ImageUtils.java:347
Class
BasePart
library/src/com/android/volley/toolbox/multipart/BasePart.java:13
Class
BasicNetwork
A network performing Volley requests over an {@link HttpStack}.
library/src/com/android/volley/toolbox/BasicNetwork.java:57
Class
BatchedImageRequest
Wrapper class used to map a Request to the set of active ImageContainer objects that are interested in its results.
library/src/com/android/volley/toolbox/ImageLoader.java:493
Class
BitmapCache
This class holds our bitmap caches (memory and disk).
library/src/com/android/volley/cache/BitmapCache.java:35
Class
BitmapImageCache
This class holds our bitmap caches (memory and disk).
library/src/com/android/volley/cache/BitmapImageCache.java:39
Class
Boundary
library/src/com/android/volley/toolbox/multipart/Boundary.java:14
Class
BuildConfigs
library/src/com/android/volley/BuildConfigs.java:6
Class
ByteArrayPool
ByteArrayPool is a source and repository of <code>byte[]</code> objects. Its purpose is to supply those buffers to consumers who need to use them for
library/src/com/android/volley/toolbox/ByteArrayPool.java:54
Class
ByteRequest
library/src/com/android/volley/request/ByteRequest.java:10
Interface
Cache
An interface for a cache keyed by a String with a byte array as data.
library/src/com/android/volley/Cache.java:25
Class
CacheDispatcher
Provides a thread for performing cache triage on a queue of requests. Requests added to the specified cache queue are resolved from cache. Any delive
library/src/com/android/volley/CacheDispatcher.java:33
Class
CacheHeader
library/src/com/android/volley/cache/DiskBasedCache.java:344
Class
CacheHeader
library/src/com/android/volley/error/DiskBasedCache.java:355
Class
ClearCacheRequest
A synthetic request used for clearing the cache.
library/src/com/android/volley/request/ClearCacheRequest.java:30
Class
ClientError
Indicates that the server responded with an error response indicating that the client has erred. For backwards compatibility, extends ServerError whi
library/src/com/android/volley/error/ClientError.java:27
Class
CountingInputStream
library/src/com/android/volley/misc/CountingInputStream.java:7
Class
CountingOutputStream
library/src/com/android/volley/misc/CountingOutputStream.java:9
Class
DataInputStreamFactory
library/src/com/android/volley/misc/ImageUtils.java:362
Class
DefaultRetryPolicy
Default retry policy for requests.
library/src/com/android/volley/DefaultRetryPolicy.java:24
Class
DiskBasedCache
Cache implementation that caches files directly onto the hard disk in the specified directory. The default disk usage size is 5MB, but is configurable
library/src/com/android/volley/cache/DiskBasedCache.java:44
Class
DiskBasedCache
Cache implementation that caches files directly onto the hard disk in the specified directory. The default disk usage size is 5MB, but is configurable
library/src/com/android/volley/error/DiskBasedCache.java:55
Class
DiskLruBasedCache
Cache implementation that caches files directly onto the hard disk in the specified directory using DiskLruCache
library/src/com/android/volley/cache/DiskLruBasedCache.java:32
Class
DiskLruCache
A cache that uses a bounded amount of space on a filesystem. Each cache entry has a string key and a fixed number of values. Each key must match the r
library/src/com/android/volley/misc/DiskLruCache.java:92
Class
DiskLruImageCache
Implementation of DiskLruCache by Jake Wharton modified from http://stackoverflow.com/questions/10185898/using-disklrucache-in-android-4-0-does-not-pr
library/src/com/android/volley/cache/DiskLruImageCache.java:25
Class
DownloadRequest
A canned request for retrieving the response body at a given URL as a String.
library/src/com/android/volley/request/DownloadRequest.java:37
Class
Editor
Edits the values for an entry.
library/src/com/android/volley/misc/DiskLruCache.java:706
Class
EndlessScrollListener
Detects when user is close to the end of the current page and starts loading the next page so the user will not have to wait (that much) for the next
sample/src/com/volley/demo/ExampleNetworkListView.java:161
Class
Entry
Data and metadata for an entry returned by the cache.
library/src/com/android/volley/Cache.java:77
Class
Entry
library/src/com/android/volley/misc/DiskLruCache.java:864
Interface
ErrorListener
Callback interface for delivering error responses.
library/src/com/android/volley/Response.java:35
Class
ExampleCookies
Demonstrates how to use cookies. <p> When pressing "Execute request" app executes the request, server reads the cookie (if present), increases it with
sample/src/com/volley/demo/ExampleCookies.java:55
Class
ExampleGsonRequest
Demonstrates how to use Volley along with Gson @author Ognyan Bankov
sample/src/com/volley/demo/ExampleGsonRequest.java:38
Class
ExampleImageLoading
Demonstrates how to execute request that loads an image and sets it to <code>ImageView</code> @author Ognyan Bankov
sample/src/com/volley/demo/ExampleImageLoading.java:34
Class
ExampleJsonRequest
Demonstrates how to execute <code>JsonObjectRequest</code> @author Ognyan Bankov
sample/src/com/volley/demo/ExampleJsonRequest.java:41
Class
ExampleNetworkListView
Demonstrates: 1. ListView which is populated by HTTP paginated requests; 2. Usage of NetworkImageView; 3. "Endless" ListView pagination with read-ahea
sample/src/com/volley/demo/ExampleNetworkListView.java:52
Class
ExampleNewHttpClient
Demonstrates how to use external HttpClient. You may want this approach if you need to use newer version of HttpClient. Basically this demo does exact
sample/src/com/volley/demo/ExampleNewHttpClient.java:45
Class
ExampleParams
Demonstrates how to send GET and POST parameters. Values of the EditText fields are send to the server, they are added and the sum is returned as resu
sample/src/com/volley/demo/ExampleParams.java:47
Class
ExampleSimpleRequest
Demonstrates how to execute "plain" HTTP request, i.e. non-JSON. @author Ognyan Bankov
sample/src/com/volley/demo/ExampleSimpleRequest.java:39
Class
ExampleSsSslHttpClient
Demonstrates how to execute HTTPS request against server with self-signed certificate. @author Ognyan Bankov
sample/src/com/volley/demo/ExampleSsSslHttpClient.java:43
Class
ExecutorDelivery
Delivers responses and errors.
library/src/com/android/volley/ExecutorDelivery.java:28
Class
Exif
library/src/com/android/volley/misc/Exif.java:24
Class
ExtHttpClientStack
sample/src/com/volley/demo/misc/ExtHttpClientStack.java:52
Class
FaultHidingOutputStream
library/src/com/android/volley/misc/DiskLruCache.java:821
Class
FilePart
@author <a href="mailto:vit at cleverua.com">Vitaliy Khudenko</a>
library/src/com/android/volley/toolbox/multipart/FilePart.java:27
Class
GZipRequest
A canned request for retrieving the parse the gzip response body at a given URL as a String using a GZIPInputStream.
library/src/com/android/volley/request/GZipRequest.java:17
Class
GsonRequest
Volley adapter for JSON requests that will be parsed into Java objects by Gson.
library/src/com/android/volley/request/GsonRequest.java:22
Interface
HorizontallyScrollable
Interface for components that are internally scrollable left-to-right.
library/src/com/android/volley/misc/Utils.java:58
Class
HttpClientStack
An HttpStack that performs request over an {@link HttpClient}.
library/src/com/android/volley/toolbox/HttpClientStack.java:59
Class
HttpDelete
The HttpDelete class which extends HttpEntityEnclosingRequestBase instead HttpRequestBase
library/src/com/android/volley/toolbox/HttpClientStack.java:265
Class
HttpHeaderParser
Utility methods for parsing HTTP headers.
library/src/com/android/volley/toolbox/HttpHeaderParser.java:34
Class
HttpPatch
The HttpPatch class does not exist in the Android framework, so this has been defined here.
library/src/com/android/volley/toolbox/HttpClientStack.java:233
Interface
HttpStack
An HTTP stack abstraction.
library/src/com/android/volley/toolbox/HttpStack.java:30
Class
HurlStack
An {@link HttpStack} based on {@link HttpURLConnection}.
library/src/com/android/volley/toolbox/HurlStack.java:60
Interface
IHeadersProvider
library/src/com/android/volley/toolbox/multipart/BasePart.java:16
Class
IOUtils
library/src/com/android/volley/misc/IOUtils.java:12
Class
ImageAdapter
The main adapter that backs the GridView. This is fairly standard except the number of columns in the GridView is used to create a fake top row of emp
sample/src/com/volley/demo/SimpleCacheFragment.java:212
Class
ImageArrayAdapter
sample/src/com/volley/demo/util/ImageArrayAdapter.java:34
Interface
ImageCache
Simple cache adapter interface. If provided to the ImageLoader, it will be used as an L1 cache before dispatch to Volley. Implementations must not blo
library/src/com/android/volley/toolbox/ImageCache.java:10
Class
ImageCacheParams
A holder class that contains cache parameters.
library/src/com/android/volley/cache/DiskLruBasedCache.java:222
Class
ImageContainer
Container object for all of the data surrounding an image request.
library/src/com/android/volley/toolbox/ImageLoader.java:419
Class
ImageDetailActivity
sample/src/com/volley/demo/ImageDetailActivity.java:42
Class
ImageDetailFragment
This fragment will populate the children of the ViewPager from {@link ImageDetailActivity}.
sample/src/com/volley/demo/ImageDetailFragment.java:33
Class
ImageEntry
Holds the data for Picasa photo that is used in the {@link ExampleNetworkListView} @author Ognyan Bankov (ognyan.bankov@bulpros.com)
sample/src/com/volley/demo/util/ImageEntry.java:28
Interface
ImageListener
Interface for the response handlers on image requests. The call flow is this: 1. Upon being attached to a request, onResponse(response, true) will b
library/src/com/android/volley/toolbox/ImageLoader.java:170
Class
ImageLoader
Helper that handles loading and caching images from remote URLs. The simple way to use this class is to call {@link ImageLoader#get(String, ImageList
library/src/com/android/volley/toolbox/ImageLoader.java:51
Interface
ImageLoaderProvider
Interface an activity can implement to provide an ImageLoader to its children fragments.
library/src/com/android/volley/cache/SimpleImageLoader.java:499
Class
ImagePagerAdapter
The main adapter that backs the ViewPager. A subclass of FragmentStatePagerAdapter as there could be a large number of items in the ViewPager and we d
sample/src/com/volley/demo/ImageDetailActivity.java:175
Class
ImageRequest
A canned request for getting an image at a given URL and calling back with a decoded Bitmap.
library/src/com/android/volley/request/ImageRequest.java:48
Class
ImageUtils
library/src/com/android/volley/misc/ImageUtils.java:20
Class
Images
Some simple test data to use for this sample app.
sample/src/com/volley/demo/util/Images.java:22
Class
InputStreamBuffer
Wrapper for {@link InputStream} that allows you to read bytes from it like a byte[]. An internal buffer is kept as small as possible to avoid large un
library/src/com/android/volley/misc/InputStreamBuffer.java:58
Interface
InputStreamFactory
Utility class for when an InputStream needs to be read multiple times. For example, one pass may load EXIF orientation, and the second pass may do the
library/src/com/android/volley/misc/ImageUtils.java:337
Class
InternalHandler
library/src/com/android/volley/misc/AsyncTask.java:662
Class
JsonArrayRequest
A request for retrieving a {@link JSONArray} response body at a given URL.
library/src/com/android/volley/request/JsonArrayRequest.java:34
Class
JsonObjectRequest
A request for retrieving a {@link JSONObject} response body at a given URL, allowing for an optional {@link JSONObject} to be passed in as part of the
library/src/com/android/volley/request/JsonObjectRequest.java:35
Class
JsonRequest
A request for retrieving a T type response body at a given URL that also optionally sends along a JSON body in the request specified. @param <T> JSON
library/src/com/android/volley/request/JsonRequest.java:34
Interface
Listener
Callback interface for delivering parsed responses.
library/src/com/android/volley/Response.java:29
Class
LruImageCache
Basic implementation of a Bitmap LRU cache to use with {@link ImageLoader#ImageLoader(com.android.volley.RequestQueue)} Added by Vinay S Shenoy on 19
library/src/com/android/volley/cache/LruImageCache.java:19
Class
MainActivity
sample/src/com/volley/demo/MainActivity.java:28
Class
Marker
library/src/com/android/volley/VolleyLog.java:112
Class
MarkerLog
A simple event log with records containing a name, thread ID, and timestamp.
library/src/com/android/volley/VolleyLog.java:106
Interface
Method
Supported request methods.
library/src/com/android/volley/Request.java:51
Class
MultiPartParam
A representation of a MultiPart parameter
library/src/com/android/volley/misc/MultiPartParam.java:6
Class
MultiPartRequest
A request for making a Multi Part request @param <T> Response expected
library/src/com/android/volley/request/MultiPartRequest.java:40
Class
MultipartEntity
@author <a href="mailto:vit at cleverua.com">Vitaliy Khudenko</a>
library/src/com/android/volley/toolbox/multipart/MultipartEntity.java:14
Class
MultipartProgressEntity
library/src/com/android/volley/toolbox/multipart/MultipartProgressEntity.java:9
Class
MultipartUtils
Created by HaKr on 08/02/15.
library/src/com/android/volley/misc/MultipartUtils.java:11
Class
MyClass
sample/src/com/volley/demo/util/MyClass.java:22
Class
MyVolley
Helper class that is used to provide references to initialized RequestQueue(s) and ImageLoader(s) @author Ognyan Bankov
sample/src/com/volley/demo/util/MyVolley.java:32
Class
NetUtils
library/src/com/android/volley/misc/NetUtils.java:24
next →
1–100 of 161, ranked by callers