You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to add multiple views like textview and imageview etc in the layouts? and how to bind the data accordingly? and is enough capable to load images let say of 250-300 kb. and the images can be a couple of hundred. also i want to know that the normal listview swipes the views while scrolling so is it free of that?
plus what does that
public class WallData<T> {
@Retention(RetentionPolicy.SOURCE)
@IntDef({IMAGE, VIDEO,TEXT,AUDIO})
public @interface ViewType {
}
public static final int IMAGE = 0;
public static final int VIDEO = 1;
public static final int TEXT = 2;
public static final int AUDIO = 3;
public T object;
@ViewType
public int viewType;
public WallData(T object, int viewType) {
this.object = object;
this.viewType = viewType;
}
}
means even my app will contain 5 views (2Texviews,2ImageViews,and 1 progressbar) and 4types of layout item. i need your help. Thanks.
The text was updated successfully, but these errors were encountered:
How to add multiple views like textview and imageview etc in the layouts? and how to bind the data accordingly? and is enough capable to load images let say of 250-300 kb. and the images can be a couple of hundred. also i want to know that the normal listview swipes the views while scrolling so is it free of that?
plus what does that
means even my app will contain 5 views (2Texviews,2ImageViews,and 1 progressbar) and 4types of layout item. i need your help. Thanks.
The text was updated successfully, but these errors were encountered: