Мой RecyclerView имеет много строк, но показывает только одну строку? - PullRequest
0 голосов
/ 08 мая 2019

его обзор переработчика внутри просмотрщика внутри обзора переработчика кажется, что все в порядке, даже если строка добавлена, но ничего не показывает. многие подобные вопросы уже задавались и отвечали, но ни один не решил мой

<android.support.v7.widget.CardView 
     xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:id="@+id/fn_file_field_card_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
      card_view:cardElevation="0dp">

     <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="@dimen/fn_field_margin_right_and_left"
        android:layout_marginTop="@dimen/fn_field_margin_top_or_bottom"
        android:layout_marginRight="@dimen/fn_field_margin_right_and_left"
        android:orientation="vertical">

        <ir.tenthwindow.lbs.views.PersianTextView
            android:id="@+id/fn_file_field_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="10dp"
            android:text="btn"
            android:textColor="@color/black"
            android:textSize="@dimen/fn_field_text_size"
            android:textStyle="bold" />

         <ir.tenthwindow.lbs.views.PersianTextView
             android:id="@+id/fn_file_field_btn"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:background="@drawable/button_green"
             android:gravity="center"
             android:maxLines="1"
             android:padding="10dp"
             android:text="@string/upload_file"
             android:textColor="@color/white"
             android:textSize="@dimen/fn_field_text_size" />
           <android.support.v7.widget.RecyclerView
            android:id="@+id/fn_field_images_RecyclerView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">


        </android.support.v7.widget.RecyclerView>

         <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginTop="@dimen/fn_field_line_margin_top"
            android:background="@color/fn_grey_line_border">
         </View>
     </LinearLayout>
  </android.support.v7.widget.CardView>

Спасибо заранее за помощь

Ответы [ 2 ]

1 голос
/ 08 мая 2019

Попробуйте изменить высоту окна рециркуляции до match_parent вместо wrap_content.

<android.support.v7.widget.RecyclerView
  android:id="@+id/fn_field_images_RecyclerView"
  android:layout_width="match_parent"
  android:layout_height="match_parent"/>

& высота макета в адаптере до wrap_content, если вы установите его как match_parent.

Кроме того, установите LinearLayoutManager в Vertical ориентацию.

1 голос
/ 08 мая 2019

Как уже упоминалось, вам нужен менеджер раскладки для просмотра переработчика. Это может быть добавлено в XML или программно. В xml:

<android.support.v7.widget.RecyclerView
  android:id="@+id/fn_field_images_RecyclerView"
  app:layoutManager="android.support.v7.widget.LinearLayoutManager"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>

Или программно:

LinearLayoutManager layoutManager = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
yourRecyclerView.setLayoutManager(layoutManager);

Обратите внимание, есть также GridLayoutManager, если вы хотите макет сетки.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...