match_parent width не працює в RecyclerView


135

Мій продукт RecyclerView і елемент мають ширину_відповідності, але результат: введіть тут опис зображення

    <view
    class="android.support.v7.widget.RecyclerView"
    android:layout_width="match_parent"

та предмети:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:id="@+id/ll_itm"
android:orientation="horizontal"
android:layout_width="match_parent"

повний:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:id="@+id/ll_itm"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="100"
android:gravity="right"
>


<Button
    android:layout_width="0dp"
    android:layout_weight="15"
    android:layout_height="fill_parent"
    android:text="ملاحظات"
    android:id="@+id/button" />

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:layout_weight="20"
    android:gravity="center"
    >
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >

        <com.getbase.floatingactionbutton.FloatingActionButton
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            fab:fab_plusIconColor="#ff56ff83"
            fab:fab_colorNormal="@color/d_red"
            fab:fab_colorPressed="#ff5c86ff"
            fab:fab_size="mini"
            fab:fab_icon="@drawable/ic_remove_white"
            android:id="@+id/fab_rmv" />
        <esfandune.ir.elmikarbordiardakan.other.CustomTxtView
            android:layout_weight="25"
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:text="0"
            android:gravity="right|center_vertical"
            android:id="@+id/txt_takhir_itm" />
        <com.getbase.floatingactionbutton.FloatingActionButton
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            fab:fab_plusIconColor="@color/colorprimarylight"
            fab:fab_colorNormal="@color/colorprimarydark"
            fab:fab_colorPressed="@color/colorprimary"
            fab:fab_size="mini"
            fab:fab_icon="@drawable/ic_add_white"
            android:id="@+id/fab_add" />

    </LinearLayout>
</LinearLayout>
    <Spinner
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="10"
        android:id="@+id/sp_nomre_itm"

        android:entries="@array/degrees"/>


<LinearLayout
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:layout_weight="10"
    android:gravity="center"
    >
    <!--LinearLayout baraye ine ke nameshod fab ro weight behosh dad-->
    <com.getbase.floatingactionbutton.FloatingActionButton
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        fab:fab_plusIconColor="#ff56ff83"
        fab:fab_colorNormal="@color/d_green"
        fab:fab_colorPressed="@color/d_orange"
        fab:fab_size="normal"
        fab:fab_icon="@drawable/ic_done_white"
        android:id="@+id/fab_hazr" />



</LinearLayout>
<esfandune.ir.elmikarbordiardakan.other.CustomTxtView
    android:layout_weight="5"
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="100"
    android:gravity="right|center_vertical"
    android:id="@+id/txt_ghybtNumber_itm" />

<esfandune.ir.elmikarbordiardakan.other.CustomTxtView
        android:layout_weight="30"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="عباسعلی ملاحسینی اردکانی"
        android:gravity="right|center_vertical"
        android:id="@+id/txt_title_itm"
    android:layout_marginRight="10dp"
    />

<view
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:layout_weight="10"
    class="de.hdodenhof.circleimageview.CircleImageView"
    android:id="@+id/view"
    android:src="@drawable/mmrdf"
   />
</LinearLayout>

Відповіді:


434

У вашому адаптері, де ви надуваєте елемент onCreateViewHolder, другий параметр inflateдзвінка null?.

Якщо так, змініть його на parentперший параметр onCreateViewHolderпідпису функції.

View rootView = LayoutInflater.from(context).inflate(R.layout.itemLayout, parent, false);

Якщо вам потрібен другий параметр, nullколи ви отримаєте посилання на перегляд надуття, зробіть наступне

View rootView = LayoutInflater.from(context).inflate(R.layout.itemLayout, null, false);
RecyclerView.LayoutParams lp = new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
rootView.setLayoutParams(lp);
return new RecyclerViewHolder(rootView);

1
Для мене це не працює: якщо я встановив елемент rootView на width = "match_parent", але він "працює", якщо я встановив його, наприклад, 500dp. Будь-яка ідея? Гаразд, він не працює з LinearLayout, але працює з відносним компонуванням елемента ... wtf?
Cocorico

5
Sry, як це працює з RelaLayout, я просто змінюю LinearLayout на RelativeLayout. Але RecyclerView був match_parent, а елемент rootView (так що LinearLayout) також був Match_parent, і він не працював. Перший раз зіткнувся з цим.
Cocorico

1
О, чудово, це працює ... після того, як тягнути волосся на годину.
Чжи Кай

4
Так, як раніше згадувалося, чомусь це не працювало з LinearLayout, і переключення його на RelativeLayout з цим виправленням, здавалося, зробило трюк.
Нік Перець

