新手快速集成ZXing的掃描二維碼,自定義界面功能實(shí)現(xiàn)

QRCodeDemo

新手快速集成ZXing的掃描二維碼馋劈,同時(shí)自定義封裝實(shí)現(xiàn)

目錄

  • 基本概述(項(xiàng)目資源地址)
    • 優(yōu)點(diǎn)
    • 缺點(diǎn)
    • 界面展示
  • 二維碼模塊開發(fā)過程
    • ZXing集成
      • 導(dǎo)入ZXing.jar包
      • 拷貝資源文件到工程中
      • 拷貝掃碼核心類到工程中
    • 主要包類簡述
    • 自定義掃碼頁面布局文件
    • 自定義功能代碼

基本概述

最老牌的二維碼框架
博客地址
Github地址
需要的資源可以直接從這個(gè)項(xiàng)目里面提取

優(yōu)勢

  • Google的開源框架,高度的可定制性
  • 除了二維碼還可以識(shí)別其他碼,如條形碼
  • 不依賴第三方错蝴,使用簡單

缺點(diǎn)

  • 相對(duì)Gradle依賴,ZXing的集成更為繁瑣
  • 高度的可定制性也表示這更高的學(xué)習(xí)成本

開發(fā)過程

ZXing集成

導(dǎo)入ZXing.jar包

[圖片上傳失敗...(image-58147a-1522833930690)]

  • 導(dǎo)入以后記得右鍵add as library

拷貝資源文件到工程中

將下面資源拷貝到自己工程下

  • layout包:

    • activity_qrcode_capture_layout.xml :主要掃碼界面的布局颓芭,自定義布局的核心文件
  • raw包:(沒有就新建)

    • beep.ogg :這個(gè)就是掃碼成功的提示音效顷锰,也可以用自己的音效,不過名字要一樣
  • values包:

    • colors.xml中添加如下的資源:
<!-- QR_Code -->
    <color name="viewfinder_mask">#60000000</color>
    <color name="result_view">#b0000000</color>
    <color name="possible_result_points">#c0ffff00</color>
    <color name="result_image_border">#ffffffff</color>
    <color name="result_minor_text">#ffc0c0c0</color>
    <color name="result_points">#c000ff00</color>
    <color name="system_bar_color">#fed952</color>
  • ids.xml下添加如下資源:(沒有就新建)
 <!-- QR_Code -->
    <item name="auto_focus" type="id"/>
    <item name="decode" type="id"/>
    <item name="decode_failed" type="id"/>
    <item name="decode_succeeded" type="id"/>
    <item name="encode_failed" type="id"/>
    <item name="encode_succeeded" type="id"/>
    <item name="launch_product_query" type="id"/>
    <item name="quit" type="id"/>
    <item name="restart_preview" type="id"/>
    <item name="return_scan_result" type="id"/>
    <item name="search_book_contents_failed" type="id"/>
    <item name="search_book_contents_succeeded" type="id"/>
    <item name="gridview" type="id"/>
    <item name="webview" type="id"/>
    <item name="about_version_code" type="id">false</item>
    <item name="split" type="id">false</item>
  • strings.xml 資源添加一下字符串資源:
   <!-- QR_Code -->
    <string name="button_ok">OK</string>
    <string name="msg_camera_framework_bug">Sorry, the Android camera encountered a problem. You may need to restart the
        device.
    </string>
    <string name="msg_bulk_mode_scanned">Bulk mode: barcode scanned and saved</string>
    <string name="scan_text">放入框中即可進(jìn)行二維碼掃描</string>
    <string name="contents_contact">Contact info</string>
    <string name="contents_email">Email address</string>
    <string name="contents_location">Geographic coordinates</string>
    <string name="contents_phone">Phone number</string>
    <string name="contents_sms">SMS address</string>
    <string name="contents_text">Plain text</string>
    <string name="preferences_vibrate">preferences_vibrate</string>
    <string name="preferences_play_beep">preferences_play_beep</string>
    <string name="preferences_actions_title">When a barcode is found\u2026</string>
    <string name="preferences_copy_to_clipboard_title">Copy to clipboard</string>
    <string name="preferences_decode_1D_title">1D barcodes</string>
    <string name="preferences_decode_Data_Matrix_title">Data Matrix</string>
    <string name="preferences_decode_QR_title">QR Codes</string>
    <string name="preferences_play_beep_title">Beep</string>
    <string name="preferences_remember_duplicates_summary">Store multiple scans of the same barcode in History</string>
    <string name="preferences_remember_duplicates_title">Remember duplicates</string>
    <string name="preferences_scanning_title">When scanning for barcodes, decode\u2026</string>
    <string name="preferences_supplemental_summary">Try to retrieve more information about the barcode contents</string>
    <string name="preferences_supplemental_title">Retrieve more info</string>
    <string name="preferences_vibrate_title">Vibrate</string>
    <string name="preview_msg">&#160;preview pages available,click Download for more.</string>
  • xml包: 新建 xml包
    • 添加:preferences.xml

