Android控件CardView实现卡片效果
作者:cf8833 时间:2023-09-05 17:01:16
这是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>
来源:https://blog.csdn.net/cf8833/article/details/90514220
标签:Android,CardView,卡片
0
投稿
猜你喜欢
Android个人中心的头像上传,图片编码及截取实例
2021-10-24 11:56:40
基于SpringBoot实现图片上传及图片回显
2023-01-17 06:26:15
JVM 运行时数据区与JMM 内存模型
2022-08-12 10:49:27
浅谈SpringBoot中的@Conditional注解的使用
2021-12-07 16:47:04
Android启动页优化之实现应用秒开
2021-05-27 23:51:32
C#制作鹰眼的详细全过程(带注释)实例代码
2022-03-01 06:56:12
Android录制声音文件(音频)并播放
2023-07-04 06:31:19
提示出现unresolved external symbol _main的解决方法
2023-02-13 03:41:48
Android图片裁剪功能实现代码
2021-06-13 11:03:14
浅谈一下Java的双亲委派模式
2021-11-12 02:48:17
Android 如何定制vibrator的各种震动模式M 具体方法
2023-08-13 02:09:01
springboot+HttpInvoke 实现RPC调用的方法
2021-09-17 15:43:39
SpringBoot2.0解决Long型数据转换成json格式时丢失精度问题
2022-10-31 16:56:24
Android编程设计模式之原型模式实例详解
2021-09-14 02:20:47
解析Android中string-array数据源的简单使用
2022-12-19 10:06:53
C# DataTable中查询指定字段名称的数据
2023-10-08 16:16:44
C# 实现绘制PDF嵌套表格案例详解
2023-05-25 11:57:13
MyBatis中${} 和 #{} 有什么区别小结
2021-09-21 14:42:35
java时区转换的理解及示例详解
2022-01-19 08:35:20
详解Mybatis Generator的具体使用教程
2022-01-16 22:39:13