MCPcopy Create free account

hub / github.com/DWorkS/VolleyPlus / types & classes

Types & classes161 in github.com/DWorkS/VolleyPlus

ClassAboutActivity
sample/src/com/volley/demo/AboutActivity.java:26
ClassAdWrapper
A Wrapper which wraps AdView along with loading the view aswell
sample/src/com/volley/demo/util/AdWrapper.java:18
ClassAndroidAuthenticator
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
ClassApplicationController
library/src/com/android/volley/ApplicationController.java:7
ClassAsyncRequestLoader
Created by HaKr on 12/08/15.
library/src/com/android/volley/AsyncRequestLoader.java:18
ClassAsyncTask
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
ClassAsyncTaskResult
library/src/com/android/volley/misc/AsyncTask.java:684
ClassAuthFailureError
Error indicating that there was an authentication failure when performing a Request.
library/src/com/android/volley/error/AuthFailureError.java:26
InterfaceAuthenticator
An interface for interacting with auth tokens.
library/src/com/android/volley/toolbox/Authenticator.java:24
ClassBaseInputStreamFactory
library/src/com/android/volley/misc/ImageUtils.java:347
ClassBasePart
library/src/com/android/volley/toolbox/multipart/BasePart.java:13
ClassBasicNetwork
A network performing Volley requests over an {@link HttpStack}.
library/src/com/android/volley/toolbox/BasicNetwork.java:57
ClassBatchedImageRequest
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
ClassBitmapCache
This class holds our bitmap caches (memory and disk).
library/src/com/android/volley/cache/BitmapCache.java:35
ClassBitmapImageCache
This class holds our bitmap caches (memory and disk).
library/src/com/android/volley/cache/BitmapImageCache.java:39
ClassBoundary
library/src/com/android/volley/toolbox/multipart/Boundary.java:14
ClassBuildConfigs
library/src/com/android/volley/BuildConfigs.java:6
ClassByteArrayPool
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
ClassByteRequest
library/src/com/android/volley/request/ByteRequest.java:10
InterfaceCache
An interface for a cache keyed by a String with a byte array as data.
library/src/com/android/volley/Cache.java:25
ClassCacheDispatcher
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
ClassCacheHeader
library/src/com/android/volley/cache/DiskBasedCache.java:344
ClassCacheHeader
library/src/com/android/volley/error/DiskBasedCache.java:355
ClassClearCacheRequest
A synthetic request used for clearing the cache.
library/src/com/android/volley/request/ClearCacheRequest.java:30
ClassClientError
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
ClassCountingInputStream
library/src/com/android/volley/misc/CountingInputStream.java:7
ClassCountingOutputStream
library/src/com/android/volley/misc/CountingOutputStream.java:9
ClassDataInputStreamFactory
library/src/com/android/volley/misc/ImageUtils.java:362
ClassDefaultRetryPolicy
Default retry policy for requests.
library/src/com/android/volley/DefaultRetryPolicy.java:24
ClassDiskBasedCache
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
ClassDiskBasedCache
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
ClassDiskLruBasedCache
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
ClassDiskLruCache
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
ClassDiskLruImageCache
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
ClassDownloadRequest
A canned request for retrieving the response body at a given URL as a String.
library/src/com/android/volley/request/DownloadRequest.java:37
ClassEditor
Edits the values for an entry.
library/src/com/android/volley/misc/DiskLruCache.java:706
ClassEndlessScrollListener
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
ClassEntry
Data and metadata for an entry returned by the cache.
library/src/com/android/volley/Cache.java:77
ClassEntry
library/src/com/android/volley/misc/DiskLruCache.java:864
InterfaceErrorListener
Callback interface for delivering error responses.
library/src/com/android/volley/Response.java:35
ClassExampleCookies
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
ClassExampleGsonRequest
Demonstrates how to use Volley along with Gson @author Ognyan Bankov
sample/src/com/volley/demo/ExampleGsonRequest.java:38
ClassExampleImageLoading
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
ClassExampleJsonRequest
Demonstrates how to execute <code>JsonObjectRequest</code> @author Ognyan Bankov
sample/src/com/volley/demo/ExampleJsonRequest.java:41
ClassExampleNetworkListView
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
ClassExampleNewHttpClient
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
ClassExampleParams
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
ClassExampleSimpleRequest
Demonstrates how to execute "plain" HTTP request, i.e. non-JSON. @author Ognyan Bankov
sample/src/com/volley/demo/ExampleSimpleRequest.java:39
ClassExampleSsSslHttpClient
Demonstrates how to execute HTTPS request against server with self-signed certificate. @author Ognyan Bankov
sample/src/com/volley/demo/ExampleSsSslHttpClient.java:43
ClassExecutorDelivery
Delivers responses and errors.
library/src/com/android/volley/ExecutorDelivery.java:28
ClassExif
library/src/com/android/volley/misc/Exif.java:24
ClassExtHttpClientStack
sample/src/com/volley/demo/misc/ExtHttpClientStack.java:52
ClassFaultHidingOutputStream
library/src/com/android/volley/misc/DiskLruCache.java:821
ClassFilePart
@author <a href="mailto:vit at cleverua.com">Vitaliy Khudenko</a>
library/src/com/android/volley/toolbox/multipart/FilePart.java:27
ClassGZipRequest
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
ClassGsonRequest
Volley adapter for JSON requests that will be parsed into Java objects by Gson.
library/src/com/android/volley/request/GsonRequest.java:22
InterfaceHorizontallyScrollable
Interface for components that are internally scrollable left-to-right.
library/src/com/android/volley/misc/Utils.java:58
ClassHttpClientStack
An HttpStack that performs request over an {@link HttpClient}.
library/src/com/android/volley/toolbox/HttpClientStack.java:59
ClassHttpDelete
The HttpDelete class which extends HttpEntityEnclosingRequestBase instead HttpRequestBase
library/src/com/android/volley/toolbox/HttpClientStack.java:265
ClassHttpHeaderParser
Utility methods for parsing HTTP headers.
library/src/com/android/volley/toolbox/HttpHeaderParser.java:34
ClassHttpPatch
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
InterfaceHttpStack
An HTTP stack abstraction.
library/src/com/android/volley/toolbox/HttpStack.java:30
ClassHurlStack
An {@link HttpStack} based on {@link HttpURLConnection}.
library/src/com/android/volley/toolbox/HurlStack.java:60
InterfaceIHeadersProvider
library/src/com/android/volley/toolbox/multipart/BasePart.java:16
ClassIOUtils
library/src/com/android/volley/misc/IOUtils.java:12
ClassImageAdapter
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
ClassImageArrayAdapter
sample/src/com/volley/demo/util/ImageArrayAdapter.java:34
InterfaceImageCache
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
ClassImageCacheParams
A holder class that contains cache parameters.
library/src/com/android/volley/cache/DiskLruBasedCache.java:222
ClassImageContainer
Container object for all of the data surrounding an image request.
library/src/com/android/volley/toolbox/ImageLoader.java:419
ClassImageDetailActivity
sample/src/com/volley/demo/ImageDetailActivity.java:42
ClassImageDetailFragment
This fragment will populate the children of the ViewPager from {@link ImageDetailActivity}.
sample/src/com/volley/demo/ImageDetailFragment.java:33
ClassImageEntry
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
InterfaceImageListener
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
ClassImageLoader
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
InterfaceImageLoaderProvider
Interface an activity can implement to provide an ImageLoader to its children fragments.
library/src/com/android/volley/cache/SimpleImageLoader.java:499
ClassImagePagerAdapter
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
ClassImageRequest
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
ClassImageUtils
library/src/com/android/volley/misc/ImageUtils.java:20
ClassImages
Some simple test data to use for this sample app.
sample/src/com/volley/demo/util/Images.java:22
ClassInputStreamBuffer
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
InterfaceInputStreamFactory
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
ClassInternalHandler
library/src/com/android/volley/misc/AsyncTask.java:662
ClassJsonArrayRequest
A request for retrieving a {@link JSONArray} response body at a given URL.
library/src/com/android/volley/request/JsonArrayRequest.java:34
ClassJsonObjectRequest
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
ClassJsonRequest
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
InterfaceListener
Callback interface for delivering parsed responses.
library/src/com/android/volley/Response.java:29
ClassLruImageCache
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
ClassMainActivity
sample/src/com/volley/demo/MainActivity.java:28
ClassMarker
library/src/com/android/volley/VolleyLog.java:112
ClassMarkerLog
A simple event log with records containing a name, thread ID, and timestamp.
library/src/com/android/volley/VolleyLog.java:106
InterfaceMethod
Supported request methods.
library/src/com/android/volley/Request.java:51
ClassMultiPartParam
A representation of a MultiPart parameter
library/src/com/android/volley/misc/MultiPartParam.java:6
ClassMultiPartRequest
A request for making a Multi Part request @param <T> Response expected
library/src/com/android/volley/request/MultiPartRequest.java:40
ClassMultipartEntity
@author <a href="mailto:vit at cleverua.com">Vitaliy Khudenko</a>
library/src/com/android/volley/toolbox/multipart/MultipartEntity.java:14
ClassMultipartProgressEntity
library/src/com/android/volley/toolbox/multipart/MultipartProgressEntity.java:9
ClassMultipartUtils
Created by HaKr on 08/02/15.
library/src/com/android/volley/misc/MultipartUtils.java:11
ClassMyClass
sample/src/com/volley/demo/util/MyClass.java:22
ClassMyVolley
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
ClassNetUtils
library/src/com/android/volley/misc/NetUtils.java:24
next →1–100 of 161, ranked by callers