我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android如何实现仿银行客户签名功能

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android如何实现仿银行客户签名功能

这篇文章将为大家详细讲解有关Android如何实现仿银行客户签名功能,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

首先需要一个自定义view用来签字使用,可以修改颜色和画笔的粗细,可以擦拭重新画

package com.android.tcm.view;import android.content.Context;import android.graphics.Bitmap;import android.graphics.Bitmap.Config;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.graphics.Path;import android.graphics.PorterDuff.Mode;import android.graphics.PorterDuffXfermode;import android.util.AttributeSet;import android.view.MotionEvent;import android.view.View;public class SignView extends View {  private Paint paint;  private Canvas cacheCanvas;  private Bitmap cachebBitmap;  private Path path;  static final int BACKGROUND_COLOR = Color.WHITE;  static final int BRUSH_COLOR = Color.BLACK;  public SignView(Context context, AttributeSet attrs, int defStyleAttr) {   super(context, attrs, defStyleAttr);   // initView(context);   // TODO Auto-generated constructor stub  }  public SignView(Context context, AttributeSet attrs) {   super(context, attrs);   // initView(context);   // TODO Auto-generated constructor stub  }  public SignView(Context context) {   super(context);   // initView(context);   // TODO Auto-generated constructor stub  }  public void initView(Context context) {  }  @Override  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {   // TODO Auto-generated method stub   super.onMeasure(widthMeasureSpec, heightMeasureSpec);   paint = new Paint();   paint.setAntiAlias(true);   paint.setStrokeWidth(3);   paint.setStyle(Paint.Style.STROKE);   paint.setColor(Color.RED);   path = new Path();   cachebBitmap = Bitmap.createBitmap(      MeasureSpec.getSize(widthMeasureSpec),      MeasureSpec.getSize(heightMeasureSpec), Config.ARGB_8888);   cacheCanvas = new Canvas(cachebBitmap);   cacheCanvas.drawColor(Color.TRANSPARENT);  }  public Bitmap getCachebBitmap() {   return cachebBitmap;  }  public void clear() {   if (cacheCanvas != null) {     paint.setXfermode(new PorterDuffXfermode(Mode.CLEAR));     cacheCanvas.drawPaint(paint);      paint = new Paint();     paint.setAntiAlias(true);     paint.setStrokeWidth(3);     paint.setStyle(Paint.Style.STROKE);     paint.setColor(Color.RED);     invalidate();   }  }  @Override  protected void onDraw(Canvas canvas) {   // canvas.drawColor(BRUSH_COLOR);   canvas.drawBitmap(cachebBitmap, 0, 0, null);   canvas.drawPath(path, paint);  }  @Override  protected void onSizeChanged(int w, int h, int oldw, int oldh) {   int curW = cachebBitmap != null ? cachebBitmap.getWidth() : 0;   int curH = cachebBitmap != null ? cachebBitmap.getHeight() : 0;   if (curW >= w && curH >= h) {     return;   }   if (curW < w)     curW = w;   if (curH < h)     curH = h;   Bitmap newBitmap = Bitmap.createBitmap(curW, curH,      Config.ARGB_8888);   Canvas newCanvas = new Canvas();   newCanvas.setBitmap(newBitmap);   if (cachebBitmap != null) {     newCanvas.drawBitmap(cachebBitmap, 0, 0, null);   }   cachebBitmap = newBitmap;   cacheCanvas = newCanvas;  }  private float cur_x, cur_y;  @Override  public boolean onTouchEvent(MotionEvent event) {   float x = event.getX();   float y = event.getY();   switch (event.getAction()) {   case MotionEvent.ACTION_DOWN: {     if(isListener!=null){      isListener.sign();     }     cur_x = x;     cur_y = y;     path.moveTo(cur_x, cur_y);     break;   }   case MotionEvent.ACTION_MOVE: {     path.quadTo(cur_x, cur_y, x, y);     cur_x = x;     cur_y = y;     break;   }   case MotionEvent.ACTION_UP: {     cacheCanvas.drawPath(path, paint);     path.reset();     break;   }   }   invalidate();   return true;  }  public interface isSignListener{   void sign();  }  isSignListener isListener;  public void setIsListener(isSignListener isListener) {   this.isListener = isListener;  }}

布局代码如下

<?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">  <RelativeLayout    android:id="@+id/rl"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:background="@color/white">    <FrameLayout      android:layout_width="match_parent"      android:layout_height="match_parent"      android:layout_marginBottom="40dp">      <com.android.tcm.view.SignView        android:id="@+id/signView"        android:layout_width="match_parent"        android:layout_height="match_parent" />    </FrameLayout>    <LinearLayout      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:layout_alignParentBottom="true"      android:layout_centerHorizontal="true"      android:orientation="horizontal">      <TextView        android:id="@+id/tv_clear"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:gravity="center"        android:paddingBottom="15dp"        android:paddingTop="15dp"        android:text="擦除重签"        android:textSize="18sp" />      <TextView        android:id="@+id/tv_commit"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginLeft="20dp"        android:gravity="center"        android:paddingBottom="15dp"        android:paddingTop="15dp"        android:text="确认"        android:textSize="18sp" />    </LinearLayout>  </RelativeLayout></RelativeLayout>

主函数代码,用于获取截图(id:rl)的,并且把文件保存到本地(文件夹TVC下文件命名为当前时间如20170713 10:31:31.jpg)

package com.android.tcm.activity;import android.graphics.Bitmap;import android.os.Bundle;import android.os.Environment;import android.view.View;import android.widget.RelativeLayout;import android.widget.TextView;import com.android.tcm.R;import com.android.tcm.view.SignView;import java.io.ByteArrayOutputStream;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.text.SimpleDateFormat;import java.util.Date;public class SignActivity extends Activity {  private RelativeLayout rl;  private SignView mView;  private TextView commit, clear;  private Bitmap mSignBitmap;  private String signPath;  private long time;  private String fileName;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_sign);    initView();  }  public void initView() {    mView = (SignView) findViewById(R.id.signView);    commit = (TextView) findViewById(R.id.tv_commit);    clear = (TextView) findViewById(R.id.tv_clear);    rl= (RelativeLayout) findViewById(R.id.rl);    commit.setOnClickListener(new View.OnClickListener() {      @Override      public void onClick(View arg0) {//        commit.getDrawingCache();//获取控件的截图//        saveSign(BitmapUtil.myShot(SignActivity.this));        rl.setDrawingCacheEnabled(true);        saveSign(rl.getDrawingCache());        rl.setDrawingCacheEnabled(false);      }    });    clear.setOnClickListener(new View.OnClickListener() {      @Override      public void onClick(View arg0) {        mView.clear();      }    });  }    public void saveSign(Bitmap bit) {    time = System.currentTimeMillis();    fileName = getDateTimeFromMillisecond(time);    mSignBitmap = bit;    signPath = createFile();  }    private String createFile() {    ByteArrayOutputStream baos = null;    String _path = null;    try {      String sign_dir = Environment.getExternalStorageDirectory()          .getPath() + "/" + "TCM" + "/";      File dir = new File(sign_dir);      if (!dir.exists()) {        dir.mkdirs();      }      _path = sign_dir + fileName + ".jpg";      baos = new ByteArrayOutputStream();      mSignBitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);      byte[] photoBytes = baos.toByteArray();      if (photoBytes != null) {        new FileOutputStream(new File(_path)).write(photoBytes);      }    } catch (IOException e) {      e.printStackTrace();    } finally {      try {        if (baos != null)          baos.close();      } catch (IOException e) {        e.printStackTrace();      }    }    return _path;  }  @Override  protected void onDestroy() {    // TODO Auto-generated method stub    super.onDestroy();    if (mSignBitmap != null) {      mSignBitmap.recycle();    }  }    public static String getDateTimeFromMillisecond(Long millisecond) {    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");    Date date = new Date(millisecond);    String dateStr = simpleDateFormat.format(date);    return dateStr;  }}

关于“Android如何实现仿银行客户签名功能”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android如何实现仿银行客户签名功能

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android如何实现仿银行客户签名功能

这篇文章将为大家详细讲解有关Android如何实现仿银行客户签名功能,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。首先需要一个自定义view用来签字使用,可以修改颜色和画笔的粗细,可以擦拭重新画packa
2023-05-31

Android如何实现仿微信@好友功能

这篇文章主要介绍Android如何实现仿微信@好友功能,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!先上个效果图就是这么个功能1. 分析需求输入@跳转到联系人界面,选中一个或者多个好友返回到当前界面按退格键删除整块内
2023-05-30

C++ OpenCV如何实现银行卡号识别功能

这篇文章主要介绍了C++ OpenCV如何实现银行卡号识别功能,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。一、获取模板图像如图所示,这是我们的模板图像。我们需要将上面的字符
2023-06-28

php如何实现模拟银行存取钱功能

这篇文章主要介绍“php如何实现模拟银行存取钱功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“php如何实现模拟银行存取钱功能”文章能帮助大家解决问题。1.建立数据库首先,我们需要建立一个数据库来
2023-07-05

Android仿iOS如何实现侧滑返回功能

这篇文章将为大家详细讲解有关Android仿iOS如何实现侧滑返回功能,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。先上个效果再说:原理Activity 本身是不可以滑动的,但是我们可以制造一个正在滑动
2023-05-30

Android如何实现仿微信右滑返回功能

这篇文章将为大家详细讲解有关Android如何实现仿微信右滑返回功能,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。先上效果图,如下:先分析一下功能的主要技术点,右滑即手势判断,当滑到一直距离时才执行返回,
2023-05-30

php如何实现一个用户签到功能

这篇文章主要介绍了php如何实现一个用户签到功能的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇php如何实现一个用户签到功能文章都会有所收获,下面我们一起来看看吧。一、 前置条件在实现用户签到前,我们需要进行如
2023-07-06

ThinkPhp5.1 + jSignature如何实现在线签名功能

这篇文章将为大家详细讲解有关ThinkPhp5.1 + jSignature如何实现在线签名功能,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。前端HTML