mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Break out click listener class and make duplicate scans always result in new entry at top
git-svn-id: https://zxing.googlecode.com/svn/trunk@1490 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
348ebf3adc
commit
f53c7573db
|
@ -0,0 +1,75 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2009 ZXing authors
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.google.zxing.client.android.history;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import android.app.AlertDialog;
|
||||||
|
import android.content.DialogInterface;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.net.Uri;
|
||||||
|
import android.os.Message;
|
||||||
|
import com.google.zxing.Result;
|
||||||
|
import com.google.zxing.client.android.CaptureActivity;
|
||||||
|
import com.google.zxing.client.android.R;
|
||||||
|
|
||||||
|
final class HistoryClickListener implements DialogInterface.OnClickListener {
|
||||||
|
|
||||||
|
private final HistoryManager historyManager;
|
||||||
|
private final CaptureActivity activity;
|
||||||
|
private final String[] dialogItems;
|
||||||
|
private final List<Result> items;
|
||||||
|
|
||||||
|
HistoryClickListener(HistoryManager historyManager,
|
||||||
|
CaptureActivity activity,
|
||||||
|
String[] dialogItems,
|
||||||
|
List<Result> items) {
|
||||||
|
this.historyManager = historyManager;
|
||||||
|
this.activity = activity;
|
||||||
|
this.dialogItems = dialogItems;
|
||||||
|
this.items = items;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void onClick(DialogInterface dialogInterface, int i) {
|
||||||
|
if (i == dialogItems.length - 1) {
|
||||||
|
historyManager.clearHistory();
|
||||||
|
} else if (i == dialogItems.length - 2) {
|
||||||
|
CharSequence history = historyManager.buildHistory();
|
||||||
|
Uri historyFile = HistoryManager.saveHistory(history.toString());
|
||||||
|
if (historyFile == null) {
|
||||||
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
||||||
|
builder.setMessage(R.string.msg_unmount_usb);
|
||||||
|
builder.setPositiveButton(R.string.button_ok, null);
|
||||||
|
builder.show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Intent intent = new Intent(Intent.ACTION_SEND, Uri.parse("mailto:"));
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
|
||||||
|
String subject = activity.getResources().getString(R.string.history_email_title);
|
||||||
|
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
|
||||||
|
intent.putExtra(Intent.EXTRA_TEXT, subject);
|
||||||
|
intent.putExtra(Intent.EXTRA_STREAM, historyFile);
|
||||||
|
intent.setType("text/csv");
|
||||||
|
activity.startActivity(intent);
|
||||||
|
} else {
|
||||||
|
Result result = items.get(i);
|
||||||
|
Message message = Message.obtain(activity.getHandler(), R.id.decode_succeeded, result);
|
||||||
|
message.sendToTarget();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -19,14 +19,12 @@ package com.google.zxing.client.android.history;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
import android.content.ContentValues;
|
import android.content.ContentValues;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
|
||||||
import android.content.res.Resources;
|
import android.content.res.Resources;
|
||||||
import android.database.sqlite.SQLiteDatabase;
|
import android.database.sqlite.SQLiteDatabase;
|
||||||
import android.database.sqlite.SQLiteOpenHelper;
|
import android.database.sqlite.SQLiteOpenHelper;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Environment;
|
import android.os.Environment;
|
||||||
import android.os.Message;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
|
@ -113,7 +111,7 @@ public final class HistoryManager {
|
||||||
Resources res = activity.getResources();
|
Resources res = activity.getResources();
|
||||||
dialogItems[dialogItems.length - 2] = res.getString(R.string.history_send);
|
dialogItems[dialogItems.length - 2] = res.getString(R.string.history_send);
|
||||||
dialogItems[dialogItems.length - 1] = res.getString(R.string.history_clear_text);
|
dialogItems[dialogItems.length - 1] = res.getString(R.string.history_clear_text);
|
||||||
DialogInterface.OnClickListener clickListener = new HistoryClickListener(dialogItems, items);
|
DialogInterface.OnClickListener clickListener = new HistoryClickListener(this, activity, dialogItems, items);
|
||||||
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
||||||
builder.setTitle(R.string.history_title);
|
builder.setTitle(R.string.history_title);
|
||||||
builder.setItems(dialogItems, clickListener);
|
builder.setItems(dialogItems, clickListener);
|
||||||
|
@ -128,16 +126,10 @@ public final class HistoryManager {
|
||||||
|
|
||||||
SQLiteOpenHelper helper = new DBHelper(activity);
|
SQLiteOpenHelper helper = new DBHelper(activity);
|
||||||
SQLiteDatabase db = helper.getWritableDatabase();
|
SQLiteDatabase db = helper.getWritableDatabase();
|
||||||
Cursor cursor = null;
|
|
||||||
try {
|
try {
|
||||||
cursor = db.query(DBHelper.TABLE_NAME,
|
// Delete if already exists
|
||||||
TEXT_COL_PROJECTION,
|
db.delete(DBHelper.TABLE_NAME, DBHelper.TEXT_COL + "=?", new String[] { result.getText() });
|
||||||
DBHelper.TEXT_COL + "=?",
|
// Insert
|
||||||
new String[] { result.getText() },
|
|
||||||
null, null, null, null);
|
|
||||||
if (cursor.moveToNext()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
ContentValues values = new ContentValues();
|
ContentValues values = new ContentValues();
|
||||||
values.put(DBHelper.TEXT_COL, result.getText());
|
values.put(DBHelper.TEXT_COL, result.getText());
|
||||||
values.put(DBHelper.FORMAT_COL, result.getBarcodeFormat().toString());
|
values.put(DBHelper.FORMAT_COL, result.getBarcodeFormat().toString());
|
||||||
|
@ -145,9 +137,6 @@ public final class HistoryManager {
|
||||||
values.put(DBHelper.TIMESTAMP_COL, System.currentTimeMillis());
|
values.put(DBHelper.TIMESTAMP_COL, System.currentTimeMillis());
|
||||||
db.insert(DBHelper.TABLE_NAME, DBHelper.TIMESTAMP_COL, values);
|
db.insert(DBHelper.TABLE_NAME, DBHelper.TIMESTAMP_COL, values);
|
||||||
} finally {
|
} finally {
|
||||||
if (cursor != null) {
|
|
||||||
cursor.close();
|
|
||||||
}
|
|
||||||
db.close();
|
db.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -190,7 +179,7 @@ public final class HistoryManager {
|
||||||
* <li>Formatted version of timestamp</li>
|
* <li>Formatted version of timestamp</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
*/
|
*/
|
||||||
private CharSequence buildHistory() {
|
CharSequence buildHistory() {
|
||||||
StringBuilder historyText = new StringBuilder(1000);
|
StringBuilder historyText = new StringBuilder(1000);
|
||||||
SQLiteOpenHelper helper = new DBHelper(activity);
|
SQLiteOpenHelper helper = new DBHelper(activity);
|
||||||
SQLiteDatabase db = helper.getReadableDatabase();
|
SQLiteDatabase db = helper.getReadableDatabase();
|
||||||
|
@ -218,7 +207,7 @@ public final class HistoryManager {
|
||||||
return historyText;
|
return historyText;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Uri saveHistory(String history) {
|
static Uri saveHistory(String history) {
|
||||||
File bsRoot = new File(Environment.getExternalStorageDirectory(), "BarcodeScanner");
|
File bsRoot = new File(Environment.getExternalStorageDirectory(), "BarcodeScanner");
|
||||||
File historyRoot = new File(bsRoot, "History");
|
File historyRoot = new File(bsRoot, "History");
|
||||||
if (!historyRoot.exists() && !historyRoot.mkdirs()) {
|
if (!historyRoot.exists() && !historyRoot.mkdirs()) {
|
||||||
|
@ -259,42 +248,4 @@ public final class HistoryManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class HistoryClickListener implements DialogInterface.OnClickListener {
|
|
||||||
|
|
||||||
private final String[] dialogItems;
|
|
||||||
private final List<Result> items;
|
|
||||||
|
|
||||||
private HistoryClickListener(String[] dialogItems, List<Result> items) {
|
|
||||||
this.dialogItems = dialogItems;
|
|
||||||
this.items = items;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onClick(DialogInterface dialogInterface, int i) {
|
|
||||||
if (i == dialogItems.length - 1) {
|
|
||||||
clearHistory();
|
|
||||||
} else if (i == dialogItems.length - 2) {
|
|
||||||
CharSequence history = buildHistory();
|
|
||||||
Uri historyFile = saveHistory(history.toString());
|
|
||||||
if (historyFile == null) {
|
|
||||||
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
|
||||||
builder.setMessage(R.string.msg_unmount_usb);
|
|
||||||
builder.setPositiveButton(R.string.button_ok, null);
|
|
||||||
builder.show();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Intent intent = new Intent(Intent.ACTION_SEND, Uri.parse("mailto:"));
|
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
|
|
||||||
String subject = activity.getResources().getString(R.string.history_email_title);
|
|
||||||
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
|
|
||||||
intent.putExtra(Intent.EXTRA_TEXT, subject);
|
|
||||||
intent.putExtra(Intent.EXTRA_STREAM, historyFile);
|
|
||||||
intent.setType("text/csv");
|
|
||||||
activity.startActivity(intent);
|
|
||||||
} else {
|
|
||||||
Result result = items.get(i);
|
|
||||||
Message message = Message.obtain(activity.getHandler(), R.id.decode_succeeded, result);
|
|
||||||
message.sendToTarget();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue