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

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

程序员文章站 2023-12-12 15:31:22
刚接触android的时候看到别人写的手势密码view,然后当时就在想,我什么时候才能写出如此高端的东西?? 没关系,不要怕哈,说出这样话的人不是你技术不咋地而是你不愿意花...

刚接触android的时候看到别人写的手势密码view,然后当时就在想,我什么时候才能写出如此高端的东西?? 没关系,不要怕哈,说出这样话的人不是你技术不咋地而是你不愿意花时间去研究它,其实也没有那么难哦(世上无难事,只怕有心人!),下面我们就一步一步实现一个手势密码view。

想必都看过手势密码view,但我们还是看看我们今天要实现的效果吧:

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

上面是一个手势view的提示view,下面是一个手势view。

用法:

 <com.leo.library.view.gesturecontentview
   android:id="@+id/id_gesture_pwd"
   android:layout_gravity="center_horizontal"
   android:layout_margintop="10dp"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   app:column="3"
   app:row="3"
   app:padding="50dp"
   app:normaldrawable="@drawable/gesture_node_normal"
   app:selecteddrawable="@drawable/gesture_node_pressed"
   app:errodrawable="@drawable/gesture_node_wrong"
   app:normalstrokecolor="#000"
   app:errostrokecolor="#ff0000"
   app:strokewidth="4dp"
   />

app打头的是自定义的一些属性,

attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="indicatorview">
  <!--默认状态的drawable-->
  <attr name="normaldrawable" format="reference" />
  <!--被选中状态的drawable-->
  <attr name="selecteddrawable" format="reference" />
  <!--错误状态的drawabe-->
  <attr name="errodrawable" format="reference" />
  <!--列数-->
  <attr name="column" format="integer" />
  <!--行数-->
  <attr name="row" format="integer" />
  <!--padding值,padding值越大点越小-->
  <attr name="padding" format="dimension" />
  <!--默认连接线颜色-->
  <attr name="normalstrokecolor" format="color" />
  <!--错误连接线颜色-->
  <attr name="errostrokecolor" format="color" />
  <!--连接线size-->
  <attr name="strokewidth" format="dimension" />
 </declare-styleable>
</resources>

mainactivity.java:

public class mainactivity extends appcompatactivity implements igesturepwdcallback {
 private gesturecontentview mgestureview;
 private indicatorview indicatorview;
 private textview tvindicator;

 private int count=0;
 private string pwd;
 @override
 protected void oncreate(bundle savedinstancestate) {
  super.oncreate(savedinstancestate);
  setcontentview(r.layout.activity_main);
  mgestureview= (gesturecontentview) findviewbyid(r.id.id_gesture_pwd);
  indicatorview= (indicatorview) findviewbyid(r.id.id_indicator_view);
  tvindicator= (textview) findviewbyid(r.id.id_indicator);
  mgestureview.setgesturepwdcallback(this);
 }

 @override
 public void callback(list<integer> pwds) {
  stringbuffer sbpwd=new stringbuffer();
  for (integer pwd:pwds) {
   sbpwd.append(pwd);
  }
  tvindicator.settext(sbpwd.tostring());
  if(pwds!=null&&pwds.size()>0){
   indicatorview.setpwds(pwds);
  }
  if(count++==0){
   pwd=sbpwd.tostring();
   toast.maketext(this,"请再次绘制手势密码",toast.length_short).show();
   mgestureview.changepwdstate(pointstate.point_state_normal,0);
  } else{
   count=0;
   if(pwd.equals(sbpwd.tostring())){
    toast.maketext(this,"密码设置成功",toast.length_short).show();
   }else{
    toast.maketext(this,"两次密码不一致,请重新绘制",toast.length_short).show();
    indicatorview.startanimation(animationutils.loadanimation(this,r.anim.anim_shake));
    count=0;
    mgestureview.changepwdstate(pointstate.point_state_erro,0);
    new handler().postdelayed(new runnable() {
     @override
     public void run() {
      mgestureview.changepwdstate(pointstate.point_state_normal,0);
     }
    },1000);
   }
  }
 }
}

看不懂也没关系啊,我们先明确下我们要完成的目标,然后一步一步实现:

先实现下我们的指示器view,因为实现了指示器view也就相当于实现了一半的手势密码view了:

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

实现思路:

1、我们需要知道指示器有多少行、多少列、默认显示什么、选中后显示什么?
2、然后根据传入的密码把对应的点显示成选中状态,没有选中的点为默认状态。

