I have a constraint layout that cannot scroll, all the views have to be visible all the time. The problem that I have is that with devices of height 1920 or less, the UI gets really crowded and some text views start overlapping, bottom gets cut off a little.
Layout structure is
<ConstraintLayout>
<LinearLayout />
<FrameLayout /> <-- this has an imageview of fixed height of 192dp
<some views..>
<last view> <-- has app:layout_constraintBottom_toBottomOf="parent" constraint
</ConstraintLayout>
How do I say height 1920 or below use a different layout? I tried some qualifiers such as sw320dp, layout-h1920dp (not a good choice) on Nexus 5 but it doesn't pickup the layout from those directories. How do I handle Nexus 5 in this case?
I don't think measuring the height and doing a dynamic layout is an attractive option.