gpt4 book ai didi

android - RecyclerView 可扩展的 cardView

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:39:27 35 4
gpt4 key购买 nike

我用 RecyclerView 做了一个小项目,里面有 CardView 项目。我创建了可扩展卡(通过按卡内的小按钮进行扩展)。每张卡片始终包含可见部分 (id:top_layout) 和可扩展部分 (id:expandable_part_layout)。

问题是,当我展开最后一个项目或展开后的项目底部边缘低于 RecyclerView 的底部边缘时(项目或展开项目的某些部分对用户不可见),RecyclerView 应该向上滚动所有项目以显示我的整个项目展开。我尝试使用 scrollToPosition 和类似的方法滚动到扩展卡片的末尾,但没有成功。

所以,我的问题是如何在我展开卡片后向上滚动 RecyclerView 关于卡片展开部分的高度? - 这是我的想法,也许有人有更好的解决方案。

<android.support.v7.widget.CardView 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="wrap_content"
app:cardCornerRadius="8px"
app:cardPreventCornerOverlap="false">

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

<RelativeLayout
android:id="@+id/top_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="false"
android:layout_alignParentTop="true"
>
<!-- some other controls -->

<ImageButton
android:id="@+id/card_header_inner_expand_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="?android:selectableItemBackground"
android:clickable="true"
android:padding="6dp"
android:src="@drawable/expand_icon" />

</RelativeLayout>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/expandable_part_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/top_layout"
android:animateLayoutChanges="true"
android:clickable="false"
android:visibility="gone">

<RadioGroup
android:id="@+id/extened_stage_radiogroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:orientation="vertical">

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

</RadioGroup>

<!-- some other controls -->

</RelativeLayout>
</RelativeLayout>

最佳答案

您使用什么技术来做到这一点?

我遇到了同样的情况,但对我来说问题是本教程中的这些函数 ExpandAndCollapseViewUtil.expand()ExpandAndCollapseViewUtil.collapse() Diseño Android: Tarjetas con CardView所以我没有使用它。取而代之的是,我只是显示/隐藏卡片 View 的 View 而没有任何动画。

关于android - RecyclerView 可扩展的 cardView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31686856/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com