android – 如何使用RecyclerView和CardView

android – 如何使用RecyclerView和CardView,第1张

概述我在 Android开发方面没有太多经验,并尝试在我的应用程序中实现RecyclerView. android studio的版本没有Android L,也没有安装选项.每次它说不使用android.support.widget.v7.RecyclerView并从导入包中禁用它.我也在Gradle.build的布局文件中给出了参考,但是我的问题仍然有人帮忙吗? 按照这一行 >材料设计中的CardV 我在 Android开发方面没有太多经验,并尝试在我的应用程序中实现RecyclerVIEw. androID studio的版本没有AndroID L,也没有安装选项.每次它说不使用androID.support.Widget.v7.RecyclerVIEw并从导入包中禁用它.我也在Gradle.build的布局文件中给出了参考,但是我的问题仍然有人帮忙吗?解决方法 按照这一行

>材料设计中的CardVIEw和RecyclerVIEw

http://icetea09.com/blog/2014/12/19/android-cardview-and-recyclerview-in-material-design/

将这些添加到依赖项中:

compile 'com.androID.support:cardvIEw-v7:22.2.0'    compile 'com.androID.support:recyclervIEw-v7:22.2.0'

并更新腰带

>每个例子:

CardVIEw

<androID.support.v7.Widget.CardVIEw    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    card_vIEw:contentpadding="16dp"    card_vIEw:cardElevation="2dp"    card_vIEw:cardCornerRadius="5dp">    <linearLayout        androID:layout_wIDth="fill_parent"        androID:layout_height="wrap_content"        androID:orIEntation="vertical">        <TextVIEw                        androID:layout_wIDth="fill_parent"            androID:layout_height="wrap_content"            androID:text="Title" />        <TextVIEw                        androID:layout_wIDth="fill_parent"            androID:layout_height="wrap_content"            androID:text="Content here" />    </linearLayout></androID.support.v7.Widget.CardVIEw>

RecyclerVIEw:

<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:orIEntation="vertical">    <androID.support.v7.Widget.RecyclerVIEw        androID:ID="@+ID/recycler_vIEw"        androID:layout_wIDth="match_parent"        androID:layout_height="match_parent"/></linearLayout>
总结

以上是内存溢出为你收集整理的android – 如何使用RecyclerView和CardView全部内容,希望文章能够帮你解决android – 如何使用RecyclerView和CardView所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1122709.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存