Lots of updates:
[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) result;
54     switch (index) {
55       case 0:
56         sendSMS(smsResult.getNumber(), smsResult.getBody());
57         break;
58       case 1:
59         sendMMS(smsResult.getNumber(), smsResult.getSubject(), smsResult.getBody());
60         break;
61     }
62   }
63
64   @Override
65   public CharSequence getDisplayContents() {
66     SMSParsedResult smsResult = (SMSParsedResult) result;
67     StringBuffer contents = new StringBuffer();
68     ParsedResult.maybeAppend(PhoneNumberUtils.formatNumber(smsResult.getNumber()), contents);
69     ParsedResult.maybeAppend(smsResult.getVia(), contents);
70     ParsedResult.maybeAppend(smsResult.getSubject(), contents);
71     ParsedResult.maybeAppend(smsResult.getBody(), contents);
72     ParsedResult.maybeAppend(smsResult.getTitle(), contents);
73     return contents.toString();
74   }
75
76   @Override
77   public int getDisplayTitle() {
78     return R.string.result_sms;
79   }
80 }