Can we change the
private val processors = hashSetOf<CyaneaViewProcessor>()
to
private val processors = ArryList<CyaneaViewProcessor>()
Bcz if I override fun getViewProcessors() in My activity for textview.
1.It added not last val processors in between some index.
2.So TextViewProcessor call after getViewProcessors() of my activity and color of text not change.
Can we change the private val processors = hashSetOf<CyaneaViewProcessor>()
to
private val processors = ArryList<CyaneaViewProcessor>()
Bcz if I override fun getViewProcessors() in My activity for textview. 1.It added not last val processors in between some index. 2.So TextViewProcessor call after getViewProcessors() of my activity and color of text not change.
Thanks Akash