SimpleExpandableListAdapter is an Adapter which is used to map the static data to group and child views defined in an XML (layout) file. We can separately specify the data backing to the group as a List of Map. Each entry in a ArrayList corresponds to one group in the ExpandableListView. The map contains the data … Continue reading SimpleExpandableListAdapter With Example In Android Studio
BaseExpandableListAdapter is a base class for the ExpandableListAdapter which is used to fill the data and Views from some data (i.e. Arraylist, HashMap etc) to an ExpandableListView. For Creating a custom ExpandableListView we need to create a custom class and then extends BaseExpandableListAdapter class in that class. An adapter is a bridge between UI component and data … Continue reading BaseExpandableListAdapter With Example In Android Studio
ExpandableListAdapter is an Adapter that links the ExpandableListView with the underlying data. The implementation of this interface will provide the data for the children and also initiate the views for the children and groups. For customization of List we need to implement ExpandableListAdapter in our custom Adapter. It is important to remember that Adapter acts a bridge … Continue reading ExpandableListAdapter Tutorial With Example In Android Studio
ImageView comes with different configuration options to support different scale types. ScaleType options are used for scaling the bounds of an image to the bounds of the image view. ScaleType configuration properties for ImageView in Android are CENTER, CENTER_CROP, CENTER_INSIDE, FIT_CENTER, FIT_END, FIT_START, FIT_XY and MATRIX. Before understanding the different scale types of an imageview … Continue reading All scaleType In ImageView With Example In Android Studio
Premium Project Source Code: