-
public interface ReactTextViewManagerCallback
This interface allows clients of ReactTextViewManager to customize or prepare object that represent text that will be rendered on the screen.
-
-
Method Summary
Modifier and Type Method Description abstract void
onPostProcessSpannable(Spannable text)
Callback executed right after the Spannable object is created by React. -
-
Method Detail
-
onPostProcessSpannable
abstract void onPostProcessSpannable(Spannable text)
Callback executed right after the Spannable object is created by React.
This callback can be used by different implementations of ReactTextViewManager to customizeSpannable or extend managed created by React.
-
-
-
-