简体   繁体   中英

CardView is wrap_content list item instead of match_parent

Card View wrapping content instead of match parent. All list items is wrapped instead of matching its width. 截屏

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

    <android.support.v7.widget.CardView
        android:id="@+id/card_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:layout_margin="@dimen/card_margin"
        android:elevation="3dp"
        card_view:cardCornerRadius="@dimen/card_album_radius">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ImageView
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:id="@+id/Album_Art"
                android:layout_alignParentTop="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:src="@drawable/ic_google_music" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:text="@string/song_name"
                android:id="@+id/Sname"
                android:layout_alignParentTop="true"
                android:layout_toRightOf="@+id/Album_Art"
                android:layout_toEndOf="@+id/Album_Art" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:text="@string/artist_album"
                android:id="@+id/Sdata"
                android:layout_centerVertical="true"
                android:layout_centerHorizontal="true"
                android:layout_toRightOf="@+id/Album_Art"
                android:layout_toEndOf="@+id/Album_Art"/>

        </RelativeLayout>
    </android.support.v7.widget.CardView>
</LinearLayout>

Manually setting width works. When i set it to a large dp value, it works fine, except that the list item is out of the window. I don't understand why match_parent doesn't work. Any leads on how to fix this would be greatly appreciated.

Are you using a recyclerView ? if so, you should override this on layoutmanager like this :

    layoutManager = new LinearLayoutManager(getActivity()) {
            @Override
            public RecyclerView.LayoutParams generateDefaultLayoutParams() {
                return new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
                        ViewGroup.LayoutParams.WRAP_CONTENT);
            }
        };
    }

If you are using a RecyclerViewAdapter , make sure you are using the first signature of inflate method instead of the second in the onCreateViewHolder .

1. inflate(LayoutInflater inflater, ViewGroup root, boolean attachToRoot)  

2. inflate(LayoutInflater inflater)

And, be sure to pass parent for root & true/false for attachToRoot.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM