Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bacy/volley
/ functions
Functions
850 in github.com/bacy/volley
⨍
Functions
850
◇
Types & classes
140
Method
NetworkDispatcher
Creates a new network dispatcher thread. You must call {@link #start()} in order to begin processing. @param queue Queue of incoming requests for tr
src/com/android/volley/NetworkDispatcher.java:58
Method
NetworkError
()
src/com/android/volley/NetworkError.java:27
Method
NetworkImageView
(Context context)
src/com/android/volley/toolbox/NetworkImageView.java:52
Method
NetworkResponse
Creates a new network response. @param statusCode the HTTP status code @param data Response body @param headers Headers returned with this response, o
src/com/android/volley/NetworkResponse.java:35
Method
NoConnectionError
()
src/com/android/volley/NoConnectionError.java:24
Method
OrderBy
(String columnName)
src/com/android/volley/db/sqlite/Selector.java:156
Method
ParseError
()
src/com/android/volley/ParseError.java:27
Method
PauseOnScrollListener
(BitmapTools imageLoader, boolean pauseOnScroll, boolean pauseOnFling)
src/com/android/volley/ext/PauseOnScrollListener.java:16
Method
PoolingByteArrayOutputStream
Constructs a new PoolingByteArrayOutputStream with a default size. If more bytes are written to this instance, the underlying byte array will expand.
src/com/android/volley/toolbox/PoolingByteArrayOutputStream.java:39
Method
Request
Creates a new request with the given URL and error listener. Note that the normal response listener is not provided here as delivery of responses is
src/com/android/volley/Request.java:130
Method
RequestFuture
()
src/com/android/volley/toolbox/RequestFuture.java:65
Method
RequestInfo
()
src/com/android/volley/ext/RequestInfo.java:21
Method
RequestQueue
Creates the worker pool. Processing will not begin until {@link #start()} is called. @param cache A Cache to use for persisting responses to disk @pa
src/com/android/volley/RequestQueue.java:97
Method
Response
(T result, Cache.Entry cacheEntry)
src/com/android/volley/Response.java:78
Method
ResponseDeliveryRunnable
(Request request, Response response, Runnable runnable)
src/com/android/volley/ExecutorDelivery.java:82
Method
RoundConfig
(int radius, int margin)
src/com/android/volley/ext/tools/BitmapTools.java:546
Method
RoundedDrawable
(Bitmap bitmap, int cornerRadius, int margin)
src/com/android/volley/ext/display/SimpleDisplayer.java:144
Method
Selector
(Class<?> entityType)
src/com/android/volley/db/sqlite/Selector.java:38
Method
ServerError
(NetworkResponse networkResponse)
src/com/android/volley/ServerError.java:27
Method
Snapshot
(String key, long sequenceNumber, InputStream[] ins, long[] lengths)
src/com/android/volley/toolbox/disklrucache/DiskLruCache.java:675
Method
SqlInfo
()
src/com/android/volley/db/sqlite/SqlInfo.java:27
Method
SqlInfoBuilder
()
src/com/android/volley/db/sqlite/SqlInfoBuilder.java:39
Method
StrictLineReader
Constructs a new {@code LineReader} with the specified charset and the default capacity. @param in the {@code InputStream} to read data from. @param
src/com/android/volley/toolbox/disklrucache/StrictLineReader.java:71
Method
StringPart
@param name String - name of parameter (may not be <code>null</code>). @param value String - value of parameter (may not be <code>null</code>). @param
src/com/android/volley/toolbox/multipart/StringPart.java:25
Method
StringRequest
Creates a new request with the given method. @param method the request {@link Method} to use @param url URL to fetch the string at @param listener Li
src/com/android/volley/toolbox/StringRequest.java:42
Method
Table
(DbTools db, Class<?> entityType)
src/com/android/volley/db/table/Table.java:47
Method
TableUtils
()
src/com/android/volley/db/table/TableUtils.java:33
Method
Util
()
src/com/android/volley/toolbox/disklrucache/Util.java:31
Method
Utils
()
src/com/android/volley/Utils.java:30
Method
VolleyError
()
src/com/android/volley/VolleyError.java:26
Method
WhereBuilder
()
src/com/android/volley/db/sqlite/WhereBuilder.java:37
Method
abortUnlessCommitted
()
src/com/android/volley/toolbox/disklrucache/DiskLruCache.java:827
Method
add
Adds a Request to the dispatch queue. @param request The request to service @return The passed-in request
src/com/android/volley/RequestQueue.java:241
Method
add
Adds a marker to this log with the specified name.
src/com/android/volley/VolleyLog.java:125
Method
addPart
(Part part)
src/com/android/volley/toolbox/multipart/MultipartEntity.java:32
Method
and
(String columnName, String op, Object value)
src/com/android/volley/db/sqlite/DbModelSelector.java:61
Method
and
add AND condition @param columnName @param op operator: "=","<","LIKE","IN","BETWEEN"... @param value @return
src/com/android/volley/db/sqlite/WhereBuilder.java:72
Method
and
(String columnName, String op, Object value)
src/com/android/volley/db/sqlite/Selector.java:57
Method
apply
(Request<?> request)
src/com/android/volley/RequestQueue.java:229
Method
available
()
src/com/android/volley/toolbox/ContentLengthInputStream.java:38
Method
available
()
src/com/android/volley/ext/ContentLengthInputStream.java:38
Method
call
()
src/com/android/volley/toolbox/disklrucache/DiskLruCache.java:165
Method
cancel
()
src/com/android/volley/ext/tools/HttpTools.java:202
Method
cancelAllRequest
()
src/com/android/volley/ext/tools/HttpTools.java:417
Method
cancelAllRequest
取消所有即将开始的请求 cancelAllRequest @since 3.6
src/com/android/volley/ext/tools/BitmapTools.java:410
Method
clear
Clears the cache. Deletes all cached files from disk.
src/com/android/volley/toolbox/DiskBasedCache.java:106
Method
clear
()
src/com/android/volley/toolbox/NoCache.java:25
Method
clear
()
src/com/android/volley/toolbox/DiskLruBasedCache.java:379
Method
clearCache
()
src/com/android/volley/toolbox/DiskLruBasedCache.java:85
Method
clearDiskCache
清除掉所有的图片磁盘缓存 clearDiskCache @param callback @since 3.6
src/com/android/volley/ext/tools/BitmapTools.java:474
Method
clearMemoryCache
清除掉某张图片的内存缓存 clearMemoryCache @param key 图片的url @since 3.6
src/com/android/volley/ext/tools/BitmapTools.java:439
Method
clearViewTask
清除view上面的任务和标记 clearViewTask @param view
src/com/android/volley/ext/tools/BitmapTools.java:421
Method
clone
()
src/com/android/volley/toolbox/multipart/MultipartEntity.java:76
Method
close
()
src/com/android/volley/toolbox/ContentLengthInputStream.java:43
Method
close
Closes the reader by closing the underlying {@code InputStream} and marking this reader as closed. @throws IOException for errors when closing the un
src/com/android/volley/toolbox/disklrucache/StrictLineReader.java:108
Method
close
()
src/com/android/volley/toolbox/disklrucache/DiskLruCache.java:706
Method
close
()
src/com/android/volley/toolbox/disklrucache/DiskLruCache.java:857
Method
close
()
src/com/android/volley/ext/ContentLengthInputStream.java:43
Method
compare
(byte[] lhs, byte[] rhs)
src/com/android/volley/toolbox/ByteArrayPool.java:70
Method
compareTo
Our comparator sorts from high to low priority, and secondarily by sequence number to provide FIFO ordering.
src/com/android/volley/Request.java:608
Method
configAllowTransaction
(boolean allowTransaction)
src/com/android/volley/ext/tools/DbTools.java:144
Method
configDebug
(boolean debug)
src/com/android/volley/ext/tools/DbTools.java:139
Method
count
(Selector selector)
src/com/android/volley/ext/tools/DbTools.java:565
Method
createCount
Returns the number of times {@link #create(Object)} returned a value.
src/com/android/volley/LruCache.java:295
Method
dbModel2Entity
(final DbTools db, DbModel dbModel,Class<?> clazz)
src/com/android/volley/db/sqlite/CursorUtils.java:76
Method
delete
delete 请求 @param requestInfo @param httpResult @since 3.5
src/com/android/volley/ext/tools/HttpTools.java:105
Method
deleteAll
(List<?> entities)
src/com/android/volley/ext/tools/DbTools.java:318
Method
deleteById
(Class<?> entityType, Object idValue)
src/com/android/volley/ext/tools/DbTools.java:279
Method
deleteContents
Deletes the contents of {@code dir}. Throws an IOException if any file could not be deleted, or if {@code dir} is not a readable directory.
src/com/android/volley/Utils.java:199
Method
deliverResponse
(T response)
src/com/android/volley/toolbox/MultiPartRequest.java:82
Method
deliverResponse
(String response)
src/com/android/volley/toolbox/StringRequest.java:65
Method
deliverResponse
(T response)
src/com/android/volley/toolbox/JsonRequest.java:63
Method
deliverResponse
(Object response)
src/com/android/volley/toolbox/ClearCacheRequest.java:67
Method
deliverResponse
(Bitmap response)
src/com/android/volley/toolbox/ImageRequest.java:204
Method
display
(final View view, String uri)
src/com/android/volley/ext/tools/BitmapTools.java:83
Method
download
(String url, String target, final boolean isResume, final HttpCallback httpResult)
src/com/android/volley/ext/tools/HttpTools.java:239
Method
draw
(Canvas canvas)
src/com/android/volley/ext/display/SimpleDisplayer.java:168
Method
drawableStateChanged
()
src/com/android/volley/toolbox/NetworkImageView.java:214
Method
dropTable
(Class<?> entityType)
src/com/android/volley/ext/tools/DbTools.java:767
Method
edit
Returns an editor for this snapshot's entry, or null if either the entry has changed since this snapshot was created or if another edit is in progress
src/com/android/volley/toolbox/disklrucache/DiskLruCache.java:687
Method
enableStrictMode
()
src/com/android/volley/Utils.java:33
Method
evictAll
Clear the cache, calling {@link #entryRemoved} on each removed entry.
src/com/android/volley/LruCache.java:255
Method
evictionCount
Returns the number of values that have been evicted.
src/com/android/volley/LruCache.java:309
Method
expr
(String expr)
src/com/android/volley/db/sqlite/DbModelSelector.java:81
Method
expr
(String expr)
src/com/android/volley/db/sqlite/WhereBuilder.java:90
Method
fieldValue2ColumnValue
(Double fieldValue)
src/com/android/volley/db/converter/DoubleColumnConverter.java:25
Method
fieldValue2ColumnValue
(Boolean fieldValue)
src/com/android/volley/db/converter/BooleanColumnConverter.java:25
Method
fieldValue2ColumnValue
(Short fieldValue)
src/com/android/volley/db/converter/ShortColumnConverter.java:25
Method
fieldValue2ColumnValue
(Float fieldValue)
src/com/android/volley/db/converter/FloatColumnConverter.java:25
Method
fieldValue2ColumnValue
(Character fieldValue)
src/com/android/volley/db/converter/CharColumnConverter.java:25
Method
fieldValue2ColumnValue
(java.sql.Date fieldValue)
src/com/android/volley/db/converter/SqlDateColumnConverter.java:25
Method
fieldValue2ColumnValue
(Date fieldValue)
src/com/android/volley/db/converter/DateColumnConverter.java:27
Method
fieldValue2ColumnValue
(Byte fieldValue)
src/com/android/volley/db/converter/ByteColumnConverter.java:25
Method
fieldValue2ColumnValue
(String fieldValue)
src/com/android/volley/db/converter/StringColumnConverter.java:23
Method
fieldValue2ColumnValue
(byte[] fieldValue)
src/com/android/volley/db/converter/ByteArrayColumnConverter.java:23
Method
fieldValue2ColumnValue
(Integer fieldValue)
src/com/android/volley/db/converter/IntegerColumnConverter.java:25
Method
fieldValue2ColumnValue
(Long fieldValue)
src/com/android/volley/db/converter/LongColumnConverter.java:25
Method
finalize
()
src/com/android/volley/VolleyLog.java:155
Method
finalize
()
src/com/android/volley/toolbox/PoolingByteArrayOutputStream.java:63
Method
findById
(Class<T> entityType, Object idValue)
src/com/android/volley/ext/tools/DbTools.java:393
← previous
next →
501–600 of 850, ranked by callers