41dd9fd36ce288fa9d7234e1ca2eeba81609bc39
[zxing.git] / android / src / com / google / zxing / client / android / result / WifiResultHandler.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.result;
18
19 import android.app.Activity;
20 import com.google.zxing.client.android.R;
21 import com.google.zxing.client.result.ParsedResult;
22 import com.google.zxing.client.result.WifiParsedResult;
23
24 /**
25  * Handles address book entries.
26  *
27  * @author viki@google.com (Vikram Aggarwal)
28  */
29 public final class WifiResultHandler extends ResultHandler {
30   final Activity parent;
31
32   public WifiResultHandler(Activity activity, ParsedResult result) {
33     super(activity, result);
34     parent = activity;
35   }
36
37   @Override
38   public int getButtonCount() {
39     // We just need one button, and that is to configure the wireless.  This could change in the future.
40     return 1;
41   }
42
43   @Override
44   public int getButtonText(int index) {
45     if (index == 0) {
46       return R.string.button_wifi;
47     }
48     throw new ArrayIndexOutOfBoundsException();
49   }
50
51   @Override
52   public void handleButtonPress(int index) {
53     // Get the underlying wifi config
54     final WifiParsedResult wifiResult = (WifiParsedResult) getResult();
55     if (index == 0) {
56       wifiConnect(wifiResult);
57     }
58   }
59
60   // Display the name of the network and the network type to the user.
61   @Override
62   public CharSequence getDisplayContents() {
63     final WifiParsedResult wifiResult = (WifiParsedResult) getResult();
64     StringBuffer contents = new StringBuffer();
65     final String wifiLabel = parent.getString(R.string.wifi_ssid_label);
66     ParsedResult.maybeAppend(wifiLabel + "\n" + wifiResult.getSsid(), contents);
67     final String typeLabel = parent.getString(R.string.wifi_type_label);
68     ParsedResult.maybeAppend(typeLabel + "\n" + wifiResult.getNetworkEncryption(), contents);
69     return contents.toString();
70   }
71
72   @Override
73   public int getDisplayTitle() {
74     return R.string.result_wifi;
75   }
76 }