>材料设计中的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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)