android 列表视图页脚循环视图未显示

13z8s7eq  于 2022-11-27  发布在  Android
关注(0)|答案(1)|浏览(145)

我有ListView的版面配置。我需要新增HeaderViewFooterViewListView。我已经新增页首检视和页尾检视。页尾检视未完全显示。
标题视图:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">
<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:scaleType="fitXY"
    android:src="@drawable/giftcard_banner" />
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right|center"
    android:layout_marginRight="20dip"
    android:src="@drawable/loyalty_card" />
   </FrameLayout>

页脚视图:

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/snow_white_light"
android:orientation="vertical">

<TextView
    android:id="@+id/txtSimilarShops"
    style="@style/SimpleTextViewSmall"
    android:layout_gravity="left|top"
    android:background="@color/blue"
    android:gravity="left|center"
    android:padding="10dip"
    android:text="Similar Shops"
    android:textColor="@color/White" />

    <android.support.v7.widget.RecyclerView
     android:id="@+id/recyclerView"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:scrollbars="horizontal"
     android:visibility="visible" />
   </LinearLayout>

Java:我已经添加了这样的内容,但是RecyclerView没有显示。

View headerView = getLayoutInflater().inflate(R.layout.header, null);
 listRewards.addHeaderView(headerView);
 View footerView = getLayoutInflater().inflate(R.layout.footer, null);
 txtSimilarShops = (TextView) footerView.findViewById(R.id.txtSimilarShops);
 recyclerView = (RecyclerView) footerView.findViewById(R.id.recyclerView);
 LinearLayoutManager layoutManager = new LinearLayoutManager(RewardsDetails.this);
 layoutManager.setOrientation(LinearLayoutManager.HORIZONTAL);
 recyclerView.setLayoutManager(layoutManager);
 listRewards.addFooterView(footerView);

是否可以在列表视图的页脚添加回收者视图。请提出您的想法。谢谢

wgx48brx

wgx48brx1#

编辑:

此答案中的信息不再相关。请参阅this answer以获取最新解决方案。
发生这种情况是因为RecyclerView布局不能仅仅推导其内容大小,并且android:layout_height="wrap_content"不太适用于该类。
但是,您可以提供自定义的LayoutManager来处理这种情况。

相关问题