Package org.robolectric.shadows
Class ShadowVoiceInteractionService
java.lang.Object
org.robolectric.shadows.ShadowContextWrapper
org.robolectric.shadows.ShadowService
org.robolectric.shadows.ShadowVoiceInteractionService
@Implements(value=android.service.voice.VoiceInteractionService.class, minSdk=21) public class ShadowVoiceInteractionService extends ShadowService
Shadow implementation of
VoiceInteractionService
.-
Constructor Summary
Constructors Constructor Description ShadowVoiceInteractionService()
-
Method Summary
Modifier and Type Method Description Bundle
getLastSessionBundle()
Returns the last Bundle object set viasetUiHints(Bundle bundle)
or null if there wasn't any.Bundle
getLastUiHintBundle()
Returns the last Bundle object set viasetUiHints(Bundle bundle)
or null if there wasn't any.List<Bundle>
getPreviousUiHintBundles()
Returns list of bundles provided with calls tosetUiHints(Bundle bundle)
in invocation order.protected static boolean
isActiveService(Context context, ComponentName componentName)
protected void
onReady()
static void
reset()
Resets this shadow instance.static void
setActiveService(ComponentName activeService)
Sets return value forisActiveService(Context context, ComponentName componentName)
method.protected void
setUiHints(Bundle hints)
protected void
showSession(Bundle args, int flags)
Methods inherited from class org.robolectric.shadows.ShadowService
getForegroundServiceType, getLastForegroundNotification, getLastForegroundNotificationId, getNotificationShouldRemoved, getStopSelfId, getStopSelfResultId, isForegroundStopped, isLastForegroundNotificationAttached, isStoppedBySelf, onDestroy, startForeground, startForeground, stopForeground, stopForeground, stopSelf, stopSelf, stopSelfResult
Methods inherited from class org.robolectric.shadows.ShadowContextWrapper
clearBroadcastIntents, clearNextStartedActivities, clearStartedServices, denyPermissions, denyPermissions, getAllStartedServices, getBroadcastIntents, getBroadcastIntentsForUser, getBroadcastOptions, getNextStartedActivity, getNextStartedActivityForResult, getNextStartedService, getNextStoppedService, grantPermissions, grantPermissions, peekNextStartedActivity, peekNextStartedActivityForResult, peekNextStartedService, removeSystemService
-
Constructor Details
-
ShadowVoiceInteractionService
public ShadowVoiceInteractionService()
-
-
Method Details
-
setActiveService
Sets return value forisActiveService(Context context, ComponentName componentName)
method. -
onReady
-
setUiHints
-
showSession
-
isActiveService
@Implementation protected static boolean isActiveService(Context context, ComponentName componentName) -
getPreviousUiHintBundles
Returns list of bundles provided with calls tosetUiHints(Bundle bundle)
in invocation order. -
getLastUiHintBundle
Returns the last Bundle object set viasetUiHints(Bundle bundle)
or null if there wasn't any. -
getLastSessionBundle
Returns the last Bundle object set viasetUiHints(Bundle bundle)
or null if there wasn't any. -
reset
Resets this shadow instance.
-