[Expand]
Inherited Methods |
From class
com.droidux.pack.gallery.interfaces.GalleryFlowInterfaces.Adapters.AdapterLooper
void
|
downloadUrlImages(int position, View itemView, GalleryUrlImageAdapter.Request request)
Download images from URLs.
|
int
|
getCenterPosition()
Gets the position of the center item of the looper.
|
int
|
getCount()
How many items are in the data set represented by this Adapter.
|
SpinnerAdapter
|
getInnerAdapter()
Gets the wrapped adapter that is cycled by this looper.
|
int
|
getInnerCount()
Gets the number of items in the wrapped adapter.
|
int
|
getInnerPosition(int position)
Gets the actual position of an item in the wrapped adapter based on its position in the looper.
|
Object
|
getItem(int position)
Get the data item associated with the specified position in the data set.
|
long
|
getItemId(int position)
Get the row id associated with the specified position in the list.
|
int
|
getItemViewType(int position)
|
View
|
getView(int position, View convertView, ViewGroup parent)
Get a View that displays the data at the specified position in the data set.
|
int
|
getViewTypeCount()
|
boolean
|
isEmpty()
|
void
|
onImageFail(int position, View itemView, String url, int refId, Exception exception)
When there's an error when downloading the image or transforming the remote image to a Bitmap, this callback will be called.
|
void
|
onImageReady(int position, View itemView, String url, int refId, Bitmap bitmap)
Callback when the image is successfully downloaded and transformed to a Bitmap.
|
void
|
onWaitingForImage(int position, View itemView, String imageUrl, int refId)
Callback when the image has to be downloaded from the web, or from the cache that will take relatively long time to fetch (e.g.
|
|
From class
android.widget.BaseAdapter
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
From interface
android.widget.Adapter
|
From interface
android.widget.ListAdapter
|
From interface
android.widget.SpinnerAdapter
|
From interface
com.droidux.pack.gallery.adapters.GalleryUrlImageAdapter
abstract
void
|
downloadUrlImages(int position, View itemView, GalleryUrlImageAdapter.Request request)
Download images from URLs.
|
abstract
void
|
onImageFail(int position, View itemView, String url, int refId, Exception exception)
When there's an error when downloading the image or transforming the remote image to a Bitmap, this callback will be called.
|
abstract
void
|
onImageReady(int position, View itemView, String url, int refId, Bitmap bitmap)
Callback when the image is successfully downloaded and transformed to a Bitmap.
|
abstract
void
|
onWaitingForImage(int position, View itemView, String url, int refId)
Callback when the image has to be downloaded from the web, or from the cache that will take relatively long time to fetch (e.g.
|
|