欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實現(xiàn)簽名涂鴉手寫板

 更新時間:2020年05月21日 16:17:50   作者:BoomLei  
這篇文章主要為大家詳細介紹了Android實現(xiàn)簽名涂鴉手寫板,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了Android實現(xiàn)簽名涂鴉手寫板的具體代碼,供大家參考,具體內(nèi)容如下

布局文件

<?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:orientation="vertical">

  <FrameLayout
    android:id="@+id/fl_signature"
    android:layout_width="fill_parent"
    android:layout_height="200dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginTop="10dp"
    android:background="@drawable/singature_bg"
    android:gravity="top">
  </FrameLayout>
  <ImageView
    android:id="@+id/iv_signature"
    android:layout_width="fill_parent"
    android:layout_height="200dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginTop="10dp"
    android:background="@drawable/signature_shape"
    android:gravity="top"
    android:visibility="gone"/>

  <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:layout_marginBottom="20dp">

        <TextView
          android:id="@+id/tv_revert_signature"
          android:layout_width="100dp"
          android:layout_height="35dp"
          android:layout_alignParentRight="true"
          android:layout_marginRight="140dp"
          android:background="@drawable/btn_order_details_pay_bg"
          android:gravity="center"
          android:paddingLeft="30dp"
          android:paddingRight="30dp"
          android:text="重簽"
          android:textColor="@color/code_number_bg"
          android:textSize="@dimen/text_title_word" />

        <TextView
          android:id="@+id/tv_signature_save"
          android:layout_width="100dp"
          android:layout_height="35dp"
          android:layout_alignParentRight="true"
          android:layout_marginRight="20dp"
          android:background="@drawable/bt_bg"
          android:gravity="center"
          android:paddingLeft="30dp"
          android:paddingRight="30dp"
          android:text="保存"
          android:textColor="@color/white"
          android:textSize="@dimen/text_title_word" />

      </RelativeLayout>



</LinearLayout>

//開始簽名

private void StartSignature() {
    // 獲取屏幕尺寸
    DisplayMetrics mDisplayMetrics = new DisplayMetrics();
    getWindow().getWindowManager().getDefaultDisplay().getMetrics(mDisplayMetrics);
  }

  @Override
  public void onWindowFocusChanged(boolean hasFocus) {
    super.onWindowFocusChanged(hasFocus);
    if(hasFocus&&mPaintView==null){
      int screenWidth = mFl_signature.getMeasuredWidth();
      int screenHeight = mFl_signature.getMeasuredHeight();
      mPaintView=new PaintView(getApplicationContext(),screenWidth, screenHeight);
      mFl_signature.addView(mPaintView);
      mPaintView.requestFocus();
    }
  }

//創(chuàng)建簽名文件

private void createSignFile() {

    FileOutputStream fos = null;

    File file = null;
    try {
      path= generateImgePath();
      file = new File(path);
      fos = new FileOutputStream(file);

      //如果設(shè)置成
      mPaintBitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      try {
        if (fos != null) {
          fos.close();
        }

      } catch (IOException e) {
        e.printStackTrace();
      }
    }
  }

//重新簽名

if (mPaintView.getPath().isEmpty()){
          ToastUtils.showShort(this,"您還沒有簽名呦");
        }else {
          mPaintView.clear();

        }

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論