私はアンドロイドスタジオでカスタムグリッドビューを作成しています。すべてのセルはイメージビューとテキストビューで構成されていますが、画像とテキストとの間には、Imageを参照してください。私は余分なスペースを取り除きたいのですが、私は解決策を見つけられません!ここで gridviewセルで余分なスペースを削除する方法 - Android
は、項目(セル)のレイアウトのコードです:<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:weightSum="5">
<ImageView
android:id="@+id/picture"
style="@style/Pic" />
<TextView
android:id="@+id/label"
style="@style/Text" />
そして、ここに私のメインのレイアウトのためのXMLです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary">
<TextView
style="@style/Main_Text"
android:text="@string/Main_Menu"/>
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/gridView"
android:numColumns="3"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"/>
'android:adjustViewBounds =" true "'をImageViewに追加してください。 –
android:adjustViewBounds = "true"をImageViewに追加し、scaleTypeを 'centerCrop'に設定します。それは余分なスペースを削除します – Vicky