码迷,mamicode.com
首页 > 移动开发 > 详细

【Android】CardView

时间:2019-04-22 17:58:50      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:文件中   nta   radius   center   The   官方   car   android   height   

  • 官方地址
  • 引入v7库
  • 创建卡片

 

官方地址

https://developer.android.com/reference/android/support/v7/widget/CardView

https://developer.android.com/guide/topics/ui/layout/cardview

 

引入v7库

原文:

The CardView widget is part of the v7 Support Libraries.

如果要使用,这个组件,就要引入v7支持库。

implementation ‘com.android.support:cardview-v7:28.0.0‘

 

创建卡片

直接在布局文件中使用这个组件即可,示例:

<android.support.v7.widget.CardView
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:id="@+id/card_view"
        android:layout_gravity="center"
        android:layout_width="200dp"
        android:layout_height="200dp"
        card_view:cardCornerRadius="4dp">
</android.support.v7.widget.CardView>

【Android】CardView

标签:文件中   nta   radius   center   The   官方   car   android   height   

原文地址:https://www.cnblogs.com/Deonew/p/10751571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!