-
public interface ExtensionSupportIn case you need to provide different configuration for a specific Android UI framework that is not supported by our SR instrumentation layer (e.g Material elements) you can implement this class.
-
-
Method Summary
Modifier and Type Method Description abstract Stringname()Identifier for the extension. abstract List<MapperTypeWrapper<?>>getCustomViewMappers()Use this method if you want to apply a custom WireframeMapper for a specific View. abstract List<OptionSelectorDetector>getOptionSelectorDetectors()Implement this method if you need to return some specific implementations for the OptionSelectorDetector. abstract List<DrawableToColorMapper>getCustomDrawableMapper()Implement this method if you need to add some specific mapper of drawable for extensions. -
-
Method Detail
-
getCustomViewMappers
abstract List<MapperTypeWrapper<?>> getCustomViewMappers()
Use this method if you want to apply a custom WireframeMapper for a specific View.
-
getOptionSelectorDetectors
abstract List<OptionSelectorDetector> getOptionSelectorDetectors()
Implement this method if you need to return some specific implementations for the OptionSelectorDetector.
-
getCustomDrawableMapper
abstract List<DrawableToColorMapper> getCustomDrawableMapper()
Implement this method if you need to add some specific mapper of drawable for extensions.
-
-
-
-