public enum ItemType
Different types of views supported.
Enum Constant and Description |
---|
IMAGE
View is a type of ImageView.
If the data type of this variable is Bitmap or a Drawable, it is directly set to the ImageView.
If the data type is image resource, File, or Url, autodroid generated code uses Picasso library
to load the image to the ImageView. In that case, add the Picasso dependency to your application
|
TEXT
View is a type of TextView
|
public static ItemType TEXT
View is a type of TextView
public static ItemType IMAGE
View is a type of ImageView. If the data type of this variable is Bitmap or a Drawable, it is directly set to the ImageView. If the data type is image resource, File, or Url, autodroid generated code uses Picasso library to load the image to the ImageView. In that case, add the Picasso dependency to your application