public class

LaunchOptions

extends Object
implements Parcelable
java.lang.Object
   ↳ com.google.android.gms.cast.LaunchOptions

Class Overview

An object that holds options that affect how a receiver application is launched. See launchApplication(GoogleApiClient, String, LaunchOptions).

Summary

Nested Classes
class LaunchOptions.Builder A builder for LaunchOptions objects. 
[Expand]
Inherited Constants
From interface android.os.Parcelable
Public Constructors
LaunchOptions()
Public Methods
boolean equals(Object obj)
String getLanguage()
Returns the language, or null if none was specified.
boolean getRelaunchIfRunning()
Returns the "relaunch if running" flag.
int hashCode()
Overridden to return a hashcode of the device ID.
void setLanguage(String language)
Sets the language to be used by the receiver application.
void setRelaunchIfRunning(boolean relaunchIfRunning)
Sets the "relaunch if running" flag.
String toString()
Returns a string representation of this object.
void writeToParcel(Parcel out, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Public Constructors

public LaunchOptions ()

Public Methods

public boolean equals (Object obj)

Parameters
obj Object
Returns
boolean

public String getLanguage ()

Returns the language, or null if none was specified.

Returns
String

public boolean getRelaunchIfRunning ()

Returns the "relaunch if running" flag.

Returns
boolean

public int hashCode ()

Overridden to return a hashcode of the device ID.

Returns
int

public void setLanguage (String language)

Sets the language to be used by the receiver application. If not specified, the sender device's default language is used.

Parameters
language String: The language

public void setRelaunchIfRunning (boolean relaunchIfRunning)

Sets the "relaunch if running" flag. If the flag is set, the receiver application will be relaunched even if it is already running. The flag is not set by default.

Parameters
relaunchIfRunning boolean

public String toString ()

Returns a string representation of this object.

Returns
String

public void writeToParcel (Parcel out, int flags)

Parameters
out Parcel
flags int