85e028ea136063c8bef79e3205c5fae1d8ecabd3
[zxing.git] / android / src / com / google / zxing / client / android / result / TelResultHandler.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 com.google.zxing.client.android.R;
20 import com.google.zxing.client.result.ParsedResult;
21 import com.google.zxing.client.result.TelParsedResult;
22
23 import android.app.Activity;
24 import android.telephony.PhoneNumberUtils;
25
26 /**
27  * Offers relevant actions for telephone numbers.
28  *
29  * @author dswitkin@google.com (Daniel Switkin)
30  */
31 public final class TelResultHandler extends ResultHandler {
32   private static final int[] buttons = {
33       R.string.button_dial,
34       R.string.button_add_contact
35   };
36
37   public TelResultHandler(Activity activity, ParsedResult result) {
38     super(activity, result);
39   }
40
41   @Override
42   public int getButtonCount() {
43     return buttons.length;
44   }
45
46   @Override
47   public int getButtonText(int index) {
48     return buttons[index];
49   }
50
51   @Override
52   public void handleButtonPress(int index) {
53     TelParsedResult telResult = (TelParsedResult) getResult();
54     switch (index) {
55       case 0:
56         dialPhoneFromUri(telResult.getTelURI());
57         break;
58       case 1:
59         String[] numbers = new String[1];
60         numbers[0] = telResult.getNumber();
61         addContact(null, numbers, null, null, null, null, null);
62         break;
63     }
64   }
65
66   // Overriden so we can take advantage of Android's phone number hyphenation routines.
67   @Override
68   public CharSequence getDisplayContents() {
69     String contents = getResult().getDisplayResult();
70     contents = contents.replace("\r", "");
71     return PhoneNumberUtils.formatNumber(contents);
72   }
73
74   @Override
75   public int getDisplayTitle() {
76     return R.string.result_tel;
77   }
78 }