打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Android Material Design 卡片式开源库cardslib(多图)

如果你够酷的话你肯定知道cardslib,这是一个封装了各种CardView的和作为容器的CardListView,CardGridView的一个android控件库



提供的UI组件

Card Library provides several custom tags:

  • CardView to display a UI Card.

  • CardViewNative to display a UI Card with the Google CardView

  • CardListView to display a List Card.

  • CardGridView to display a Grid Card.

  • StaggeredGridView to display a Staggered Grid Card.

  • CardListDragDropView to display a List Card with drag and drop support.

  • CardRecyclerView to support the RecyclerView

  • CardTwoWayView to support the TwoWayView[1] library

It requires API 14+

Qu快速使用

Creating a Card is pretty simple.

First, you need an XML layout that will display the Card.

        it.gmariotti.cardslib.library.view.CardViewNative            android:id='@+id/carddemo'            android:layout_width='match_parent'            android:layout_height='wrap_content'            android:layout_marginLeft='12dp'            android:layout_marginRight='12dp'            android:layout_marginTop='12dp'/>

Then create a model:

      //Create a Card      Card card = new Card(getContext());      //Create a CardHeader      CardHeader header = new CardHeader(getContext());      ....      //Add Header to card      card.addCardHeader(header);

Last get a reference to the CardViewNative from your code, and set your Card.

       //Set card in the cardView       CardViewNative cardView = (CardViewNative) getActivity().findViewById(R.id.carddemo);       cardView.setCard(card);


本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
团队冲刺--第一阶段(二)
【Android】你可能还不知道的elevation、以及Z值等
View, ViewGroup, widget, LinearLayout等layout
Android 步步为营 第5营 代码控制UI,View group
【转】<viewStub />, <requestFocus />, <merge /> and <include />
Android里merge和include标签的使用
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服