A B C D E F G H I K L M N O P Q R S T U V
A
- abort() -
类 net.tsz.afinal.bitmap.core.LruDiskCache.Editor 中的方法
- Aborts this edit.
- AbstractCollection<E> - net.tsz.afinal.core 中的 类
- Class
AbstractCollection is an abstract implementation of the Collection interface. - add(E) -
类 net.tsz.afinal.core.AbstractCollection 中的方法
-
- add(E) -
类 net.tsz.afinal.core.ArrayDeque 中的方法
- Inserts the specified element at the end of this deque.
- add(E) -
接口 net.tsz.afinal.core.Deque 中的方法
- Inserts the specified element into the queue represented by this deque
(in other words, at the tail of this deque) if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an
IllegalStateException if no space is currently available.
- add(E) -
接口 net.tsz.afinal.core.Queue 中的方法
- Inserts the specified element into this queue if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an IllegalStateException
if no space is currently available.
- addAll(Collection<? extends E>) -
类 net.tsz.afinal.core.AbstractCollection 中的方法
- Attempts to add all of the objects contained in
collection
to the contents of this Collection (optional).
- addBitmapToCache(String, Bitmap) -
类 net.tsz.afinal.bitmap.core.BitmapCache 中的方法
- Adds a bitmap to both memory and disk cache.
- addCookie(Cookie) -
类 net.tsz.afinal.http.PreferencesCookieStore 中的方法
-
- addFirst(E) -
类 net.tsz.afinal.core.ArrayDeque 中的方法
- Inserts the specified element at the front of this deque.
- addFirst(E) -
接口 net.tsz.afinal.core.Deque 中的方法
- Inserts the specified element at the front of this deque if it is
possible to do so immediately without violating capacity restrictions.
- addHeader(String, String) -
类 net.tsz.afinal.FinalHttp 中的方法
- 添加http请求头
- addLast(E) -
类 net.tsz.afinal.core.ArrayDeque 中的方法
- Inserts the specified element at the end of this deque.
- addLast(E) -
接口 net.tsz.afinal.core.Deque 中的方法
- Inserts the specified element at the end of this deque if it is
possible to do so immediately without violating capacity restrictions.
- addValue(Object) -
类 net.tsz.afinal.db.sqlite.SqlInfo 中的方法
-
- AfinalException - net.tsz.afinal.exception 中的 异常
-
- AfinalException() -
异常 net.tsz.afinal.exception.AfinalException 的构造方法
-
- AjaxCallBack<T> - net.tsz.afinal.http 中的 类
-
- AjaxCallBack() -
类 net.tsz.afinal.http.AjaxCallBack 的构造方法
-
- AjaxParams - net.tsz.afinal.http 中的 类
-
使用方法:
AjaxParams params = new AjaxParams();
params.put("username", "michael");
params.put("password", "123456");
params.put("email", "test@tsz.net");
params.put("profile_picture", new File("/mnt/sdcard/pic.jpg")); // 上传文件
params.put("profile_picture2", inputStream); // 上传数据流
params.put("profile_picture3", new ByteArrayInputStream(bytes)); // 提交字节流
FinalHttp fh = new FinalHttp();
fh.post("http://www.yangfuhai.com", params, new AjaxCallBack(){
- AjaxParams() -
类 net.tsz.afinal.http.AjaxParams 的构造方法
-
- AjaxParams(Map<String, String>) -
类 net.tsz.afinal.http.AjaxParams 的构造方法
-
- AjaxParams(String, String) -
类 net.tsz.afinal.http.AjaxParams 的构造方法
-
- AjaxParams(Object...) -
类 net.tsz.afinal.http.AjaxParams 的构造方法
-
- ArrayDeque<E> - net.tsz.afinal.core 中的 类
- Resizable-array implementation of the
Deque interface. - ArrayDeque() -
类 net.tsz.afinal.core.ArrayDeque 的构造方法
- Constructs an empty array deque with an initial capacity
sufficient to hold 16 elements.
- ArrayDeque(int) -
类 net.tsz.afinal.core.ArrayDeque 的构造方法
- Constructs an empty array deque with an initial capacity
sufficient to hold the specified number of elements.
- ArrayDeque(Collection<? extends E>) -
类 net.tsz.afinal.core.ArrayDeque 的构造方法
- Constructs a deque containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
- Arrays - net.tsz.afinal.core 中的 类
Arrays contains static methods which operate on arrays.- asList(T...) -
类 net.tsz.afinal.core.Arrays 中的静态方法
- Returns a
List of the objects in the specified array.
- AsyncTask<Params,Progress,Result> - net.tsz.afinal.core 中的 类
- 拷贝 https://android.googlesource.com/platform/frameworks/base/+/jb-release/
core/java/android/os/AsyncTask.java
修改了线程池属性,让并发线程按顺序执行
- AsyncTask() -
类 net.tsz.afinal.core.AsyncTask 的构造方法
- Creates a new asynchronous task.
- AsyncTask.Status - net.tsz.afinal.core 中的 枚举
- Indicates the current status of the task.
A B C D E F G H I K L M N O P Q R S T U V