VOOZH about

URL: https://www.geeksforgeeks.org/android/custom-simpleadapter-in-android-with-example/

⇱ Custom SimpleAdapter in Android with Example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Custom SimpleAdapter in Android with Example

Last Updated : 23 Jul, 2025

The Adapter acts as a bridge between the UI Component and the Data Source. It converts data from the data sources into view items that can be displayed into the UI Component. In Android, SimpleAdapter is an easy adapter to map static data to views defined in an XML (layout) file.  You can specify the data backing the list as an ArrayList of Maps. Each entry in the ArrayList corresponds to one row in the list. The Maps contain the data for each row.

Why use CustomSimpleAdapter? 

SimpleAdapter allows us to add events to each list item but what if we want to add different events to different views that are part of our list item, we cannot achieve it by using SimpleAdapter itself. In a typical android application, a list item can consist of a complex layout that may contain different views. In that condition, we have to use customize SimpleAdapter. The basic syntax of SimpleAdapter.

Syntax:

class SimpleAdapter(
context: Context,
data: MutableList<HashMap<String, String>>,
resource: Int,
from: Array<String>,
to: IntArray
)

Parameters:

  • context: The context where the View associated with this SimpleAdapter is running
  • data: A List of Maps. Each entry in the List corresponds to one row in the list. The Maps contain the data for each row, and should include all the entries specified in "from".
  • resource: Resource identifier of a view layout that defines the views for this list item. The layout file should include at least those named views defined in "to".
  • from: A list of column names that will be added to the Map associated with each item.
  • to: The views that should display column in the "from" parameter. These should all be TextViews. The first N views in this list are given the values of the first N columns in the from parameter.

Two most important methods of SimpleAdapter:

  1. getCount(): How many items are in the data set represented by this Adapter.
  2. getView(): Get a view that displays the data at the specified position in the data set. You can either create a View manually or inflate it from an XML layout file. When the View is inflated, the parent View (GridView, ListView...) will apply default layout parameters unless you use LayoutInflater.inflate(int, android.view.ViewGroup, boolean) to specify a root view and to prevent attachment to the root.

Example

Below is the screenshot of the final application that we are going to create for this article. In this, you will notice that by clicking list_item nothing happens but when we click on Image then only Toast is displayed.

Step by Step Implementation

Step 1: Create a new Project

To create a new Project in Android Studio please refer to How to Create/Start a New Project in Android Studio.

We are going to use Java/Kotlin.

Step 2: Working with the activity_main.xml

Now open activity_main.xml and insert the below code in it. It will create a ConstraintLayout which consists of a ListView. Below is the code for the activity_main.xml file.

activity_main.xml:

Layout:

👁 Layout_1


Step 3: Creating a new layout XML file for List Item.

Go to the app > res > layout > right-click > New > Layout Resource File and creates a XML file. Name the file as list_item. Below is the code for the list_item.xml file.

list_item.xml:

Layout:

👁 Layout_2
frf


Step 4: Implementing CustomSimpleAdapter

Now create a new Kotlin class file and name it CustomSimpleAdapter. In this file, we will override the getView() method to add the custom code. Below is the code for the CustomSimpleAdapter file. Comments are added inside the code to understand the code in more detail.

CustomSimpleAdapter File:


Step 5: Working with the MainActivity file

Before writing any code in MainActivity file please add images that you want to show. Below is the code for MainActivity file. Comments are added inside the code to understand the code in more detail.

MainActivity File:

Output:

Comment
Article Tags:

Explore