match_parent width ไม่ทำงานใน RecyclerView


145

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>

คำตอบ:


447

ในอะแดปเตอร์ของคุณที่คุณกำลังขยายรายการ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 แต่ใช้งานได้กับ relativeLayout ในรายการ ... wtf?
Cocorico

5
Sry เนื่องจากใช้งานได้กับ relativeLayout ฉันจึงเปลี่ยน LinearLayout เป็น RelativeLayout แต่ RecyclerView เป็น match_parent และรายการ rootView (ดังนั้น LinearLayout) ก็เป็น Match_parent ด้วยและไม่ได้ผล ครั้งแรกที่ฉันเผชิญกับสิ่งนี้
Cocorico

1
เยี่ยมมากงานนี้.. หลังจากดึงผมไปหนึ่งชั่วโมง
Zhi Kai

4
ใช่ตามที่กล่าวไว้ก่อนหน้านี้ด้วยเหตุผลบางประการสิ่งนี้ใช้ไม่ได้กับ LinearLayout และการเปลี่ยนเป็น RelativeLayout ด้วยการแก้ไขนี้ดูเหมือนจะทำเคล็ดลับ
Nick Peppers

13
สิ่งนี้ใช้ไม่ได้กับ Linearlayout หรือ Constrainlayout ฉันต้องเปลี่ยนเป็น Relativelayout แล้วมันก็ใช้ได้
ymerdrengene

19

ภายในเมธอด onCreateViewHolder (... ) ของอะแด็ปเตอร์ที่คุณกำลังขยายมุมมอง .. คุณต้องกำหนด ViewGroup เป็นพาเรนต์ซึ่งคุณจะได้รับจากพารามิเตอร์ที่ 1 ของเมธอด 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


1
การลบล้าง layoutParams เป็นทางออกเดียวที่ช่วยฉันได้ ใคร ๆ ก็รู้ว่านี่เป็นบั๊กใน 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

1
ไม่ควรใช้ match_parent สำหรับลูกโดยตรงของ ConstraintLayout ให้ใช้ 0dp กับแอตทริบิวต์ constraintLeft / Right / Bottom / Top แทน
DoruAdryan

4

ในกรณีของฉันปัญหาอยู่ในRecyclerViewการประกาศ XML layout_widthคือ 0dp ซึ่งหมายถึง 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

สิ่งนี้ได้ผลสำหรับฉัน

แทนที่สิ่งนี้

   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 ล่าสุด วิธีนี้จะใช้พื้นที่ว่างทั้งหมด


0

ฉันติดอยู่กับปัญหานี้มาระยะหนึ่งแล้วและวิธีแก้ปัญหาที่ได้ผลสำหรับฉันคือการวาง 2 มุมมองกับ match_parent หนึ่งในอีกมุมมอง

ถ้าฉันทำสิ่งนี้กับเค้าโครงรายการของฉัน:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="#F00"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_height="match_parent">

</RelativeLayout>

แม้ว่าจะเป็นเลย์เอาต์แบบสัมพัทธ์ตามที่คนอื่น ๆ กล่าวถึงและฉันกำลังส่งผ่านมุมมองหลัก แต่เป็นเท็จในตัวพอง แต่ก็จะไม่ปรากฏเลย (พื้นหลังสีแดงเพื่อตรวจสอบ)

แต่เมื่อฉันทำสิ่งนี้:

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

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:background="#0F0"
        android:layout_height="match_parent"/>

</RelativeLayout>

เค้าโครงสีเขียวปรากฏขึ้นและใช้พื้นที่ทั้งหมด

ดังนั้นเพียงแค่มีมุมมองเด็กภายในมุมมองหลักโดย match_parent ก็แก้ปัญหาได้ก็ไม่รู้ว่าทำไม

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.