I have a list of items and I'm using RecyclerView to showing it.
This is an example of my list:
I need to understand what is better to use for item layout: RelativeLayout or ConstraintLayout in my case.
On the one hand, the RelativeLayout is considered as deprecated and recommended to use ConstraintLayout. But at the same time, it is better to use the ConstraintLayout when there are many child views, and then we will get a performance improvement. But I only have two child views and I have a feeling that the ConstraintLayout can only hurt.
Please tell me which view group is better to choose in my case?