android-cardview简单使用

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

cardview是5.0以上版本的控件,是一个卡片式布局,继承framlayout,但是可以使用兼容包老兼容4.0以上的设备。

测试环境是android studio

1.加入依赖:

compile 'com.android.support:cardview-v7:21.0.3'

2.写布局:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:app="http://schemas.android.com/apk/res-auto"  
    android:id="@+id/card_view"  
    android:layout_width="match_parent"  
    android:layout_height="wrap_content"  
    app:cardCornerRadius="4dp"  
    app:cardBackgroundColor="@color/style_color_primary">  
  
    <LinearLayout  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content">  
        <TextView  
            android:layout_width="wrap_content"  
            android:layout_height="wrap_content"  
            android:text="hello cardview!"/>  
    </LinearLayout>  
  
  
</android.support.v7.widget.CardView>

注意:这里有两个属性cardCornerRadius和cardBackgroundColor,已经基本上见名知其意了,第一个是圆角半径,第二个是背景颜色。

还有一个elevator属性,但是只有在5.0以上版本才能显示出来效果啦。

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:用SSLSocketFactory 连接https的地址

下一篇:Android 上拉刷新列表数据