好了,知道我们的思路,首先自定义一个view叫indicatorview继承view,然后重写三个构造方法:

public class indicatorview extends view {
 public indicatorview(context context) {
  this(context, null);
 }

 public indicatorview(context context, attributeset attrs) {
  this(context, attrs, 0);
 }

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

定义自定义属性(在res/values下创建attrs.xml文件):

1、我们需要传入的默认显示图片:

 <!--默认状态的drawable-->
  <attr name="normaldrawable" format="reference" />

2、我们需要拿到传入的选中时图片:

<!--被选中状态的drawable-->
  <attr name="selecteddrawable" format="reference" />

其它的一些属性:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="indicatorview">
  <!--默认状态的drawable-->
  <attr name="normaldrawable" format="reference" />
  <!--被选中状态的drawable-->
  <attr name="selecteddrawable" format="reference" />
  <!--列数-->
  <attr name="column" format="integer" />
  <!--行数-->
  <attr name="row" format="integer" />
   </declare-styleable>
</resources>

定义完属性后,此时我们xml中就可以引用自定义view了:

<com.leo.library.view.indicatorview
  android:id="@+id/id_indicator_view"
  android:layout_margintop="20dp"
  android:layout_width="85dp"
  android:layout_height="85dp"
  android:layout_alignparenttop="true"
  android:layout_centerhorizontal="true"
  app:column="3"
  app:normaldrawable="@drawable/shape_white_indicator"
  app:padding="8dp"
  app:row="3"
  app:selecteddrawable="@drawable/shape_orange_indicator" />

注意:

中间的drawable文件可以在github项目中找到,链接我会在文章最后给出。

有了自定义属性,然后我们在带三个参数的构造方法中获取我们在布局文件传入的自定义属性:

private static final int number_row = 3;
 private static final int number_column = 3;
 private int default_padding = dp2px(10);
 private final int default_size = dp2px(40);

 private bitmap mnormalbitmap;
 private bitmap mselectedbitmap;
 private int mrow = number_row;
 private int mcolumn = number_column;

 public indicatorview(context context, attributeset attrs, int defstyleattr) {
  super(context, attrs, defstyleattr);
  final typedarray a = context.obtainstyledattributes(
    attrs, r.styleable.indicatorview, defstyleattr, 0);
  mnormalbitmap = drawabletobitmap(a.getdrawable(r.styleable.indicatorview_normaldrawable));
  mselectedbitmap = drawabletobitmap(a.getdrawable(r.styleable.indicatorview_selecteddrawable));
  if (a.hasvalue(r.styleable.indicatorview_row)) {
   mrow = a.getint(r.styleable.indicatorview_row, number_row);
  }
  if (a.hasvalue(r.styleable.indicatorview_column)) {
   mcolumn = a.getint(r.styleable.indicatorview_row, number_column);
  }
  if (a.hasvalue(r.styleable.indicatorview_padding)) {
   default_padding = a.getdimensionpixelsize(r.styleable.indicatorview_padding, default_padding);
  }
 }

好了,现在我们已经拿到了我们想要的东西了,接下来我们需要知道我的view要多大,相比小伙伴都知道接下来要干什么了吧?对~! 我们需要重写下onmeasure方法,然后指定我们view的大小:

 @override
 protected void onmeasure(int widthmeasurespec, int heightmeasurespec) {
 }

那么我们该以一个什么样的规则指定我们的view的大小呢?

1、当用户自己指定了view的大小的话,我们就用用户传入的size,然后根据传入的宽、高计算出我们的点的大小。

<com.leo.library.view.indicatorview
  android:id="@+id/id_indicator_view"
  android:layout_margintop="20dp"
  android:layout_width="85dp"
  android:layout_height="85dp"

2、如果用户没有指定view的大小,宽高都设置为wrap_content的话,我们需要根据用户传入的选中图片跟没选中图片的大小计算view的大小:

android:layout_width="wrap_content"
android:layout_height="wrap_content"

好了,既然知道咋测量我们的view后,我们接下来就实现出来:

@override
 protected void onmeasure(int widthmeasurespec, int heightmeasurespec) {
  int widthmode = measurespec.getmode(widthmeasurespec);
  int heightmode = measurespec.getmode(heightmeasurespec);
  float width = measurespec.getsize(widthmeasurespec);
  float height = measurespec.getsize(heightmeasurespec);
  float result=math.min(width,height);
  height = getheightvalue(result, heightmode);
  width = getwidthvalue(result, widthmode);
  }
 private float getheightvalue(float height, int heightmode) {
  //当size为确定的大小的话
  //每个点的高度等于(控件的高度-(行数+1)*padding值)/行数
  if (heightmode == measurespec.exactly) {
   mcellheight = (height - (mrow + 1) * default_padding) / mrow;
  } else {
   //高度不确定的话,我们就取选中的图片跟未选中图片中的高度的最小值
   mcellheight = math.min(mnormalbitmap.getheight(), mselectedbitmap.getheight());
   //此时控件的高度=点的高度*行数+(行数+1)*默认padding值
   height = mcellheight * mrow + (mrow + 1) * default_padding;
  }
  return height;
 }

宽度计算方式也是一样的话,只是行数换成了列数:

