Я хотел создать сетку с ячейкой изображений, чтобы показать некоторые коллекции изображений в моем приложении в списке aMain, код работает нормально, а изображения отображаются в списке, но проблема в том, что все ячейки показывают только 2 изображения (2 столбца, которые я уже указал в макете gridview), в то время как я заполнил список gridview 5 изображениями !!GridView As ListView Cell не отображает все элементы
ее мои макеты:
Главная ListView,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.mtids.gridviewaslistviewcell.MainActivity">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/LV" />
</LinearLayout>
и GridView макет,
<?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">
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="2"
android:scrollbars="vertical"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:id="@+id/cgrid" />
</LinearLayout>
и расположение ImageView клеток,
<?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"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="150dp"
android:layout_height="150dp"
app:srcCompat="@mipmap/ic_launcher"
android:id="@+id/cimage" />
</LinearLayout>
любые идеи будет много ppreciated
Пробовали ли вы удаление numColumns из Grid View? –
Вы можете ссылаться на этот URL: - http://stackoverflow.com/a/27353336/5860087 –
Все еще не работает –