From Nexus 5X spec it has 411x731 dp screen size.
How I understand that:
If I want recycler view with 2 column in portrait mode I should define column_count value in dimens.xml
<integer name="column_count">2</integer>
If I want recycler view with 3 column in landscape I should define column_count value = 3 in w-720dp dimens.xml. But it does not work. Recycler view has only 2 column.
But if define column_count value = 3 in w-600dp dimens.xml it works.
I don't understand why my nexus 5X uses values from w-600dp bucket in landscape while it has 731 dp screen width when in landscape.
Thank You!