7 インチの Samsung タブレットに StaggeredGridView を実装しようとしていますが、列数が 2 に設定されている場合、9 項目中 3 項目しか表示されません。列数が 3 に設定されている場合、9 項目中 4 項目が表示されます。
電話でも同じことがうまく機能しますが、7 インチのタブレットでは上記の動作が再現されます。
同じことで私を助けて、回避策を教えてください。
以下はxmlファイルです
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imgDashboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/dashboard_image" />
<com.etsy.android.grid.StaggeredGridView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/list_dashboard"
android:layout_below="@+id/imgDashboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:item_margin="0dp" />
</RelativeLayout>