The new Android client, featuring:
[zxing.git] / android / src / com / google / zxing / client / android / BarcodesEncodeActivity.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android;
18
19 import android.app.Activity;
20 import android.app.AlertDialog;
21 import android.app.ProgressDialog;
22 import android.content.DialogInterface;
23 import android.content.DialogInterface.OnCancelListener;
24 import android.content.DialogInterface.OnClickListener;
25 import android.content.Intent;
26 import android.graphics.Bitmap;
27 import android.os.Bundle;
28 import android.os.Handler;
29 import android.os.Message;
30 import android.view.ViewTreeObserver.OnGlobalLayoutListener;
31 import android.widget.ImageView;
32 import android.widget.LinearLayout;
33 import android.widget.TextView;
34
35 /**
36  * This class encodes data from an Intent into a QR code, and then displays it full screen so that
37  * another person can scan it with their device.
38  */
39 public class BarcodesEncodeActivity extends Activity {
40
41   private QRCodeEncoder mQRCodeEncoder;
42   private ProgressDialog mProgressDialog;
43   private boolean mFirstLayout;
44
45   @Override
46   public void onCreate(Bundle icicle) {
47     super.onCreate(icicle);
48
49     Intent intent = getIntent();
50     if (intent != null && (intent.getAction().equals(Intents.Encode.ACTION) ||
51         intent.getAction().equals(Intents.Encode.DEPRECATED_ACTION))) {
52       setContentView(R.layout.encode);
53     } else {
54       finish();
55     }
56   }
57
58   @Override
59   protected void onResume() {
60     super.onResume();
61
62     LinearLayout layout = (LinearLayout) findViewById(R.id.encode_view);
63     layout.getViewTreeObserver().addOnGlobalLayoutListener(mLayoutListener);
64     mFirstLayout = true;
65   }
66
67   /**
68    * This needs to be delayed until after the first layout so that the view dimensions will be
69    * available.
70    */
71   public OnGlobalLayoutListener mLayoutListener = new OnGlobalLayoutListener() {
72     public void onGlobalLayout() {
73       if (mFirstLayout) {
74         LinearLayout layout = (LinearLayout) findViewById(R.id.encode_view);
75         int width = layout.getWidth();
76         int height = layout.getHeight();
77         int smallerDimension = (width < height) ? width : height;
78
79         Intent intent = getIntent();
80         try {
81           mQRCodeEncoder = new QRCodeEncoder(BarcodesEncodeActivity.this, intent);
82           setTitle(getString(R.string.app_name) + " - " + mQRCodeEncoder.getTitle());
83           mQRCodeEncoder.requestBarcode(mHandler, smallerDimension);
84           mProgressDialog = ProgressDialog.show(BarcodesEncodeActivity.this, null,
85               getString(R.string.msg_encode_in_progress), true, true, mCancelListener);
86         } catch (IllegalArgumentException e) {
87           showErrorMessage(R.string.msg_encode_contents_failed);
88         }
89         mFirstLayout = false;
90       }
91     }
92   };
93
94   public Handler mHandler = new Handler() {
95     public void handleMessage(Message message) {
96       switch (message.what) {
97         case R.id.encode_succeeded:
98           mProgressDialog.dismiss();
99           mProgressDialog = null;
100           Bitmap image = (Bitmap) message.obj;
101           ImageView view = (ImageView) findViewById(R.id.image_view);
102           view.setImageBitmap(image);
103           TextView contents = (TextView) findViewById(R.id.contents_text_view);
104           contents.setText(mQRCodeEncoder.getDisplayContents());
105           mQRCodeEncoder = null;
106           break;
107         case R.id.encode_failed:
108           showErrorMessage(R.string.msg_encode_barcode_failed);
109           mQRCodeEncoder = null;
110           break;
111       }
112     }
113   };
114
115   private void showErrorMessage(int message) {
116     if (mProgressDialog != null) {
117       mProgressDialog.dismiss();
118       mProgressDialog = null;
119     }
120     AlertDialog.Builder builder = new AlertDialog.Builder(this);
121     builder.setMessage(message);
122     builder.setPositiveButton(R.string.button_ok, mClickListener);
123     builder.show();
124   }
125
126   private OnClickListener mClickListener = new OnClickListener() {
127     public void onClick(DialogInterface dialog, int which) {
128       finish();
129     }
130   };
131
132   private OnCancelListener mCancelListener = new OnCancelListener() {
133     public void onCancel(DialogInterface dialog) {
134       finish();
135     }
136   };
137
138 }