拷貝掃碼核心類到工程中

這個(gè)過程很簡單亡问,直接將ZXing的Java核心類文件夾拷貝到你的工程包名目錄下就可以了
[圖片上傳失敗...(image-bbd546-1522833930690)]

主要包類簡述

對(duì)核心功能類的了解官紫,就是我們自定義掃碼功能的基礎(chǔ)

  • CaptureActivity :整個(gè)掃碼的界面活動(dòng)類

  • PreferencesActivity : 掃碼功能的配置類,不會(huì)對(duì)其作出修改

  • CameraManager

    • 掃碼的預(yù)覽閃光燈等一系列功能州藕,主要提供給我們調(diào)用束世,也不會(huì)對(duì)它作出修改
    • Camera類中暴露其他Manager的實(shí)現(xiàn)接口而已
  • DecodeThread : 解碼的線程

  • DecodeHandler : 中轉(zhuǎn)類,將線程的消息轉(zhuǎn)發(fā)到 下面的CaptureActivityHandler

  • CaptureActivityHandler : 異步回傳消息真正的邏輯處理實(shí)現(xiàn)類

  • Util :獲取屏幕寬高和IMEI

  • ViewfinderView 掃碼自定義框最主要的類床玻,自定義掃碼框主要在這里完成

自定義掃碼頁面布局文件

主要在activity_qrcode_capture_layout.xml中操作:
本來的文件布局:
只有一個(gè)簡單的攝像頭預(yù)覽的SurfaceView和掃碼框ViewfinderView

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             xmlns:app="http://schemas.android.com/apk/res-auto"
             android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <SurfaceView
            android:id="@+id/preview_view"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_gravity="center" />

        <com.rayhahah.qrcodedemo.zxing.view.ViewfinderView
            android:id="@+id/viewfinder_view"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <RelativeLayout
                android:background="@color/transparent"
                android:layout_width="match_parent"
                android:layout_height="@dimen/dp_50">


                <ImageView
                    android:visibility="visible"
                    android:layout_alignParentLeft="true"
                    android:id="@+id/iv_qrcode_back"
                    android:layout_marginLeft="@dimen/dp_10"
                    android:src="@drawable/ic_svg_arrow_left_color_primary_24"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"/>

                <TextView
                    android:layout_centerInParent="true"
                    android:textSize="@dimen/sp_20"
                    android:gravity="center"
                    android:text="@string/decode_qrcode"
                    android:textColor="?attr/colorPrimary"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"/>

            </RelativeLayout>

            <View
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />

            <include
                android:id="@+id/include2"
                layout="@layout/layout_qrcode_bottom_feature"
                android:layout_width="match_parent"
                android:layout_height="@dimen/dp_60" />

        </LinearLayout>

    </RelativeLayout>

</FrameLayout>

然后加入我們自己的元素:

  1. 底部功能欄:相冊(cè)毁涉、閃光的、生成二維碼
<?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="@dimen/dp_60"
    android:background="@color/transparent"
    android:orientation="horizontal"
    android:padding="@dimen/dp_5">

    <TextView
        android:id="@+id/qrcode_btn_photo"
        style="@style/text_middle_center"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:drawableTop="@drawable/selector_ic_photo"
        android:text="@string/photo_album"
        android:textColor="?attr/colorPrimary"
        android:textSize="@dimen/sp_16"/>

    <TextView
        android:id="@+id/qrcode_btn_flash"
        style="@style/text_middle_center"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:drawableTop="@drawable/selector_ic_flash"
        android:text="@string/flash_light"
        android:textColor="?attr/colorPrimary"
        android:textSize="@dimen/sp_16"/>

    <TextView
        android:id="@+id/qrcode_btn_encode"
        style="@style/text_middle_center"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:drawableTop="@drawable/selector_ic_qrcode"
        android:text="@string/qrcode"
        android:textColor="?attr/colorPrimary"
        android:textSize="@dimen/sp_16"/>

</LinearLayout>

掃碼框的自定義實(shí)現(xiàn)主要在ViewfinderView.java中onDraw動(dòng)態(tài)繪制:
主要原理就是獲取他本來的掃碼框大小锈死,然后在他的四個(gè)角分別繪制兩個(gè)長方形來包裹贫堰,同時(shí)在中間實(shí)現(xiàn)一個(gè)不斷移動(dòng)的掃碼條

   @Override
     public void onDraw(Canvas canvas) {
         Rect frame = CameraManager.get().getFramingRect();
         if (frame == null) {
             return;
         }
 
         if (!isFirst) {
             isFirst = true;
             slideTop = frame.top;
             slideBottom = frame.bottom;
         }
         int width = canvas.getWidth();
         int height = canvas.getHeight();
 
         // Draw the exterior (i.e. outside the framing rect) darkened
         paint.setColor(resultBitmap != null ? resultColor : maskColor);
         canvas.drawRect(0, 0, width, frame.top, paint);
         canvas.drawRect(0, frame.top, frame.left, frame.bottom + 1, paint);
         canvas.drawRect(frame.right + 1, frame.top, width, frame.bottom + 1,
                 paint);
         canvas.drawRect(0, frame.bottom + 1, width, height, paint);
 
         //這里開始是自定義的部分
         if (resultBitmap != null) {
             // Draw the opaque result bitmap over the scanning rectangle
             paint.setAlpha(OPAQUE);
             canvas.drawBitmap(resultBitmap, null, frame, paint);
         } else {
 
             //畫出8個(gè)正方形,組成括住掃碼框
             paint.setColor(scanColor);
             canvas.drawRect(frame.left, frame.top, frame.left + ScreenRate,
                     frame.top + CORNER_WIDTH, paint);
             canvas.drawRect(frame.left, frame.top, frame.left + CORNER_WIDTH,
                     frame.top + ScreenRate, paint);
             canvas.drawRect(frame.right - ScreenRate, frame.top, frame.right,
                     frame.top + CORNER_WIDTH, paint);
             canvas.drawRect(frame.right - CORNER_WIDTH, frame.top, frame.right,
                     frame.top + ScreenRate, paint);
             canvas.drawRect(frame.left, frame.bottom - CORNER_WIDTH, frame.left
                     + ScreenRate, frame.bottom, paint);
             canvas.drawRect(frame.left, frame.bottom - ScreenRate, frame.left
                     + CORNER_WIDTH, frame.bottom, paint);
             canvas.drawRect(frame.right - ScreenRate, frame.bottom
                     - CORNER_WIDTH, frame.right, frame.bottom, paint);
             canvas.drawRect(frame.right - CORNER_WIDTH, frame.bottom
                     - ScreenRate, frame.right, frame.bottom, paint);
 
             /**
              * 一直在移動(dòng)的掃描條
              */
             slideTop += SPEEN_DISTANCE;
             if (slideTop >= frame.bottom) {
                 slideTop = frame.top;
             }
             Rect lineRect = new Rect();
             lineRect.left = frame.left;
             lineRect.right = frame.right;
             lineRect.top = slideTop;
             lineRect.bottom = slideTop + 18;
             canvas.drawBitmap(((BitmapDrawable) (getResources()
                             .getDrawable(R.drawable.blue_line))).getBitmap(), null, lineRect,
                     paint);
 
             paint.setColor(Color.WHITE);
             paint.setTextSize(TEXT_SIZE * density);
             paint.setAlpha(0x40);
             paint.setTypeface(Typeface.create("System", Typeface.BOLD));
             String text = getResources().getString(R.string.scan_text);
             float textWidth = paint.measureText(text);
 
             canvas.drawText(
                     text,
                     (width - textWidth) / 2,
                     (float) (frame.bottom + (float) TEXT_PADDING_TOP * density),
                     paint);
 
             //自定義部分結(jié)束
 
             Collection<ResultPoint> currentPossible = possibleResultPoints;
             Collection<ResultPoint> currentLast = lastPossibleResultPoints;
             if (currentPossible.isEmpty()) {
                 lastPossibleResultPoints = null;
             } else {
                 possibleResultPoints = new HashSet<ResultPoint>(5);
                 lastPossibleResultPoints = currentPossible;
                 paint.setAlpha(OPAQUE);
                 paint.setColor(resultPointColor);
                 for (ResultPoint point : currentPossible) {
                     canvas.drawCircle(frame.left + point.getX(), frame.top
                             + point.getY(), 6.0f, paint);
                 }
             }
             if (currentLast != null) {
                 paint.setAlpha(OPAQUE / 2);
                 paint.setColor(resultPointColor);
                 for (ResultPoint point : currentLast) {
                     canvas.drawCircle(frame.left + point.getX(), frame.top
                             + point.getY(), 3.0f, paint);
                 }
             }
 
             postInvalidateDelayed(ANIMATION_DELAY, frame.left, frame.top,
                     frame.right, frame.bottom);
         }
     }

