使用" match_parent"时,RecyclerView列表项视图不会始终使用所有高度。

时间:2015-05-08 09:21:05

标签: android android-recyclerview

CardView layout_width="match_parent" does not match parent RecyclerView width类似,但我试图让 ((RelativeLayout)findViewById( R.id.relativeLayoutAds)).addView(adView); 正常工作。

我正在尝试使用layout_height="match_parent"重现GridView' drawSelectorOnTop

我的列表项简化的xml是:

RecyclerView

夸大布局的代码是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/menu_category_adapter_item_row"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:minHeight="?android:listPreferredItemHeight">

    <TextView
        android:id="@+id/menu_category_adapter_item_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/text_color_main"/>

    <View
        android:id="@+id/menu_category_adapter_item_selector"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/bg_list_item"
        android:clickable="true"/>

</RelativeLayout>

Selector drawable bg_list_item.xml是:

return new ViewHolder(LayoutInflater.from(parent.getContext())
        .inflate(R.layout.menu_category_adapter_item, parent, false));

Drawable bg_list_item_pressed.xml是:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/bg_list_item_pressed"/>
    <item android:state_selected="true" android:drawable="@drawable/bg_list_item_selected"/>
    <item android:drawable="@drawable/bg_list_item_normal"/>
</selector>

如果我硬编码高度,例如<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#3000"/> </shape> 对于选择器视图,显示选择器,但项目可以更改高度,因此我无法将其硬编码为变通方法。

我尝试过使用layout_height="32dp"layout_alignParentTop但没有运气。

值得注意的是,它不一致有效。在8个项目(2行,4个项目)的网格上,项目1,3和4显示选择器。

1 个答案:

答案 0 :(得分:0)

you can setLayoutParams for RecyclerView's child view