Package com.xtremelabs.robolectric.shadows

Provides shadow implementations of classes in the Android SDK.

See:
          Description

Class Summary
ShadowAbsSpinner  
ShadowAbstractCursor  
ShadowActivity  
ShadowAdapterView  
ShadowAddress  
ShadowAlertDialog  
ShadowAlertDialog.ShadowBuilder Shadows the android.app.AlertDialog.Builder class.
ShadowApplication Shadows the android.app.Application class.
ShadowAppWidgetManager  
ShadowAudioManager  
ShadowBaseAdapter  
ShadowBitmapDrawable  
ShadowBundle  
ShadowCanvas Shadows the android.graphics.Canvas class.
ShadowCanvas.CirclePaintHistoryEvent  
ShadowComponentName Shadows the android.content.ComponentName class.
ShadowCompoundButton Shadows the android.widget.CompoundButton class.
ShadowContentValues Shadows the android.content.ContentValues class.
ShadowContext Calls through to the resourceLoader to actually load resources.
ShadowContextThemeWrapper  
ShadowContextWrapper  
ShadowDialog  
ShadowDisplay A shadow for Display with some reasonable defaults
ShadowDrawable  
ShadowEditText A shadow for EditText that provides support for listeners
ShadowGeocoder A shadow for Geocoder that supports simulated responses and failures
ShadowGeoPoint  
ShadowHandler Shadow for Handler that puts posted Runnables into a queue instead of sending them to be handled on a separate thread.Runnables that are scheduled to be executed immediately can be triggered by calling ShadowHandler.flush().
ShadowImageView  
ShadowIntent  
ShadowIntentFilter Shadow of IntentFilter implemented with a List
ShadowItemizedOverlay Shadow for ItemizedOverlay that just keeps track of what has been called and enables the return value for ShadowItemizedOverlay.hitTest(com.google.android.maps.OverlayItem, android.graphics.drawable.Drawable, int, int) to be set up by tests.
ShadowKeyEvent  
ShadowLayoutInflater  
ShadowLayoutParams  
ShadowListActivity  
ShadowListView  
ShadowLocation  
ShadowLocationManager  
ShadowLooper  
ShadowMapActivity  
ShadowMapController  
ShadowMapView  
ShadowMotionEvent  
ShadowOverlayItem  
ShadowPaint  
ShadowPath  
ShadowPath.Point  
ShadowPendingIntent  
ShadowPoint  
ShadowPreferenceManager  
ShadowRect  
ShadowRemoteViews  
ShadowResources  
ShadowService  
ShadowSettings  
ShadowSettings.ShadowSecure  
ShadowSettings.ShadowSystem  
ShadowSpannableStringBuilder  
ShadowSQLiteDatabase  
ShadowTextUtils  
ShadowTextView  
ShadowTextView.CompoundDrawables  
ShadowToast  
ShadowTypedValue  
ShadowURLSpan  
ShadowView  
ShadowViewGroup  
ShadowWifiManager  
ShadowZoomButtonsController  
 

Package com.xtremelabs.robolectric.shadows Description

Provides shadow implementations of classes in the Android SDK. All of the classes in this package ("Shadow" classes) are annotated with the Implements annotation, which causes the implementations of the associated Android classes to be replaced, on a method by method basis, with their annotated counterparts on the Shadow class.

See Also:
Implements