11
Це не працює з Linearlayout або Constrainlayout. Мені довелося перейти на "Відносний
вихід",

18

Усередині методу адаптера onCreateViewHolder (...), де ви надуваєте подання .. ви повинні визначити ViewGroup як батьківський. Це отримаєте з першого параметра методу onCreateViewHolder (...).

дивіться нижній рядок у другому параметрі, я передаю ViewGroup. Це автоматично співставить подання з його батьківським:

rowView=inflater.inflate(R.layout.home_custom_list, parent,false);

/// повний код наведено нижче

public View onCreateViewHolder(ViewGroup parent, int position) {
    // TODO Auto-generated method stub
    View rowView;
        LayoutInflater inflater=(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        rowView=inflater.inflate(R.layout.home_custom_list, parent,false);

8

Я використовував FrameLayoutс MATCH_PARENTдля ширини і бачив таку саму поведінку з RecyclerView+ LinearLayoutManager. Жодна з перерахованих вище змін не працювала для мене, поки я не зробив наступне в onCreateViewHolderзворотному дзвінку:

@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    // create a new view
    View v = LayoutInflater.from(parent.getContext())
                           .inflate(R.layout.note_layout, parent, false);
    v.setLayoutParams(new RecyclerView.LayoutParams(
          ((RecyclerView) parent).getLayoutManager().getWidth(),
          context.getResources()
                 .getDimensionPixelSize(R.dimen.note_item_height)));

    return new ViewHolder(v);
}

Ясно виглядає як помилка (я здогадуюсь) реалізацію RecyclerView.


Переосмислення макетаParams було єдиним рішенням, яке мені допомогло. Хтось знає, чи це помилка в RecyclerView? Будемо вдячні за посилання на пошук помилок Google.
сошіал

5

спробуйте це, коли ви встановите параметри компонування для вашого елемента в адаптері.

 View viewHolder= LayoutInflater.from(parent.getContext())
            .inflate(R.layout.item, parent, false);
 viewHolder.setLayoutParams(new RecyclerView.LayoutParams(RecyclerView.LayoutParams.MATCH_PARENT, RecyclerView.LayoutParams.WRAP_CONTENT));
 ViewOffersHolder viewOffersHolder = new ViewOffersHolder(viewHolder);
 return viewOffersHolder;

5

Я зробив таке виправлення. У моєму випадку проблема з файлом макета діяльності, оскільки я використовую ConstraintLayout як макет кореневої активності. Можливо, буде і для вас.

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <include
        android:id="@+id/toolBar"
        layout="@layout/toolbar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="@color/accent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@id/toolBar" />
</android.support.constraint.ConstraintLayout>

2
У це важко повірити, але просто заміна мого оточуючого ConstraintLayout на LinearLayout вирішила це і для мене ...
fjc

match_parent не слід використовувати для прямих дітей ConstraintLayout. Натомість використовуйте 0dp з атрибутами constraintLeft / Right / Bottom / Top.
ДоруАдріан

3

У моєму випадку проблема полягала в RecyclerViewдекларації XML, layout_width0dp, що означає match_constraints, коли я змінив її match_parent, елементи почали заповнювати всю RecyclerViewширину:

<androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recyclerView"
            android:layout_width="0dp"  <-- changed this to "match_parent"
            android:layout_height="0dp"
            android:layout_marginBottom="45dp"
            android:background="@android:color/transparent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintHeight_default="wrap"
            app:layout_constraintHeight_max="360dp"
            app:layout_constraintHeight_min="60dp"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/header"/>

2

Я вирішив це за допомогою:

 myInflatedRowLayout.getLayoutParams().width = vg.getWidth();

Він замінює MATCH_PARENTфактичну ширину RecyclerView.


1

Це працювало для мене.

замініть це

   View view = View.inflate(parent.getContext(), R.layout.row_timeline, null);
   return new TimeLineViewHolder(view, viewType);

цим

 View rootView = LayoutInflater.from(context).inflate(R.layout.row_timeline, null, false);
        RecyclerView.LayoutParams lp = new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        rootView.setLayoutParams(lp);
        return new TimeLineViewHolder(rootView, viewType);

0

Неможливо побачити ваш повний код, але можна здогадатися, що деякі перегляди у вашому LinearLayout є " wrap_content". Потрібно змусити один або деякі з них розширитись на повну ширину за допомогою ' android:layout_weight="1"'

оновлення: у вас багато зайвих layout_weight. Зробіть їх усіма ' wrap_content' і лише для одного додайте layout_weight=1- для останнього CustomTextView. Таким чином, він займе весь порожній простір.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.