Reference Guide

Java
public FMDisplayType displayType: Enum that indicates what mode to display the video in.
public enum FMDisplayType {
Fullscreen("fullscreen"),
Large("large"),
Small("small");
}
public FMVideoProvider contentProvider: Enum that informs you of where the video is
hosted.
public enum FMVideoProvider {
YouTube("youtube"),
Vimeo("vimeo"),
Custom("custom");
}
public String videoURL: A URL that points to the video.
public String videoPlayPictureURL: A URL that points to a picture the user must click
on for the video to play. This field may or may not exist
depending on your app’s style.
ImageExp
ImageExp contains an image that should be presented to the user. This class contains a helper method
to load the Image data using a background thread and upon completion presents the image in an
imageView of your choosing.
Java
public String imgURL: A URL that points to the image.
public void presentPictureInImageView(ImageView ImageView, ProgressBar progressBar);
HtmlExp
HtmlExp contains an html string that should be presented in a WebView or like UI element. Also,
included is a helper load the property htmlString directly into a webView provided.
Java
public String htmlString: An html content string that should be displayed.
public void presentHtmlInWebView(WebView webView);
UrlExp
UrlExp contains an url that should be presented in a WebView or like UI element. Also, included is a
helper load the property url directly into a webView provided.
Java
public String url: A url that should be loaded.
public void presentUrlInWebView(WebView webView);
Experience Properties
ExtremeLocation Android SDK Reference Guide for version 3.1.0 12