自定義功能代碼

CaptureActivity.Java中完成:

  1. 首先找到我們的控件:
  btnBack = ((ImageView) findViewById(R.id.iv_qrcode_back));
        btnPhoto = ((TextView) findViewById(R.id.qrcode_btn_photo));
        btnFlash = ((TextView) findViewById(R.id.qrcode_btn_flash));
        btnEncode = ((TextView) findViewById(R.id.qrcode_btn_encode));
        btnBack.setOnClickListener(this);
        btnPhoto.setOnClickListener(this);
        btnFlash.setOnClickListener(this);
        btnEncode.setOnClickListener(this);

  1. 監(jiān)聽實(shí)現(xiàn):
 
    @Override
    public void onClick(View view) {
        switch (view.getId()) {
            case R.id.iv_qrcode_back:
                finish();
                break;
            case R.id.qrcode_btn_photo:
                //跳轉(zhuǎn)到系統(tǒng)相冊(cè)選擇圖片
                Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
                intent.setType("image/*");
                Intent wrapperIntent = Intent.createChooser(intent, "選擇二維碼圖片");
                startActivityForResult(wrapperIntent, REQUEST_CODE);
                break;
            case R.id.qrcode_btn_flash:
                if (isFlash) {
                    //關(guān)閉閃光燈
                    CameraManager.get().turnLightOff();
                    isFlash=false;
                } else {
                    //開啟閃光燈
                    CameraManager.get().turnLightOn();
                    isFlash=true;
                }
                break;
            case R.id.qrcode_btn_encode:
                // 跳轉(zhuǎn)到生成二維碼頁面
                Bitmap b = createQRCode();
                Intent intentEncode = getIntent();
                intentEncode.putExtra(EXTRA_DATA, b);
//                intentEncode.putExtra("QR_CODE", b);
                setResult(RESULT_CODE_ENCODE, intentEncode);
                finish();
                break;
            default:
                break;
        }
    }
  1. CaptureActivity中獲取相冊(cè)中選擇的圖片來掃碼:
     @Override
      protected void onActivityResult(int requestCode, int resultCode, Intent data) {
          super.onActivityResult(requestCode, resultCode, data);
          //返回選擇的需要掃描二維碼的圖片
          if (resultCode == RESULT_OK) {
              //被選擇的二維碼圖片的uri
              uri = data.getData();
              new Thread(new Runnable() {
                  @Override
                  public void run() {
                      //掃描
                      Result result = scanningImage(uri);
                      if (result == null) {
                          Looper.prepare();
                          Toast.makeText(getApplicationContext(), "圖片格式有誤", Toast.LENGTH_SHORT).show();
                          Looper.loop();
                      } else {
                          // 數(shù)據(jù)返回待牵,在這里去處理掃碼結(jié)果
                          String recode = (result.toString());
                          Intent data = new Intent();
                          data.putExtra(EXTRA_DATA, recode);
                          setResult(RESULT_CODE_DECODE, data);
                          finish();
                      }
                  }
              }).start();
          }
      }
  1. 最后只要在我們啟動(dòng)的Activity中的獲取二維碼掃描后的內(nèi)容并做自己的處理就可以了其屏,MainActivity中的使用

   private static final int REQUEST_QRCODE = 0x01;
   
  public void onQRCodeClick(View view) {
        //啟動(dòng)二維碼掃描的頁面功能
        Intent intent = new Intent(this, CaptureActivity.class);
        startActivityForResult(intent, REQUEST_QRCODE);
    }

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (requestCode == REQUEST_QRCODE) {
            switch (resultCode) {
                case CaptureActivity.RESULT_CODE_DECODE:
                case Activity.RESULT_OK:
                    String codeData = data.getStringExtra(CaptureActivity.EXTRA_DATA);
                    Toast.makeText(this, codeData, Toast.LENGTH_SHORT).show();
                    break;
                default:
                    break;
            }
        }
    }

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市缨该,隨后出現(xiàn)的幾起案子偎行,更是在濱河造成了極大的恐慌,老刑警劉巖贰拿,帶你破解...
    沈念sama閱讀 218,451評(píng)論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蛤袒,死亡現(xiàn)場離奇詭異,居然都是意外死亡壮不,警方通過查閱死者的電腦和手機(jī)汗盘,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,172評(píng)論 3 394
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來询一,“玉大人隐孽,你說我怎么就攤上這事癌椿。” “怎么了菱阵?”我有些...
    開封第一講書人閱讀 164,782評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵踢俄,是天一觀的道長。 經(jīng)常有香客問我晴及,道長都办,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,709評(píng)論 1 294
  • 正文 為了忘掉前任虑稼,我火速辦了婚禮琳钉,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘蛛倦。我一直安慰自己歌懒,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,733評(píng)論 6 392
  • 文/花漫 我一把揭開白布溯壶。 她就那樣靜靜地躺著及皂,像睡著了一般。 火紅的嫁衣襯著肌膚如雪且改。 梳的紋絲不亂的頭發(fā)上验烧,一...
    開封第一講書人閱讀 51,578評(píng)論 1 305
  • 那天,我揣著相機(jī)與錄音又跛,去河邊找鬼碍拆。 笑死,一個(gè)胖子當(dāng)著我的面吹牛慨蓝,可吹牛的內(nèi)容都是我干的倔监。 我是一名探鬼主播,決...
    沈念sama閱讀 40,320評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼菌仁,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼!你這毒婦竟也來了静暂?” 一聲冷哼從身側(cè)響起济丘,我...
    開封第一講書人閱讀 39,241評(píng)論 0 276
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎洽蛀,沒想到半個(gè)月后摹迷,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,686評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡郊供,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,878評(píng)論 3 336
  • 正文 我和宋清朗相戀三年峡碉,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片驮审。...
    茶點(diǎn)故事閱讀 39,992評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡鲫寄,死狀恐怖吉执,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情地来,我是刑警寧澤戳玫,帶...
    沈念sama閱讀 35,715評(píng)論 5 346
  • 正文 年R本政府宣布,位于F島的核電站未斑,受9級(jí)特大地震影響咕宿,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蜡秽,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,336評(píng)論 3 330
  • 文/蒙蒙 一府阀、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧芽突,春花似錦试浙、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,912評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至睬澡,卻和暖如春固额,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背煞聪。 一陣腳步聲響...
    開封第一講書人閱讀 33,040評(píng)論 1 270
  • 我被黑心中介騙來泰國打工斗躏, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人昔脯。 一個(gè)月前我還...
    沈念sama閱讀 48,173評(píng)論 3 370
  • 正文 我出身青樓啄糙,卻偏偏與公主長得像,于是被迫代替她去往敵國和親云稚。 傳聞我的和親對(duì)象是個(gè)殘疾皇子隧饼,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,947評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 172,140評(píng)論 25 707
  • 前言 現(xiàn)在的應(yīng)用中二維碼掃描已經(jīng)成為一個(gè)應(yīng)用必不可少的功能,現(xiàn)在大部分Android二維碼掃描都是基于zxing和...
    g小志閱讀 5,149評(píng)論 1 5
  • Zxing已經(jīng)是一個(gè)很成熟的框架了静陈,但它是用maven構(gòu)建的項(xiàng)目燕雁,在以gradle為基礎(chǔ)的AS中集成起來總感覺不太...
    霧中的影子閱讀 46,280評(píng)論 7 28
  • 音樂,電影鲸拥,書籍拐格,這些信仰在現(xiàn)實(shí)面前被擊得粉碎。 和過去說再見刑赶。 和企業(yè)文化是否契合捏浊,能不能適應(yīng)企業(yè)的發(fā)展。 我們...
    驍龍閱讀 162評(píng)論 0 0