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
- Host: GitHub
- URL: https://github.com/codepath/android-custom-array-adapter-demo
- Owner: codepath
- Created: 2014-06-01T10:46:08.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-10-31T03:27:22.000Z (over 7 years ago)
- Last Synced: 2023-05-10T14:13:26.654Z (about 2 years ago)
- Language: Java
- Size: 688 KB
- Stars: 80
- Watchers: 21
- Forks: 86
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.

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