-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathIntentUtil.java
337 lines (307 loc) · 13.3 KB
/
IntentUtil.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
package com.android.kickstart.utils;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.widget.Toast;
import java.io.File;
import java.util.ArrayList;
public class IntentUtil {
private static String message = "Sorry! No Activity found to perform this action, Please install application.";
/**
* @param url : web URL
* @return : Intent
*/
public static Intent getOpenURLIntent(String url) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
return intent;
}
/**
* @param context : Activity/Fragment Context
* @param url : web URL
* @param chooserTitle : Chooser Title
* @throws ActivityNotFoundException : Exception
*/
public static void openURL(Context context, String url, String chooserTitle) {
Intent intent = getOpenURLIntent(url);
Intent chooser = Intent.createChooser(intent, chooserTitle);
try {
context.startActivity(chooser);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param number : Phone Number
* @return : Intent
*/
public static Intent getCallPhoneIntent(String number) {
Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setData(Uri.parse(String.format("tel:%s", number)));
return callIntent;
}
/**
* @param context : Activity/Fragment Context
* @param number : Phone Number
* @param chooserTitle : Chooser Title
* @throws ActivityNotFoundException : Exception
*/
public static void callPhone(Context context, String number, String chooserTitle) {
Intent intent = getCallPhoneIntent(number);
Intent chooser = Intent.createChooser(intent, chooserTitle);
try {
context.startActivity(chooser);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param number : Phone Number
* @param body : Message Text
* @return : Intent
*/
public static Intent getSendSMSIntent(String number, String body) {
Intent callIntent = new Intent(Intent.ACTION_SENDTO);
callIntent.setData(Uri.parse(String.format("sms:%s", number)));
callIntent.putExtra("sms_body", body);
return callIntent;
}
/**
* @param context : Activity/Fragment Context
* @param number : Phone Number
* @param body : Message Text
* @param chooserTitle : Chooser Title
* @throws ActivityNotFoundException : Exception
*/
public static void sendSMS(Context context, String number, String body, String chooserTitle) {
Intent intent = getSendSMSIntent(number, body);
Intent chooser = Intent.createChooser(intent, chooserTitle);
try {
context.startActivity(chooser);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
public static class PackageName {
public static String WhatsApp = "com.whatsapp";
public static String LinkedIn = "com.linkedin.android";
public static String Twitter = "com.twitter.android";
public static String Facebook = "com.facebook.katana";
public static String GooglePlus = "com.google.android.apps.plus";
}
/**
* @param context : Activity/Fragment Context
* @param packageName : Application Package Name
* @param message : Message that you want to send
*/
public static void shareMessage(Context context, String packageName, String message) {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.setPackage(packageName);
intent.putExtra(Intent.EXTRA_TEXT, message);
try {
context.startActivity(intent);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param to : Email address for TO for multiple email address you can add comma separated string ie. "abc@xyz.com, xyz@abc.com"
* @param cc : Email address for CC
* @param subject : Email subject
* @param content : Email Body
* @param filePath : Email attachment ArrayList of string
* @return : Intent
*/
public static Intent getSendEmailIntent(String to, String cc, String subject, CharSequence content, ArrayList<String> filePath) {
Intent mailIntent = new Intent(Intent.ACTION_SENDTO);
mailIntent.setData(Uri.parse(String.format("mailto:%s", to.trim())));
mailIntent.putExtra(Intent.EXTRA_EMAIL, new String[]{to});
// convert from paths to Android friendly Parcelable Uri's
if (filePath != null && filePath.size() > 0) {
ArrayList<Uri> uris = new ArrayList<Uri>();
for (String file : filePath) {
File fileIn = new File(file);
Uri u = Uri.fromFile(fileIn);
uris.add(u);
}
mailIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
}
if (cc.trim().length() > 0)
mailIntent.putExtra(Intent.EXTRA_CC, new String[]{cc});
if (subject.trim().length() > 0)
mailIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
if (content.toString().trim().length() > 0)
mailIntent.putExtra(Intent.EXTRA_TEXT, content);
return mailIntent;
}
/**
* @param context : Activity/Fragment Context
* @param to : Email address for TO for multiple email address you can add comma separated string ie. "abc@xyz.com, xyz@abc.com"
* @throws ActivityNotFoundException : Exception
*/
public static void sendEmailFromGmail(Context context, String to) throws ActivityNotFoundException {
Intent mailIntent = getSendEmailIntent(to, "", "", "", null);
try{
context.startActivity(mailIntent);
}catch (ActivityNotFoundException e){
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param context : Activity/Fragment Context
* @param to : Email address for TO for multiple email address you can add comma separated string ie. "abc@xyz.com, xyz@abc.com"
* @param cc : Email address for CC
* @throws ActivityNotFoundException : Exception
*/
public static void sendEmailFromGmail(Context context, String to, String cc) throws ActivityNotFoundException {
Intent mailIntent = getSendEmailIntent(to, cc, "", "", null);
try{
context.startActivity(mailIntent);
}catch (ActivityNotFoundException e){
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param context : Activity/Fragment Context
* @param to : Email address for TO for multiple email address you can add comma separated string ie. "abc@xyz.com, xyz@abc.com"
* @param subject : Subject of email
* @throws ActivityNotFoundException : Exception
*/
public static void sendEmailFromGmail(Context context, String to, String subject, CharSequence content) throws ActivityNotFoundException {
Intent mailIntent = getSendEmailIntent(to, "", subject, content, null);
try{
context.startActivity(mailIntent);
}catch (ActivityNotFoundException e){
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param context : Activity/Fragment Context
* @param to : Email address for TO for multiple email address you can add comma separated string ie. "abc@xyz.com, xyz@abc.com"
* @param cc : Email address for CC
* @param subject : Subject of email
* @param content : Email Body
* @throws ActivityNotFoundException : Exception
*/
public static void sendEmailFromGmail(Context context, String to, String cc, String subject, CharSequence content) throws ActivityNotFoundException {
Intent mailIntent = getSendEmailIntent(to, cc, subject, content, null);
try{
context.startActivity(mailIntent);
}catch (ActivityNotFoundException e){
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param context : Activity/Fragment Context
* @param to : Email address for TO for multiple email address you can add comma separated string ie. "abc@xyz.com, xyz@abc.com"
* @param cc : Email address for CC
* @param subject : Subject of email
* @param content : Email Body
* @param filePath : Email attachment ArrayList of string
* @throws ActivityNotFoundException : Exception
*/
public static void sendEmailFromGmail(Context context, String to, String cc, String subject, CharSequence content, ArrayList<String> filePath) throws ActivityNotFoundException {
Intent mailIntent = getSendEmailIntent(to, cc, subject, content, filePath);
try{
context.startActivity(mailIntent);
}catch (ActivityNotFoundException e){
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param latitude : Map latitude
* @param longitude : Map longitude
* @param markerTitle : Market title
* @return : Intent
*/
public static Intent getMapCoordinatesIntent(double latitude, double longitude, String markerTitle) {
String uri = "geo:" + latitude + "," + longitude + "?q=" + latitude + "," + longitude;
if (markerTitle != null && markerTitle.length() > 0) {
uri += "(" + markerTitle + ")";
}
return new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
}
/**
* @param context : Activity/Fragment Context
* @param latitude : Map latitude
* @param longitude : Map longitude
* @param markerTitle : Market title
* @throws ActivityNotFoundException
*/
public static void showMapCoordinates(Context context, double latitude, double longitude, String markerTitle) throws ActivityNotFoundException {
Intent mapIntent = getMapCoordinatesIntent(latitude, longitude, markerTitle);
try{
context.startActivity(mapIntent);
}catch (ActivityNotFoundException e){
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param latitudeFrom : Map from latitude
* @param longitudeFrom : Map from longitude
* @param latitudeTo : Map to latitude
* @param longitudeTo : Map to longitude
* @param routeTitle : Map route title
* @return : Intent
*/
public static Intent getMapRouteIntent(double latitudeFrom, double longitudeFrom, double latitudeTo, double longitudeTo, String routeTitle) {
Uri uri = Uri.parse("http://maps.google.com/maps?saddr=" + latitudeFrom + "," + longitudeFrom + "&daddr=" + latitudeTo + "," + longitudeTo + "");
return new Intent(Intent.ACTION_VIEW, uri);
}
/**
* @param context : Activity/Fragment Context
* @param latitudeFrom : Map from latitude
* @param longitudeFrom : Map from longitude
* @param latitudeTo : Map to latitude
* @param longitudeTo : Map to longitude
* @param routeTitle : Map route title
* @throws ActivityNotFoundException : Exception
*/
public static void showMapRoute(Context context, double latitudeFrom, double longitudeFrom, double latitudeTo, double longitudeTo, String routeTitle) throws ActivityNotFoundException {
Intent mapIntent = getMapRouteIntent(latitudeFrom, longitudeFrom, latitudeTo, longitudeTo, routeTitle);
try{
context.startActivity(mapIntent);
}catch (ActivityNotFoundException e){
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
/**
* @param context : Activity/Fragment Context
*/
public static void rateThisApp(Context context) {
Uri uri = Uri.parse("market://details?id=" + context.getPackageName());
Intent launchMarket = new Intent(Intent.ACTION_VIEW, uri);
try {
context.startActivity(launchMarket);
} catch (ActivityNotFoundException e) {
context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + context.getPackageName())));
}
}
/**
* @param context : Activity/Fragment Context
* @param packageName : Name of the package
*/
public static void launchMarket(Context context, String packageName) {
Uri uri = Uri.parse("market://details?id=" + packageName);
Intent mIntent = new Intent(Intent.ACTION_VIEW, uri);
try {
context.startActivity(mIntent);
} catch (Exception e) {
e.printStackTrace();
Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
}
}
}