gpt4 book ai didi

android - 如何在 fragment 中添加回收者 View 或卡片 View ?

转载 作者:行者123 更新时间:2023-11-29 20:23:22 24 4
gpt4 key购买 nike

我已经在 Android 中创建了 recyclerView 和 CardView。现在我想将它添加到将在单击抽屉导航中的相应选项卡时显示的三个 fragment 之一。那么如何将它添加到 fragment 中。

任何人都可以帮助我这样做。非常感谢!

最佳答案

首先在您的项目中添加支持 v7 库,然后将其放入 xml 文件中。

  <android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent">

</android.support.v7.widget.RecyclerView>

然后在您的 fragment 中放入这些行。

scheduler_day_view_horizontal_recyclerview = (RecyclerView) v.findViewById(R.id.my_recycler_view);
layoutManager = new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false);
scheduler_day_view_horizontal_recyclerview.setLayoutManager(layoutManager);
scheduler_day_view_horizontal_recyclerview.setItemAnimator(new DefaultItemAnimator());
scheduler_day_view_horizontal_recyclerview.setHasFixedSize(true);

然后将适配器设置为 RecyclerView。

有关 cardview 和 Recycler view 的更多详细信息,请访问 here

关于android - 如何在 fragment 中添加回收者 View 或卡片 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32860312/

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