Android控件CardView实现卡片效果

 更新时间:2020年02月04日 10:36:35   作者:cf8833  
这篇文章主要为大家详细介绍了Android控件CardView实现卡片效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

这是android新推出的一个,让卡片带立体感的一个控件,就是一个卡牌,有点类似于布局那种的东西,里面可以添加控件内容

先看看运行的效果图:

1.添加依赖

implementation 'com.android.support:cardview-v7:25.3.1'

2.主界面设置一些卡片的属性:

package com.example.admin.ztest;
 
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.CardView;
/*
app:cardBackgroundColor这是设置背景颜色 
app:cardCornerRadius这是设置圆角大小 
app:cardElevation这是设置z轴的阴影 
app:cardMaxElevation这是设置z轴的最大高度值 
app:cardUseCompatPadding是否使用CompatPadding 
app:cardPreventCornerOverlap是否使用PreventCornerOverlap 
app:contentPadding 设置内容的padding 
app:contentPaddingLeft 设置内容的左padding 
app:contentPaddingTop 设置内容的上padding 
app:contentPaddingRight 设置内容的右padding 
app:contentPaddingBottom 设置内容的底padding
 */
 
public class MainActivity extends AppCompatActivity {
  CardView cardView;
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_first);
    cardView = (CardView) findViewById(R.id.cardView);
    cardView.setRadius(8);//设置图片圆角的半径大小
    cardView.setCardElevation(8);//设置阴影部分大小
    cardView.setContentPadding(5, 5, 5, 5);//设置图片距离阴影大小
  }
}

布局页面:

<?xml version="1.0" encoding="utf-8"?>
<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/cardView"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_margin="10dp"
  app:cardCornerRadius="8dp">
 
 
  <LinearLayout
    android:layout_width="600pt"
    android:layout_height="100pt"
    android:background="@drawable/bg_battery_detail"
    android:orientation="vertical">
 
    <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_marginLeft="5dp"
      android:layout_marginRight="5dp"
      android:layout_marginTop="5dp"
      android:background="#184467">
 
      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:orientation="horizontal">
 
        <TextView
          android:id="@+id/tvBatteryNo"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerVertical="true"
          android:text="电池编号"
          android:textColor="@color/color_z2"
          android:textSize="20sp" />
 
        <TextView
          android:id="@+id/tvBatterySlotNo"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerVertical="true"
          android:layout_marginLeft="15pt"
          android:text="@string/app_name"
          android:textColor="@color/white"
          android:textSize="20sp" />
      </LinearLayout>
 
      <ImageView
        android:id="@+id/ivCloseDialog"
        android:layout_width="39pt"
        android:layout_height="39pt"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="8pt"
        android:padding="7pt"
        android:src="@mipmap/popup_del" />
 
    </RelativeLayout>
 
 
  </LinearLayout>
 
 
</android.support.v7.widget.CardView>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android手势密码view学习笔记(一)

    Android手势密码view学习笔记(一)

    这篇文章主要为大家详细介绍了Android手势密码view的学习笔记,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-03-03
  • Android实现ViewPage轮播图效果

    Android实现ViewPage轮播图效果

    这篇文章主要为大家详细介绍了Android实现ViewPage轮播图效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-03-03
  • Android编程获取包名,版本信息及VersionName名称的方法

    Android编程获取包名,版本信息及VersionName名称的方法

    这篇文章主要介绍了Android编程获取包名,版本信息及VersionName名称的方法,涉及Android包及版本相关操作函数使用技巧,需要的朋友可以参考下
    2016-10-10
  • Android获取网络连接状态新方法整理

    Android获取网络连接状态新方法整理

    这篇文章主要给大家介绍了关于Android获取网络连接状态新方法的相关资料,在开发安卓移动端时几乎每一个app都需要连接网络,因此对设备的网络状态检测是很有必要的,需要的朋友可以参考下
    2023-11-11
  • Android实现阅读APP平移翻页效果

    Android实现阅读APP平移翻页效果

    这篇文章主要介绍了Android实现阅读APP平移翻页效果的具体方法,模仿多看阅读平移翻页,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-03-03
  • 分享Android 蓝牙4.0(ble)开发的解决方案

    分享Android 蓝牙4.0(ble)开发的解决方案

    这篇文章主要为大家分享了Android 蓝牙4.0(ble)开发的解决方案,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-03-03
  • android弹出activity设置大小的方法

    android弹出activity设置大小的方法

    本篇文章介绍了android弹出activity设置大小的方法,需要的朋友可以参考一下
    2013-06-06
  • Flutter组件状态管理的3种方法

    Flutter组件状态管理的3种方法

    这篇文章主要为大家详细介绍了Flutter组件状态管理的3种方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • Android Studio 3.5版本JNI生成SO文件详解

    Android Studio 3.5版本JNI生成SO文件详解

    这篇文章主要介绍了Android Studio 3.5版本JNI生成SO文件详解,想了解JNI的同学,可以参考下
    2021-04-04
  • Android实现CoverFlow效果控件的实例代码

    Android实现CoverFlow效果控件的实例代码

    这篇文章主要介绍了Android实现CoverFlow效果控件的实例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-05-05

最新评论