This project contains a full example of an Android application that employs the Lightstreamer Android Client library to subscribe to real-time updates and FCM push notifications.
A simpler version, without FCM support is also available: Stock-List Demo - Android Client
(To install the app from the Google Play Store, you can also use the above QR code)
This is a Java-for-Android version of the Lightstreamer - Basic Stock-List Demo - HTML client.
This app uses the Android Client API for Lightstreamer to handle the communications with Lightstreamer Server. A simple user interface is implemented to display the real-time data received from Lightstreamer Server.
Touch a row opens a new panel with the detailed information, updated in real-time, of the stock.
Touch the chart to setup a new trigger for push notifications.
The demo is ready to receive Mobile Push Notification through Firebase Cloud Messaging for Android.
StockListDemo.java
is the entry point and onlyActivity
of the application. It contains twoFragment
s. Both fragments are visible if the application runs on tablet, while on smartphone only oneFragment
at a time is visible.LsClient.java
handles the connection to the Lightstreamer server and the Subscription/Unsubscription requests issued by the various part of the application.SubscriptionFragment.java
represents aFragment
containing a subscription that is started/stopped based on the lifecycle of theFragment
. Please note that this class does not actually extendFragment
.StocksFragment.java
andDetailsFragment.java
are the classes representing the two fragments of the application.MyFirebaseMessagingService.java
is the class dedicated to receive the Push Notifications, to create the notification for the system, and to attach to it an Intent capable of launching the Demo application focused on the notified item.Chart.java
wraps the AndroidPlot APIs to plot the real-time chart on the details fragment.
Check out the sources for further explanations.
NOTE: Not all the functionalities of the Lightstreamer Android Java client are exposed by the classes listed above. You can easily expand those functionalities using the Android Client API as a reference. If in trouble check out the specific Lightstreamer forum.
If you want to install a version of this demo pointing to your local Lightstreamer Server and running into an Android Virtual Device, follow these steps:
- Note that, as prerequisite, the Lightstreamer - Stock-List Demo - Java Adapter has to be deployed on your local Lightstreamer Server instance. Please check out that project and follow the installation instructions provided with it.
- Launch Lightstreamer Server.
- Download the
deploy.zip
file, which you can find in the latest deploy release of this project and extract theAndroid_StockListDemo.apk
file. - Locate or install the Android SDK
- Install the
Android_StockListDemo.apk
in your emulator:- Execute the emulator (Android SDK/SDK Manager->Tools->Manage AVDs...->New then Start)
- Open the console and move to the platform-tools folder of SDK directory.
- Then type the following command:
adb install [.apk path]
- Look up the demo in your virtual device and launch it.
Note that the demo targets the Lightstreamer server @ http://10.0.2.2:8080 because 10.0.2.2 is the special alias to your host loopback interface.
Note that you can skip this section and build the application without using any IDE.
Import the provided Gradle project in Android Studio.
You may run the demo against your local server or using our online server at http://push.lightstreamer.com:80. The server to which the demo will connect to is configured in the app/src/main/res/values/strings.xml
file.
A full local deploy of this app requires
-
a Lightstreamer Server 7.3.2 or greater installation with appropriate Mobile Push Notifications (MPN) module configuration (a detailed step by step guide for setting up the server and configuring the client is available in the README of the project Lightstreamer - MPN Stock-List Demo Metadata - Java Adapter)
-
the deployment of the QUOTE_ADAPTER and the LiteralBasedProvider (already provided by Lightstreamer server) in your local Lightstreamer server instance.
To build your own version of the demo you can launch the provided Gradle script from the command line or from the IDE itself. As an example you can build and install a debug version of the application in an emulator (or device) by running
gradlew installDebug
- Lightstreamer - Stock-List Demo - Java Adapter
- Lightstreamer - MPN Stock-List Demo Metadata - Java Adapter
- Compatible with Lightstreamer Android Client (Unified API Version) v. 5.0.0 or newer.
- For Lightstreamer Server version 7.3.2 or greater. Ensure that Android Client API is supported by Lightstreamer Server license configuration.
- For a version of this example compatible with Lightstreamer Android Client API version 4.x, please refer to this branch.
- For a version of this example compatible with Lightstreamer Server 7.0, please refer to this branch.
- For a version of this example compatible with Lightstreamer Android Client API version 1.x, please refer to this branch.