|
|
|
Android อยากให้ app อ่าน barcode แล้วแสดงใน edittext บน app ของเราครับ |
|
|
|
|
|
|
|
ไม่ต้องคิดไรมากครับ มันก้อเหมือน พิมคีย์บอร์ด ครับ พอแสกนเสร็จ มันจะ enter 1 ครับ ไปเช็ค event เมื่อมีการ enter ครับ
|
|
|
|
|
Date :
2013-05-14 12:31:26 |
By :
hicaruko |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้งานผ่าน Barcode Scanner โดยการ Intent ไปแล้วรอรับข้อมูลกลับ
Code (Android-Java)
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
startActivityForResult(intent, 0);
|
|
|
|
|
Date :
2013-05-15 11:03:16 |
By :
EvoLutionGT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (Android-Java)
public void scan(){
try{
//กำหนด intent ในการเรียกใช้ Barcode Scanner
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
//ส่ง Mode ในการ Scan ให้กับ โปรแกรม Barcode Scanner
intent.putExtra("com.google.zxing.client.android.SCAN.SCAN_MODE", "QR_CODE_MODE");
//เริ่ม Activity จาก intent ที่กำหนด โดยกำหนด requestCode เป็น 0
startActivityForResult(intent, 0);
} catch (Exception e) {
// TODO: handle exception
//ถ้าไม่ได้ลงโปรแกรม Barcode Scanner ไว้จะแสดงข้อความ Please Install Barcode Scanner
Toast.makeText(getBaseContext(),"Please Install Barcode Scanner",Toast.LENGTH_SHORT).show();
}
};
@Override
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
// TODO Auto-generated method stub
if (requestCode == 0) { //ทำการตรวจสอบว่า requestCode ตรงกับที่ Barcode Scanner คืนค่ามาหรือไม่
if (resultCode == RESULT_OK) { //ถ้า Barcode Scanner ทำงานสมบูรณ์
//รับข้อมูลจาก Barcode Scanner ที่ได้จากการสแกน
String contents = intent.getStringExtra("SCAN_RESULT");
//รับรูปแบบจาก Barcode Scanner ที่ได้จากการสแกน ว่าเป็นชนิดใด
//ทำการแสดงผลลัพธ์จากการแสกนใน txtResult
TextView tv =(TextView)findViewById(R.id.inv_bar);
tv.setText(contents);
} else if (resultCode == RESULT_CANCELED) {
//cancel
}
}
}
แปลง ๆ เอานะครับ เพราะผมก็ใช้ประมาณนี้ล่ะ ^^
|
ประวัติการแก้ไข 2013-05-18 01:18:12 2013-05-18 01:18:58
|
|
|
|
Date :
2013-05-18 01:15:41 |
By :
pinka01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|