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

Android自定义控件实现边缘凹凸的卡劵效果

程序员文章站 2024-03-03 22:48:28
前言 最近做项目的时候遇到一个卡劵的效果,由于自己觉得用图片来做的话可以会出现适配效果不好,再加上自己自定义view方面的知识比较薄弱,所以想试试用自定义view来实现。...

前言

最近做项目的时候遇到一个卡劵的效果,由于自己觉得用图片来做的话可以会出现适配效果不好,再加上自己自定义view方面的知识比较薄弱,所以想试试用自定义view来实现。但是由于自己知识点薄弱,一开始居然想着用画矩形来设置边缘实现,后面一个哥们指导了我,在这里感谢他。

Android自定义控件实现边缘凹凸的卡劵效果

实现分析

上面的图片其实和普通的linearlayout,relativelayout一样,只是上下两边多了类似于半圆锯齿的形状。那么只需要处理不同地方。可以在上下两条线上画一个个白色的小圆来实现这种效果。

假如我们上下线的半圆以及半圆与半圆之间的间距是固定的,那么不同尺寸的屏幕肯定会画出不同数量的半圆,那么我们只需要根据控件的宽度来获取能画的半圆数。

大家观察图片,很容易发现,圆的数量总是圆间距数量-1,也就是,假设圆的数量是circlenum,那么圆间距就是circlenum+1。

所以我们可以根据这个计算出circlenum.
circlenum = (int) ((w-gap)/(2*radius+gap));
这里gap就是圆间距,radius是圆半径,w是view的宽。

看代码

public class coupondisplayview extends linearlayout {

 private paint mpaint;
 /**
  * 圆间距
  */
 private float gap = 8;
 /**
  * 半径
  */
 private float radius = 10;
 /**
  * 圆数量
  */
 private int circlenum;

 private float remain;


 public coupondisplayview(context context) {
  super(context);
 }

 public coupondisplayview(context context, attributeset attrs) {
  super(context, attrs);
  mpaint = new paint(paint.anti_alias_flag);
  mpaint.setdither(true);
  mpaint.setcolor(color.white);
  mpaint.setstyle(paint.style.fill);
 }

 @override
 protected void onsizechanged(int w, int h, int oldw, int oldh) {
  super.onsizechanged(w, h, oldw, oldh);
  if (remain==0){
   remain = (int)(w-gap)%(2*radius+gap);
  }
  circlenum = (int) ((w-gap)/(2*radius+gap));
 }


 public coupondisplayview(context context, attributeset attrs, int defstyleattr) {
  super(context, attrs, defstyleattr);
 }

上面定义了圆的半径和圆间距,同时初始化了这些值并且获取了需要画的圆数量。

接下来只需要一个一个将圆画出来就可以了。

 @override
 protected void ondraw(canvas canvas) {
  super.ondraw(canvas);
  for (int i=0;i<circlenum;i++){
   float x = gap+radius+remain/2+((gap+radius*2)*i);
   canvas.drawcircle(x,0,radius,mpaint);
   canvas.drawcircle(x,getheight(),radius,mpaint);
  }
 }

简单的根据circlenum的数量进行了圆的绘制。

这里remain/2是因为,可以一些情况,计算出来的可以画的数量不是刚好整除的。这样就会出现右边最后一个间距会比其它的间距都要宽。

所以我们在绘制第一个的时候加上了余下的间距的一半,即使是不整除的情况。至少也能保证第一个和最后一个间距宽度一致。

这样就实现了。

看看效果

<?xml version="1.0" encoding="utf-8"?>
<framelayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:paddingleft="16dp"
 android:paddingright="16dp"
 android:paddingtop="20dp">
 <com.qiangyu.test.view.coupondisplayview
  android:orientation="horizontal" android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:background="@color/indicator_color"
  android:padding="20dp">
  <imageview
   android:layout_width="120dp"
   android:layout_height="match_parent"
   android:src="@drawable/goods_test"
   android:scaletype="centercrop"/>
  <linearlayout
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:orientation="vertical"
   android:paddingleft="16dp">
   <textview
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textsize="18dp"
    android:text="美食劵"
    />
   <textview
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textsize="12dp"
    android:padding="5dp"
    android:text="编号:11223124123213131"
    />
   <textview
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textsize="12dp"
    android:padding="5dp"
    android:text="编号:11223124123213131"
    />
   <textview
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textsize="12dp"
    android:paddingleft="5dp"
    android:paddingtop="5dp"
    android:text="截止日期:2001-09-07"
    />
  </linearlayout>
 </com.qiangyu.test.view.coupondisplayview>
</framelayout>

效果图:

Android自定义控件实现边缘凹凸的卡劵效果

源码下载:http://xiazai.jb51.net/201607/yuanma/coupondisplayview(jb51.net).rar

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