match_parentの幅がRecyclerViewで機能しない


135

私のRecyclerViewと項目にはmatch_parent幅がありますが、結果は次のとおりです。 ここに画像の説明を入力してください

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

回答:


433

で項目を拡張しているアダプターでonCreateViewHolderinflate呼び出しの2番目のパラメーターはnull?です。

その場合parentは、onCreateViewHolder関数シグニチャーの最初のパラメーターであるに変更してください。

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

2番目のパラメーターが必要な場合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に設定した場合は "機能します"。何か案が ?OK、LinearLayoutでは機能しませんが、アイテムのrelativeLayoutでは機能します... wtf?
Cocorico

5
申し訳ありませんが、relativeLayoutで機能するため、LinearLayoutをRelativeLayoutに変更するだけです。しかし、RecyclerViewはmatch_parentであり、アイテムrootView(つまり、LinearLayout)もMatch_parentであり、機能しませんでした。初めてこれに直面した。
Cocorico

1
ああ、これはうまくいきます。髪を1時間引っ張った後。
Zhi Kai、

4
先ほど触れたように、なぜかこれはLinearLayoutでは機能せず、この修正でRelativeLayoutに切り替えるとうまくいくようです。
Nick Peppers

11
これは、LinearlayoutまたはConstrainlayoutでは機能しません。私はRelativelayoutに切り替える必要があり、それが機能しました
ymerdrengene 2017

18

ビューを拡張しているアダプターのonCreateViewHolder(...)メソッド内.. ViewGroupを親として定義する必要があります。これは、onCreateViewHolder(...)メソッドの最初のパラメーターから取得します。

ViewGroupを渡す2番目のパラメーターの以下の行を参照してください。これにより、ビューがその親に自動的に一致します。

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

私は幅にFrameLayoutwith 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実装のバグのように見えます(私は推測しています)。


layoutParamsのオーバーライドは、私を助けた唯一のソリューションでした。これがRecyclerViewのバグかどうか誰でも知っていますか?Googleバグトラッカーへのリンクに感謝します。
soshial

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の直接の子には使用しないでください。代わりに、constraintLeft / Right / Bottom / Top属性で0dpを使用してください。
DoruAdryan

3

私の場合、問題はRecyclerViewXML宣言にありまし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

私はこれを解決しました:

 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' であると推測できます。を使用して、1つまたはいくつかを全幅に拡張する必要があります。android:layout_weight="1" '

更新:冗長ながたくさんありますlayout_weight。それらをすべて ' wrap_content'にし、そのうちの1つだけを追加しますlayout_weight=1-最後のCustomTextViewです。このようにして、すべての空白スペースを占有します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.