An open API service indexing awesome lists of open source software.

https://github.com/codepath/android-custom-array-adapter-demo

Android demo of how to populate a ListView with custom adapter
https://github.com/codepath/android-custom-array-adapter-demo

Last synced: about 2 months ago
JSON representation

Android demo of how to populate a ListView with custom adapter

Awesome Lists containing this project

README

        

# Android Custom Adapter Demo

This sample shows how to display a ListView based on an array data source using a custom layout template for displaying each item. In this case, there is a `User` object with a name and hometown being displayed into a ListView.

![Screen](http://i.imgur.com/ueYXgwK.png)

See the [Custom ArrayAdapter](http://guides.codepath.com/android/Using-an-ArrayAdapter-with-ListView#using-a-custom-arrayadapter) cliffnotes for the related guide.