這篇文章主要介紹Android怎樣實(shí)現(xiàn)屏幕手寫(xiě)簽名,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)是一家專(zhuān)注于網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),于田網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)10余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:于田等地區(qū)。于田做網(wǎng)站價(jià)格咨詢(xún):18982081108
Android屏幕手寫(xiě)簽名的原理就是把手機(jī)屏幕當(dāng)作畫(huà)板,把用戶(hù)手指當(dāng)作畫(huà)筆,手指在屏幕上在屏幕上劃來(lái)劃去,屏幕就會(huì)顯示手指的移動(dòng)軌跡,就像畫(huà)筆在畫(huà)板上寫(xiě)字一樣。實(shí)現(xiàn)手寫(xiě)簽名需要結(jié)合繪圖的路徑工具Path,在有按下動(dòng)作時(shí)調(diào)用Path對(duì)象的moveTo方法,將路徑起始點(diǎn)移動(dòng)到觸摸點(diǎn);在有移動(dòng)操作時(shí)調(diào)用Path對(duì)象的quadTo方法,將記錄本次觸摸點(diǎn)與上次觸摸點(diǎn)之間的路徑;在有移動(dòng)操作與提起動(dòng)作時(shí)調(diào)用Canvas對(duì)象的drawPath方法,將本次觸摸繪制在畫(huà)布上。
layout/activity_signature.xml界面布局代碼如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="5dp"> <ScrollView android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:id="@+id/btn_add_signature" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="開(kāi)始簽名" android:textColor="@color/black" android:textSize="17sp" /> <Button android:id="@+id/btn_reset_signature" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:text="重置" android:textColor="@color/black" android:textSize="17sp" /> <Button android:id="@+id/btn_revoke_signature" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:text="回退" android:textColor="@color/black" android:textSize="17sp" /> <Button android:id="@+id/btn_end_signature" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="結(jié)束簽名" android:textColor="@color/black" android:textSize="17sp" /> </LinearLayout> <com.fukaimei.touchevent.widget.SignatureView android:id="@+id/view_signature" android:layout_width="match_parent" android:layout_height="200dp" android:background="@color/white" app:paint_color="#0000aa" app:stroke_width="3" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:id="@+id/btn_save_signature" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="保存圖片文件" android:textColor="@color/black" android:textSize="17sp" /> </LinearLayout> <ImageView android:id="@+id/iv_signature_new" android:layout_width="match_parent" android:layout_height="200dp" android:background="@color/white" android:scaleType="fitCenter" /> </LinearLayout> </ScrollView></LinearLayout>
SignatureActivity.java邏輯代碼如下:
package com.fukaimei.touchevent;import android.graphics.Bitmap;import android.os.Bundle;import android.os.Handler;import android.support.v7.app.AppCompatActivity;import android.view.View;import android.view.View.OnClickListener;import android.widget.ImageView;import android.widget.Toast;import com.fukaimei.touchevent.filedialog.dialog.FileSaveFragment;import com.fukaimei.touchevent.util.BitmapUtil;import com.fukaimei.touchevent.widget.SignatureView;public class SignatureActivity extends AppCompatActivity implements OnClickListener, FileSaveFragment.FileSaveCallbacks { private SignatureView view_signature; private ImageView iv_signature_new; private Bitmap mBitmap; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_signature); view_signature = (SignatureView) findViewById(R.id.view_signature); iv_signature_new = (ImageView) findViewById(R.id.iv_signature_new); findViewById(R.id.btn_add_signature).setOnClickListener(this); findViewById(R.id.btn_end_signature).setOnClickListener(this); findViewById(R.id.btn_reset_signature).setOnClickListener(this); findViewById(R.id.btn_revoke_signature).setOnClickListener(this); findViewById(R.id.btn_save_signature).setOnClickListener(this); } @Override public void onClick(View v) { if (v.getId() == R.id.btn_save_signature) { if (mBitmap == null) { Toast.makeText(this, "請(qǐng)先開(kāi)始然后結(jié)束簽名", Toast.LENGTH_LONG).show(); return; } FileSaveFragment.show(this, "jpg"); } else if (v.getId() == R.id.btn_add_signature) { view_signature.setDrawingCacheEnabled(true); } else if (v.getId() == R.id.btn_reset_signature) { view_signature.clear(); } else if (v.getId() == R.id.btn_revoke_signature) { view_signature.revoke(); } else if (v.getId() == R.id.btn_end_signature) { if (view_signature.isDrawingCacheEnabled() != true) { Toast.makeText(this, "請(qǐng)先開(kāi)始簽名", Toast.LENGTH_LONG).show(); } else { mBitmap = view_signature.getDrawingCache(); iv_signature_new.setImageBitmap(mBitmap); mHandler.postDelayed(mResetCache, 100); } } } private Handler mHandler = new Handler(); private Runnable mResetCache = new Runnable() { @Override public void run() { view_signature.setDrawingCacheEnabled(false); view_signature.setDrawingCacheEnabled(true); } }; @Override public boolean onCanSave(String absolutePath, String fileName) { return true; } @Override public void onConfirmSave(String absolutePath, String fileName) { String path = String.format("%s/%s", absolutePath, fileName); BitmapUtil.saveBitmap(path, mBitmap, "jpg", 80); Toast.makeText(this, "成功保存圖片文件:" + path, Toast.LENGTH_LONG).show(); }}
以上是“Android怎樣實(shí)現(xiàn)屏幕手寫(xiě)簽名”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
分享標(biāo)題:Android怎樣實(shí)現(xiàn)屏幕手寫(xiě)簽名
文章起源:http://m.rwnh.cn/article8/jdijip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營(yíng)銷(xiāo)推廣、外貿(mào)建站、品牌網(wǎng)站制作、ChatGPT、搜索引擎優(yōu)化、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)