I have some compound components that are used as my ListView items. To increase the performance I use view holder to render my ListView item but as each one has a compound component inside, it is still slow and rendering each compound component requires inflating the component each time.
Is there any way that I can use something like ViewHolder pattern for my compound component?