Minor changes from code inspection results
[zxing.git] / android / src / com / google / zxing / client / android / result / SMSResultHandler.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.SMSParsedResult;
22
23 import android.app.Activity;
24 import android.telephony.PhoneNumberUtils;
25
26 /**
27  * Handles SMS addresses, offering a choice of composing a new SMS or MMS message.
28  *
29  * @author dswitkin@google.com (Daniel Switkin)
30  */
31 public final class SMSResultHandler extends ResultHandler {
32   private static final int[] buttons = {
33       R.string.button_sms,
34       R.string.button_mms
35   };
36
37   public SMSResultHandler(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     SMSParsedResult smsResult = (SMSParsedResult) getResult();
54     switch (index) {
55       case 0:
56         // Don't know of a way yet to express a SENDTO intent with multiple recipients
57         sendSMS(smsResult.getNumbers()[0], smsResult.getBody());
58         break;
59       case 1:
60         sendMMS(smsResult.getNumbers()[0], smsResult.getSubject(), smsResult.getBody());
61         break;
62     }
63   }
64
65   @Override
66   public CharSequence getDisplayContents() {
67     SMSParsedResult smsResult = (SMSParsedResult) getResult();
68     StringBuffer contents = new StringBuffer(50);
69     String[] rawNumbers = smsResult.getNumbers();
70     String[] formattedNumbers = new String[rawNumbers.length];
71     for (int i = 0; i < rawNumbers.length; i++) {
72       formattedNumbers[i] = PhoneNumberUtils.formatNumber(rawNumbers[i]);
73     }
74     ParsedResult.maybeAppend(formattedNumbers, contents);
75     ParsedResult.maybeAppend(smsResult.getSubject(), contents);
76     ParsedResult.maybeAppend(smsResult.getBody(), contents);
77     return contents.toString();
78   }
79
80   @Override
81   public int getDisplayTitle() {
82     return R.string.result_sms;
83   }
84 }