中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Android如何實現銀聯刷卡機消費后手動簽名的功能

發布時間:2021-05-21 11:49:20 來源:億速云 閱讀:156 作者:小新 欄目:移動開發

這篇文章主要介紹了Android如何實現銀聯刷卡機消費后手動簽名的功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

幾天前去物管交物業費,物管工作人員說小區引進高新產品,使用銀行卡消費后,不需要拿筆在銀聯機上簽名,直接用手指觸摸實現消費簽名,當時心想,果然是高科技,機子外形如下左圖,簽名如下右圖。

Android如何實現銀聯刷卡機消費后手動簽名的功能 Android如何實現銀聯刷卡機消費后手動簽名的功能

仔細一看,其實就是一個觸摸屏,用戶在上面直接手動簽名,實現這個功能其實并不復雜,我們自定義一個控件,繼承view,使用 Canvas的drawLine,drawPoint這兩個方法來實現這個功能。

首先自定義控件 MDrawLineView

package com.view;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.PorterDuff;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.LinearLayout;
/**
 * Created by jiang on 2017/12/25.
 */
public class MDrawLineView extends View {
 public MDrawLineView(Context context){
  super(context);
 }
 public MDrawLineView(Context context,AttributeSet attrs){
  super(context, attrs);
  paint=new Paint(Paint.DITHER_FLAG);//創建一個畫筆
  if(bitmap==null){
   bitmap = Bitmap.createBitmap(900, 1200, Bitmap.Config.ARGB_8888); //設置位圖的寬高
  }
  canvas=new Canvas();
  canvas.setBitmap(bitmap);
  paint.setStyle(Paint.Style.STROKE);//設置非填充
  paint.setStrokeWidth(5);//筆寬5像素
  paint.setColor(Color.RED);//設置為紅筆
  paint.setAntiAlias(true);//鋸齒不顯示
 }
 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  if(bitmap==null){
   bitmap = Bitmap.createBitmap(900, 1200, Bitmap.Config.ARGB_8888); //設置位圖的寬高
  }
  canvas.drawBitmap(bitmap,0,0,null);
 }
 public void clear(){
  canvas.drawColor(Color.TRANSPARENT, PorterDuff.Mode.CLEAR);
 }
 @Override
 public boolean onTouchEvent(MotionEvent event) {
  switch (event.getAction()){
   case MotionEvent.ACTION_MOVE: //用戶手指在屏幕上移動畫線
    canvas.drawLine(mov_x,mov_y,event.getX(),event.getY(),paint);
    invalidate();
    break;
   case MotionEvent.ACTION_DOWN://用戶手指按下時畫起點
    mov_x=(int) event.getX();
    mov_y=(int) event.getY();
    canvas.drawPoint(mov_x,mov_y,paint);
    invalidate();
    break;
   case MotionEvent.ACTION_UP:
    break;
  }
  mov_x=(int) event.getX();
  mov_y=(int) event.getY();
  return true;
  //return super.onTouchEvent(event);
 }
 private int mov_x;//聲明起點x坐標
 private int mov_y;//聲明起點y坐標
 private Paint paint;//聲明畫筆
 private Canvas canvas;//畫布
 private Bitmap bitmap;//位圖
 private int blcolor;
}

布局xml代碼

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:gravity="center_horizontal"
 android:padding="10dp"
 android:orientation="vertical">
 <com.view.MDrawLineView
  android:id="@+id/mDrawLine"
  android:layout_width="300dp"
  android:layout_height="400dp"
  android:background="@drawable/bg_drawline" />
 <Button
  android:id="@+id/clearBut"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="清空" />
</LinearLayout>

背景 bg_drawline .xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
 <!-- 描邊-->
 <stroke android:width="2dp" android:color="#45c01a"></stroke>
 <!-- 填充顏色 -->
 <solid android:color="#fff"></solid>
 <!-- 圓角 -->
 <corners android:radius="10dp"></corners>
</shape>

activity代碼

package com.cktest;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import com.view.MDrawLineView;
/**
 * Created by jiang on 2017/12/25.
 */
public class DrawLineAct extends AppCompatActivity implements View.OnClickListener{
 @Override
 protected void onCreate(@Nullable Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.act_drawline);
  mDrawLine = (MDrawLineView) findViewById(R.id.mDrawLine);
  clearBut = (Button) findViewById(R.id.clearBut);
  clearBut.setOnClickListener(this);
 }
 @Override
 public void onClick(View v) {
  switch (v.getId()){
   case R.id.clearBut:
    mDrawLine.clear();
    break;
  }
 }
 private MDrawLineView mDrawLine;
 private Button clearBut;
}

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android如何實現銀聯刷卡機消費后手動簽名的功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

罗江县| 台东县| 海淀区| 永德县| 乌苏市| 克东县| 安溪县| 乌兰浩特市| 黑河市| 镇巴县| 隆安县| 淅川县| 江华| 巧家县| 齐齐哈尔市| 佳木斯市| 且末县| 潜江市| 手游| 怀安县| 治县。| 庄浪县| 福州市| 海阳市| 龙门县| 庆元县| 罗源县| 右玉县| 隆林| 洪泽县| 社会| 雅江县| 长汀县| 浙江省| 乌兰县| 贵港市| 资兴市| 河津市| 桑植县| 威信县| 开鲁县|