0
我有下一個GridView佈局,我從它們的適配器膨脹。我正在顯示佈局和標題,但我看不到圖像。無論如何,我看到屏幕上的空白。任何想法?GridView項目佈局不顯示圖像
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="200dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="150dp"
app:srcCompat="@drawable/ic_icon_normal"
android:id="@+id/imageView" />
<TextView
android:text="Title of the Item"
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/titleButton"
tools:text="Title of the Item"
android:textAlignment="center"
android:gravity="center_vertical" />
</LinearLayout>
顯示,請您適配器的一些代碼。 – Kyrmyzyanik
發佈您的適配器代碼。 –