亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現仿銀行客戶簽名功能

發布時間:2021-06-28 09:49:17 來源:億速云 閱讀:153 作者:小新 欄目:移動開發

這篇文章將為大家詳細講解有關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;
/**
 * Created by sf.
 */
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();
      }
    });
  }
  /**
   * signPath是圖片保存路徑
   *
   * @param bit
   */
  public void saveSign(Bitmap bit) {
    time = System.currentTimeMillis();
    fileName = getDateTimeFromMillisecond(time);
    mSignBitmap = bit;
    signPath = createFile();
  }
  /**
   * @return
   */
  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();
    }
  }
  /**
   * 將毫秒轉化成固定格式的時間
   * 時間格式: yyyy-MM-dd HH:mm:ss
   *
   * @param millisecond
   * @return
   */
  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如何實現仿銀行客戶簽名功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家口市| 德格县| 砀山县| 疏勒县| 罗平县| 成安县| 商丘市| 岳阳市| 雷波县| 育儿| 新安县| 勃利县| 方正县| 合肥市| 景德镇市| 额尔古纳市| 本溪| 安岳县| 扎鲁特旗| 鹤庆县| 托克逊县| 洛宁县| 灵寿县| 新宾| 商河县| 普格县| 怀柔区| 攀枝花市| 湄潭县| 台北县| 元谋县| 桑日县| 威远县| 泸溪县| 义乌市| 鸡东县| 体育| 保德县| 镇江市| 天祝| 安达市|