可扩展的自定义 CardView 不显示来自 Firebase 的 RecyclerView 的所有内容
Posted
技术标签:
【中文标题】可扩展的自定义 CardView 不显示来自 Firebase 的 RecyclerView 的所有内容【英文标题】:Extendable Custom CardView does not display all content of RecyclerView from Firebase 【发布时间】:2021-08-18 10:53:12 【问题描述】:我正在使用 CardView 创建可展开的项目,在其中显示 Firebase 信息。我测试了 Firebase 实现,它运行良好,这是屏幕截图:
在我这样创建可扩展 CardView 之后:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
tools:context=".campus">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="@color/purple_200"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:title="Кампус" />
<androidx.cardview.widget.CardView
android:id="@+id/cardView"
android:layout_
android:layout_
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_
android:layout_
android:background="@color/purple_200"
android:paddingBottom="8dp">
<ImageView
android:id="@+id/groupImage"
android:layout_
android:layout_
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:scaleType="centerCrop"
android:src="@drawable/ic_apartment"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/groupName"
android:layout_
android:layout_
android:layout_marginStart="16dp"
android:ellipsize="end"
android:gravity="center_vertical"
android:justificationMode="inter_word"
android:lines="1"
android:text="Parent"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="@+id/groupImage"
app:layout_constraintStart_toEndOf="@+id/groupImage"
app:layout_constraintTop_toTopOf="@+id/groupImage" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/expandableView"
android:layout_
android:layout_
android:paddingBottom="12dp"
android:layout_marginTop="12dp"
android:visibility="gone"
app:layout_constraintTop_toBottomOf="@+id/groupImage"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/childRecycler"
android:layout_
android:layout_
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="@id/expandableView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/expandableView" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
</androidx.constraintlayout.widget.ConstraintLayout>
为了使其扩展,我使用了以下代码:
expandableView = findViewById(R.id.expandableView);
cardView = findViewById(R.id.cardView);
cardView.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
if (expandableView.getVisibility()==View.GONE)
TransitionManager.beginDelayedTransition(cardView, new AutoTransition());
expandableView.setVisibility(View.VISIBLE);
else
TransitionManager.beginDelayedTransition(cardView, new AutoTransition());
expandableView.setVisibility(View.GONE);
);
但它没有正常工作。展开 CardView 后只显示 RecyclerView 的一个元素。这是这个截图:
如何让它显示所有 RecyclerView 内容?还有没有其他方法可以实现?
【问题讨论】:
【参考方案1】:1-> 重新格式化您的卡片,使其适合合理的屏幕尺寸。这需要您根据自己的视图和要显示的内容进行修改,您也可以使用ellipsis
将其关闭,并设置onClickListener
以在卡上显示详细信息。
或
2-> 添加HorizontalScrollView
作为RecyclerView
/CardView
的父级,以便您可以左右滚动。
<android.widget.HorizontalScrollView>
<!-- your params here-->
<androidx.cardview.widget.CardView>
<!-- your params here-->
</androidx.cardview.widget.CardView>
</android.widget.HorizontalScrollView>
【讨论】:
我觉得你不明白我的问题。我想让 CardView 展开并显示 Recycler 视图的所有上下文,它有 2 个孩子(如第一个屏幕截图所示)但在 Expandable CardView 内它只显示 1 个孩子(第二个屏幕截图)。以上是关于可扩展的自定义 CardView 不显示来自 Firebase 的 RecyclerView 的所有内容的主要内容,如果未能解决你的问题,请参考以下文章
来自 Toolkit for Windows Phone 的带有 ExpanderView 的自定义标头