Skip to content

This project contains a full example of an Android Kotlin application that employs the Lightstreamer Android Client library to subscribe to real-time updates.

License

Notifications You must be signed in to change notification settings

Lightstreamer/Lightstreamer-example-AdvStockList-client-android-kotlin

Repository files navigation

Lightstreamer - Stock-List Demo - Android Kotlin Client

This project contains a full example of an Android application (Kotlin version) that employs the Lightstreamer Android Client library to subscribe to real-time updates. An equivalent version based on Java instead of Kotlin is available as well.

An extended version, including support for GCM push notifications (Java version) is also available: Stock-List Demo with GCM Push Notifications - Android Client

Live Demo

screenshot

QR

(To install the app from the Google Play Store, you can also use the above QR code)

Details

This is a Kotlin-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.

Dig the Code

  • StockListDemoApplication.kt is the class representing the application itself. It creates and manage the LightstreamerClient instance that is shared by the other classes. A proxy to such instance is exposed as a singleton to the entire application.
  • StockListDemo.kt is the entry point and only Activity of the application. It contains two Fragments, the manu bar for the app and listens to LightstreamerClient status events to show the connection status to the user. The two Fragment are both visible if the application runs on tablet; on the contrary, only one Fragment is visible and are exchanged based on the user interaction
  • SubscriptionFragment.kt represents a Fragment containing a subscription that is started/stopped based on the lifecycle of the Fragment. Please note that this class does not actually extend Fragment.
  • StocksFragment.kt and DetailsFragment.kt are the classes representing the two fragments of the application.
  • Chart.kt 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.

Install

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 deploy release of this project and extract the Android_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.

Build

Setup the IDE

Note that you can skip this section and build the application without using any IDE.

To open the project in Android Studio, install Kotlin plugin (if missing), import the provided Gradle project.

Deploy

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. In the former case, the example requires that the QUOTE_ADAPTER has to be deployed in your local Lightstreamer server instance; the LiteralBasedProvider is also needed, but it is already provided by Lightstreamer server.

Build

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

You might also use a different build tool (e.g.: Maven, Ant, etc.) by converting the provided Gradle build files.

See Also

Lightstreamer Adapters Needed by This Demo Client

Related Projects

Lightstreamer Compatibility Notes

  • Compatible with Lightstreamer Android Client API v. 5.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 Android Client API version 2, please refer to this tag.
  • For a version of this example compatible with Lightstreamer Android Client API version 1.1, please refer to this tag.

About

This project contains a full example of an Android Kotlin application that employs the Lightstreamer Android Client library to subscribe to real-time updates.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages