Table of Contents
Location
You can find the CustomAdapter sample project at:
- Start | Programs | Embarcadero RAD Studio Sydney | Samples and navigate to:
Object Pascal\Multi-Device Samples\User Interface\ListView\CustomAdapter
- Subversion Repository:
- You can find Delphi code samples in GitHub Repositories. Search by name into the samples repositories according to your RAD Studio version.
Description
The CustomAdapter sample shows how to create a custom list view adapter. This specific implementation of a custom adapter obtains image files from a remote server.
How to Run the Sample
- Run the server:
- Install Python 2 to run the server script.
- On the project folder, open
server.py
using a text editor, and update the values of theHOST
andPORT
variables. Notes:- The default values should let you test this sample application on your development PC.
- To run this sample application on a mobile device, you must update
HOST
so that it contains the IP address where your mobile devices can reach your development PC. - If the default post is busy in your development PC, you must change the value of
PORT
.
- Run
server.py
.
- Run the sample application:
- Open the sample application project file.
- Open the main form of the sample application in the Code Editor and update the value of the
Host
constant, so that the host and port match those that you configured on the server script. - Run the sample application.
How It Works
After you start this sample application, it displays the following form:
Click the Load Pictured button to load 30 list view items from the custom list view adapter.
Please follow the link below for more information to the original post:
http://docwiki.embarcadero.com/CodeExamples/Sydney/en/FMX.ListViewCustomAdapter