Перекрытие содержимого в виде сетки android

#android #json #gridview #android-cardview

#Android #json #просмотр сетки #android-cardview

Вопрос:

Я создаю приложение для Android, в котором я хочу отображать данные в виде таблицы. Мой веб-сервис работает нормально и успешно отображает данные в виде таблицы. Теперь я хочу, чтобы при заполнении данных во второй строке они перекрывались в первой строке. Как я могу решить эту проблему ниже?

введите описание изображения здесь

Просмотр сетки в моей деятельности.

 <GridView
        android:id="@ id/list"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:divider="@color/list_divider"
        android:numColumns="3"
        android:layout_marginTop="12dp"
        android:scrollbars="none"
        android:layout_marginBottom="12dp"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:verticalSpacing="15dp"
        android:horizontalSpacing="15dp"
        android:dividerHeight="1dp"/>
 

Ниже приведен пользовательский код макета адаптера.

 <?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:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:background="@drawable/layout_bg"
    android:gravity="center"
    android:orientation="vertical"
    android:paddingBottom="10dp">

    <androidx.cardview.widget.CardView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:cardCornerRadius="10dp"
        app:cardElevation="0dp">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="150dp">

            <!-- Thumbnail Image -->
            <com.android.volley.toolbox.NetworkImageView
                android:id="@ id/thumbnail"
                android:layout_width="match_parent"
                android:layout_height="150dp"
                android:layout_alignParentLeft="true"
                android:foregroundGravity="center"
                android:scaleType="fitXY"
                android:src="@drawable/demo_image" />

            <ImageView android:id="@ id/imgYoutube"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/youtube"
                android:visibility="gone"
                android:layout_centerInParent="true"></ImageView>

        </RelativeLayout>

    </androidx.cardview.widget.CardView>

    <!-- Movie Title -->
    <TextView
        android:id="@ id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignTop="@ id/thumbnail"
        android:layout_marginTop="5dp"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:text="Moin Khan"
        android:textColor="#000000"
        android:textSize="16sp"
        android:textStyle="bold" />

    <!-- Rating -->
    <TextView
        android:id="@ id/description"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingBottom="5dp"
        android:text="Complete course"
        android:textSize="12sp" />

</LinearLayout>
 

Комментарии:

1. Почему вы все еще используете using GridView ? это устаревший виджет уже давно. я использую. RecyclerView

Ответ №1:

Я думаю, что вам нужно использовать RecyclerView вместо GridView для ваших целей, поскольку у вас есть элементы с неодинаковой высотой, и это обычно вызывало проблемы с gridview. Используйте эти теги для вашего случая,

 recyclerView.setHasFixedSize(false);
recyclerView.setLayoutManager(new GridLayoutManager(this, 3));