match_parent width在RecyclerView中不起作用

时间:2015-06-07 07:30:19

标签: android android-recyclerview

我的RecyclerView和item有match_parent宽度,但结果是: enter image description here

    <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>

11 个答案:

答案 0 :(得分:304)

在适用于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 :(得分:17)

在你正在给视图膨胀的适配器的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);

答案 2 :(得分: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;

答案 3 :(得分:4)

我使用@RunWith(SpringRunner.class) @SpringBootTest(classes = Application.class) public class FileStorageMemDBTest FrameLayout作为宽度,并且MATCH_PARENT + RecyclerView看到相同的行为。在我LinearLayoutManager回调中执行以下操作之前,以上所有更改都不适用于我:

onCreateViewHolder

显然看起来像是(我猜测)RecyclerView实施中的一个错误。

答案 4 :(得分:4)

我已经完成了这样的修复。在我的情况下活动布局文件的问题,因为我使用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>

答案 5 :(得分:3)

我用以下方法解决了这个问题:

.nav-tabs { 
left:0; 
width: 49%; 
padding-left: 50px; 
background:none;
} 

它正在将 myInflatedRowLayout.getLayoutParams().width = vg.getWidth(); 替换为MATCH_PARENT的实际宽度。

答案 6 :(得分:0)

无法看到您的完整代码,但可以猜测,您的LinearLayout中的某些视图是“wrap_content”。您需要使用“android:layout_weight="1"

将其中一个或一些扩展到整个宽度

更新: 你有很多冗余的layout_weight。将它们全部设为“wrap_content”,并且只为其中一个添加layout_weight=1 - 为最后一个CustomTextView。这样,它将占据所有空白区域。

答案 7 :(得分:0)

这对我有用。

替换此

Attribute

以此

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

答案 8 :(得分:0)

在我的情况下,问题出在RecyclerView XML声明中,layout_width为0dp,这意味着匹配约束,当我将其更改为match_parrent时,项目开始填充所有{{1 }}宽度:

RecyclerView

答案 9 :(得分: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子视图即可解决问题,不知道为什么。

答案 10 :(得分:0)

只需在根中添加一个高度为 0 和全宽的虚拟视图对我有用。

<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context=".screen.gallery.GalleryFragment">

        <!----DUMMY VIEW----->
        <View
            android:layout_width="match_parent"
            android:layout_height="0dp"
            />

      
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/navigationList"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
          />