0535ad4a0d5e7f93929d23b3c19e2bb2e82cb7f3
[zxing.git] / android / src / com / google / zxing / client / android / HelpActivity.java
1 /*
2  * Copyright 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.content.DialogInterface;
22 import android.content.Intent;
23 import android.net.Uri;
24 import android.os.Build;
25 import android.os.Bundle;
26 import android.util.Log;
27 import android.view.View;
28 import android.view.KeyEvent;
29 import android.webkit.WebView;
30 import android.webkit.WebViewClient;
31 import android.widget.Button;
32
33 /**
34  * An HTML-based help screen with Back and Done buttons at the bottom.
35  *
36  * @author dswitkin@google.com (Daniel Switkin)
37  */
38 public final class HelpActivity extends Activity {
39   private static final String TAG = HelpActivity.class.getSimpleName();
40
41   // Actually guessing at the Desire's MODEL for now:
42   private static final String[] BUGGY_MODEL_SUBSTRINGS = {"Desire", "Pulse", "Geeksphone"};
43   private static final Uri BUGGY_URI =
44       Uri.parse("http://code.google.com/p/zxing/wiki/FrequentlyAskedQuestions");
45
46   // Use this key and one of the values below when launching this activity via intent. If not
47   // present, the default page will be loaded.
48   public static final String REQUESTED_PAGE_KEY = "requested_page_key";
49   public static final String DEFAULT_PAGE = "index.html";
50   public static final String WHATS_NEW_PAGE = "whatsnew.html";
51   private static final String BASE_URL = "file:///android_asset/html/";
52
53   private static boolean initialized = false;
54   private WebView webView;
55   private Button backButton;
56
57   private final Button.OnClickListener backListener = new Button.OnClickListener() {
58     public void onClick(View view) {
59       webView.goBack();
60     }
61   };
62
63   private final Button.OnClickListener doneListener = new Button.OnClickListener() {
64     public void onClick(View view) {
65       finish();
66     }
67   };
68
69   private final DialogInterface.OnClickListener groupsListener =
70       new DialogInterface.OnClickListener() {
71     public void onClick(DialogInterface dialogInterface, int i) {
72       Intent intent = new Intent(Intent.ACTION_VIEW, BUGGY_URI);
73       intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
74       HelpActivity.this.startActivity(intent);
75     }
76   };
77
78   @Override
79   protected void onCreate(Bundle icicle) {
80     super.onCreate(icicle);
81     setContentView(R.layout.help);
82
83     webView = (WebView)findViewById(R.id.help_contents);
84     webView.setWebViewClient(new HelpClient());
85
86     Intent intent = getIntent();
87     if (icicle != null) {
88       webView.restoreState(icicle);
89     } else if (intent != null) {
90       String page = intent.getStringExtra(REQUESTED_PAGE_KEY);
91       if (page != null && page.length() > 0) {
92         webView.loadUrl(BASE_URL + page);
93       } else {
94         webView.loadUrl(BASE_URL + DEFAULT_PAGE);
95       }
96     } else {
97       webView.loadUrl(BASE_URL + DEFAULT_PAGE);
98     }
99
100     backButton = (Button)findViewById(R.id.back_button);
101     backButton.setOnClickListener(backListener);
102     Button doneButton = (Button)findViewById(R.id.done_button);
103     doneButton.setOnClickListener(doneListener);
104
105     if (!initialized) {
106       initialized = true;
107       checkBuggyDevice();
108     }
109   }
110
111   private void checkBuggyDevice() {
112     String model = Build.MODEL;
113     Log.i(TAG, "Build model is " + model);
114     if (model != null) {
115       for (String buggyModelSubstring : BUGGY_MODEL_SUBSTRINGS) {
116         if (model.contains(buggyModelSubstring)) {
117           AlertDialog.Builder builder = new AlertDialog.Builder(this);
118           builder.setMessage(R.string.msg_buggy);
119           builder.setPositiveButton(R.string.button_ok, groupsListener);
120           builder.setNegativeButton(R.string.button_cancel, null);
121           builder.show();
122           break;
123         }
124       }
125     }
126   }
127
128   @Override
129   protected void onSaveInstanceState(Bundle state) {
130     webView.saveState(state);
131   }
132
133   @Override
134   public boolean onKeyDown(int keyCode, KeyEvent event) {
135     if (keyCode == KeyEvent.KEYCODE_BACK) {
136       if (webView.canGoBack()) {
137         webView.goBack();
138         return true;
139       }
140     }
141     return super.onKeyDown(keyCode, event);
142   }
143
144   private final class HelpClient extends WebViewClient {
145     @Override
146     public void onPageFinished(WebView view, String url) {
147       setTitle(view.getTitle());
148       backButton.setEnabled(view.canGoBack());
149     }
150   }
151 }