欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android设置控件阴影的三种方法

程序员文章站 2023-11-04 12:32:04
本文实例为大家分享了android设置控件阴影的方法,供大家参考,具体内容如下 第一种方式:elevation view的大小位置都是通过x,y确定的,而现在有了z...

本文实例为大家分享了android设置控件阴影的方法,供大家参考,具体内容如下

第一种方式:elevation

view的大小位置都是通过x,y确定的,而现在有了z轴的概念,而这个z值就是view的高度(elevation),而高度决定了阴影(shadow)的大小。

Android设置控件阴影的三种方法

view elevation(视图高度)

view的z值由两部分组成,elevation和translationz(它们都是android l新引入的属性)。
eleavation是静态的成员,translationz是用来做动画。
z = elevation + translationz

在layout中使用* android:elevation*属性去定义 
在代码中使用 view.setelevation 方法去定义 
设置视图的translation,可以使用view.settranslationz方法 
新的viewpropertyanimator.z和viewpropertyanimator.translationz方法可以设置视图的elevation值

我们通过设置elevation的值也会达到卡片阴影效果

Android设置控件阴影的三种方法

第二种方式:cardview

今天有空学习了下cardview的使用,既然是使用,不凡使用一个实例操作一下

cardview是android5.0的新控件,所以我们需要在dependencies中添加支持:
compile 'com.android.support:cardview-v7:26.0.0'

cardview是继承framelayout的一个布局控件,从源码可以看出cardview支持的属性有:

card_view:cardelevation 阴影的大小
card_view:cardmaxelevation 阴影最大高度
card_view:cardbackgroundcolor 卡片的背景色
card_view:cardcornerradius 卡片的圆角大小
card_view:contentpadding 卡片内容于边距的间隔

      card_view:contentpaddingbottom
      card_view:contentpaddingtop
      card_view:contentpaddingleft
      card_view:contentpaddingright
      card_view:contentpaddingstart
      card_view:contentpaddingend

card_view:cardusecompatpadding 设置内边距,v21+的版本和之前的版本仍旧具有一样的计算方式
card_view:cardpreventconreroverlap 在v20和之前的版本中添加内边距,这个属性为了防止内容和边角的重叠

我们看一下今天要实现的效果图:

Android设置控件阴影的三种方法

有兴趣的朋友可以尝试使用viewpager+cardview实现卡片画廊的效果

其实cardview的使用相当于加了一个布局使用,其cardview里面内容的实现,还是在布局中设计
银行卡布局:

<?xml version="1.0" encoding="utf-8"?>
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="#ffffff"
  android:padding="16dp">

  <android.support.v7.widget.cardview
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="180dp"
    app:cardbackgroundcolor="#099a8c"
    app:cardcornerradius="10dp"
    app:cardelevation="10dp"
    app:contentpadding="16dp">

    <linearlayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="horizontal">

      <imageview
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="@drawable/icon_01" />

      <linearlayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical"
        android:padding="8dp">

        <textview
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="中国农业银行"
          android:textcolor="#ffffff"
          android:textsize="18sp" />

        <textview
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="储蓄卡"
          android:textcolor="#ffffff"
          android:textsize="16sp" />
        <textview
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:textcolor="#ffffff"
          android:gravity="center_vertical"
          android:textsize="22sp"
          android:text="**** **** **** 1234"/>
      </linearlayout>

      <imageview
        android:layout_width="60dp"
        android:layout_height="15dp"
        android:background="@drawable/icon_02" />
    </linearlayout>
  </android.support.v7.widget.cardview>

</relativelayout>

特别注意的是:使用cardview的属性时,记得加上命名空间的声明
xmlns:app="http://schemas.android.com/apk/res-auto

第三种方式:最强按钮通过color来进行设置

自认为这是按钮最好看的效果,还自带按下效果,设置也非常简单,秒杀一切阴影效果,我们先来看下他的效果

未按下效果

Android设置控件阴影的三种方法

按下效果

Android设置控件阴影的三种方法

**其实这种效果非常简单,就是定义了一个颜色。对就是一个颜色就可以达到这种效果
那这个颜色要怎么定义才能达到这种效果呢**

比如上图的按钮颜色是粉红色,颜色代码 #f692bf,我们只需要在前面加上#ff,最后这样#ff692bf 就可以达到这种效果。

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