 private float getwidthvalue(float width, int widthmode) {
  if (widthmode == measurespec.exactly) {
   mcellwidth = (width - (mcolumn + 1) * default_padding) / mcolumn;
  } else {
   mcellwidth = math.min(mnormalbitmap.getwidth(), mselectedbitmap.getwidth());
   width = mcellwidth * mcolumn + (mcolumn + 1) * default_padding;
  }
  return width;
 }

好了,现在是知道了点的高度跟宽度,然后控件的宽高自然也就知道了,但是如果我们传入的选中的图片跟未选择的图片大小不一样咋办呢?没关系,接下来我们重新修改下图片的size:

@override
 protected void onmeasure(int widthmeasurespec, int heightmeasurespec) {
  .....
  height = getheightvalue(result, heightmode);
  width = getwidthvalue(result, widthmode);
  setmeasureddimension((int) width, (int) height);
  //重新修改图片的size
  resizebitmap(mcellwidth, mcellheight);
 }
 private void resizebitmap(float width, float height) {
  if (width > 0 && height > 0) {
   if (mnormalbitmap.getwidth() != width || mnormalbitmap.getheight() !=height) {
    if (mnormalbitmap.getwidth() > 0 && mnormalbitmap.getheight() > 0) {
     mnormalbitmap = bitmap.createscaledbitmap(mnormalbitmap, (int) width, (int) height, false);
    }
   }
   if (mselectedbitmap.getwidth()!=width || mselectedbitmap.getheight() !=height) {
    if (mselectedbitmap.getwidth() > 0 && mselectedbitmap.getheight() > 0) {
     mselectedbitmap = bitmap.createscaledbitmap(mselectedbitmap, (int) width, (int) height, false);
    }
   }
  }
 }

好了,图片也拿到了,控件的宽高跟点的宽高都知道,所以接下来我们该进入我们的核心代码了(重写ondraw方法,画出我们的点):

 @override
 protected void ondraw(canvas canvas) {
  super.ondraw(canvas);
  //遍历行数
  for (int i = 0; i < mrow; i++) {
   //遍历列数
   for (int j = 0; j < mcolumn; j++) {
    float left = (j + 1) * default_padding + j * mcellwidth;
    float top = (i + 1) * default_padding + i * mcellheight;
    //每个点代表的密码值=点对应的行数值*列数+对应的列数
    //比如3*3的表格,然后第二排的第一个=1*3+0=3
    int num=i * mcolumn + j;
    //此点是不是在传入的密码集合中?
    if (pwds!=null&&pwds.contains(num)) {
     //这个点在传入的密码集合中的话就画一个选中的bitmap
     canvas.drawbitmap(mselectedbitmap, left, top, null);
    } else {
     canvas.drawbitmap(mnormalbitmap, left, top, null);
    }
   }
  }
 }

嗯嗯!!然后我们暴露一个方法,让外界传入需要现实的密码集合:

 public void setpwds(list<integer> pwds) {
  if(pwds!=null)this.pwds=pwds;
  if (looper.mylooper() == looper.getmainlooper()) {
   invalidate();
  } else {
   postinvalidate();
  }
 }

好啦~~ 我们的指示器view就做完啦~~~ 是不是很简单呢? 指示器view做完后,再想想手势密码view,是不是就只是差根据手势改变,然后画出我们的line呢?

现附上项目的github链接:
https://github.com/913453448/gesturecontentview/

下一节我们将一起实现一下手势密码view。

android手势密码view笔记(二)

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

上一篇:

下一篇: