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