Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
478 lines (436 loc) · 13.5 KB

File metadata and controls

478 lines (436 loc) · 13.5 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
package com.richerpay.ryshop.util;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import com.richerpay.ryshop.log.KLog;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.ActivityNotFoundException;
import android.content.BroadcastReceiver;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.pm.PackageManager.NameNotFoundException;
import android.content.pm.ResolveInfo;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.net.Uri;
import android.provider.ContactsContract;
import android.provider.MediaStore;
import android.provider.Settings;
import android.telephony.PhoneNumberUtils;
import android.telephony.SmsManager;
import android.util.Log;
import android.widget.Toast;
/**
* 手机相关操作API
*
* @version 1.0
*
*/
public class ToolPhone {
/**
* 直接呼叫指定的号码(需要<uses-permission
* android:name="android.permission.CALL_PHONE"/>权限)
*
* @param mContext
* 上下文Context
* @param phoneNumber
* 需要呼叫的手机号码
*/
public static void callPhone(Context mContext, String phoneNumber) {
Uri uri = Uri.parse("tel:" + phoneNumber);
Intent call = new Intent(Intent.ACTION_CALL, uri);
mContext.startActivity(call);
}
/**
* 跳转至拨号界面
*
* @param mContext
* 上下文Context
* @param phoneNumber
* 需要呼叫的手机号码
*/
public static void toCallPhoneActivity(Context mContext, String phoneNumber) {
Uri uri = Uri.parse("tel:" + phoneNumber);
Intent call = new Intent(Intent.ACTION_DIAL, uri);
mContext.startActivity(call);
}
/**
* 直接调用短信API发送信息(设置监听发送和接收状态)
*
* @param strPhone
* 手机号码
* @param strMsgContext
* 短信内容
*/
public static void sendMessage(final Context mContext,
final String strPhone, final String strMsgContext) {
// 处理返回的发送状态
String SENT_SMS_ACTION = "SENT_SMS_ACTION";
Intent sentIntent = new Intent(SENT_SMS_ACTION);
PendingIntent sendIntent = PendingIntent.getBroadcast(mContext, 0,
sentIntent, 0);
// register the Broadcast Receivers
mContext.registerReceiver(new BroadcastReceiver() {
@Override
public void onReceive(Context _context, Intent _intent) {
switch (getResultCode()) {
case Activity.RESULT_OK:
Toast.makeText(mContext, "短信发送成功", Toast.LENGTH_SHORT)
.show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
break;
}
}
}, new IntentFilter(SENT_SMS_ACTION));
// 处理返回的接收状态
String DELIVERED_SMS_ACTION = "DELIVERED_SMS_ACTION";
// create the deilverIntent parameter
Intent deliverIntent = new Intent(DELIVERED_SMS_ACTION);
PendingIntent backIntent = PendingIntent.getBroadcast(mContext, 0,
deliverIntent, 0);
mContext.registerReceiver(new BroadcastReceiver() {
@Override
public void onReceive(Context _context, Intent _intent) {
Toast.makeText(mContext, strPhone + "已经成功接收",
Toast.LENGTH_SHORT).show();
}
}, new IntentFilter(DELIVERED_SMS_ACTION));
// 拆分短信内容(手机短信长度限制)
SmsManager smsManager = SmsManager.getDefault();
ArrayList<String> msgList = smsManager.divideMessage(strMsgContext);
for (String text : msgList) {
smsManager.sendTextMessage(strPhone, null, text, sendIntent,
backIntent);
}
}
/**
* 跳转至发送短信界面(自动设置接收方的号码)
*
* @param mActivity
* Activity
* @param strPhone
* 手机号码
* @param strMsgContext
* 短信内容
*/
public static void toSendMessageActivity(Context mContext, String strPhone,
String strMsgContext) {
if (PhoneNumberUtils.isGlobalPhoneNumber(strPhone)) {
Uri uri = Uri.parse("smsto:" + strPhone);
Intent sendIntent = new Intent(Intent.ACTION_VIEW, uri);
sendIntent.putExtra("sms_body", strMsgContext);
mContext.startActivity(sendIntent);
}
}
/**
* 跳转至联系人选择界面
*
* @param mContext
* 上下文
* @param requestCode
* 请求返回区分代码
*/
public static void toChooseContactsList(Activity mContext, int requestCode) {
Intent intent = new Intent(Intent.ACTION_PICK,
ContactsContract.Contacts.CONTENT_URI);
mContext.startActivityForResult(intent, requestCode);
}
/**
* 获取选择的联系人的手机号码
*
* @param mContext
* 上下文
* @param resultCode
* 请求返回Result状态区分代码
* @param data
* onActivityResult返回的Intent
* @return
*/
@SuppressWarnings("deprecation")
public static String getChoosedPhoneNumber(Activity mContext,
int resultCode, Intent data) {
// 返回结果
String phoneResult = "";
if (Activity.RESULT_OK == resultCode) {
Uri uri = data.getData();
Cursor mCursor = mContext.managedQuery(uri, null, null, null, null);
mCursor.moveToFirst();
int phoneColumn = mCursor
.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER);
int phoneNum = mCursor.getInt(phoneColumn);
if (phoneNum > 0) {
// 获得联系人的ID号
int idColumn = mCursor
.getColumnIndex(ContactsContract.Contacts._ID);
String contactId = mCursor.getString(idColumn);
// 获得联系人的电话号码的cursor;
Cursor phones = mContext.getContentResolver().query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
null,
ContactsContract.CommonDataKinds.Phone.CONTACT_ID
+ " = " + contactId, null, null);
if (phones.moveToFirst()) {
// 遍历所有的电话号码
for (; !phones.isAfterLast(); phones.moveToNext()) {
int index = phones
.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);
int typeindex = phones
.getColumnIndex(ContactsContract.CommonDataKinds.Phone.TYPE);
int phone_type = phones.getInt(typeindex);
String phoneNumber = phones.getString(index);
if (phone_type == 2) {
phoneResult = phoneNumber;
}
}
if (!phones.isClosed()) {
phones.close();
}
}
}
// 关闭游标
mCursor.close();
}
return phoneResult;
}
/**
* 跳转至拍照程序界面
*
* @param mContext
* 上下文
* @param requestCode
* 请求返回Result区分代码
*/
public static void toCameraActivity(Activity mContext, int requestCode) {
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
mContext.startActivityForResult(intent, requestCode);
}
/**
* 跳转至相册选择界面
*
* @param mContext
* 上下文
* @param requestCode
*/
public static void toImagePickerActivity(Activity mContext, int requestCode) {
Intent intent = new Intent(Intent.ACTION_PICK, null);
intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
"image/*");
mContext.startActivityForResult(intent, requestCode);
}
/**
* 获得选中相册的图片
*
* @param mContext
* 上下文
* @param data
* onActivityResult返回的Intent
* @return
*/
@SuppressWarnings({ "deprecation", "unused" })
public static Bitmap getChoosedImage(Activity mContext, Intent data) {
if (data == null) {
return null;
}
Bitmap bm = null;
// 外界的程序访问ContentProvider所提供数据 可以通过ContentResolver接口
ContentResolver resolver = mContext.getContentResolver();
// 此处的用于判断接收的Activity是不是你想要的那个
try {
Uri originalUri = data.getData(); // 获得图片的uri
bm = MediaStore.Images.Media.getBitmap(resolver, originalUri); // 显得到bitmap图片
// 这里开始的第二部分,获取图片的路径:
String[] proj = { MediaStore.Images.Media.DATA };
// 好像是android多媒体数据库的封装接口,具体的看Android文档
Cursor cursor = mContext.managedQuery(originalUri, proj, null,
null, null);
// 按我个人理解 这个是获得用户选择的图片的索引值
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
// 将光标移至开头 ,这个很重要,不小心很容易引起越界
cursor.moveToFirst();
// 最后根据索引值获取图片路径
String path = cursor.getString(column_index);
// 不用了关闭游标
cursor.close();
} catch (Exception e) {
KLog.e("ToolPhone", e.getMessage());
}
return bm;
}
/**
* 调用本地浏览器打开一个网页
*
* @param mContext
* 上下文
* @param strSiteUrl
* 网页地址
*/
public static void openWebSite(Context mContext, String strSiteUrl) {
Intent webIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(strSiteUrl));
mContext.startActivity(webIntent);
}
/**
* 跳转至系统设置界面
*
* @param mContext
* 上下文
*/
public static void toSettingActivity(Context mContext) {
Intent settingsIntent = new Intent(Settings.ACTION_SETTINGS);
mContext.startActivity(settingsIntent);
}
/**
* 跳转至WIFI设置界面
*
* @param mContext
* 上下文
*/
public static void toWIFISettingActivity(Context mContext) {
Intent wifiSettingsIntent = new Intent(Settings.ACTION_WIFI_SETTINGS);
mContext.startActivity(wifiSettingsIntent);
}
/**
* 启动本地应用打开PDF
*
* @param mContext
* 上下文
* @param filePath
* 文件路径
*/
public static void openPDFFile(Context mContext, String filePath) {
try {
File file = new File(filePath);
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
mContext.startActivity(intent);
}
} catch (Exception e) {
Toast.makeText(mContext, "未检测到可打开PDF相关软件", Toast.LENGTH_SHORT)
.show();
}
}
/**
* 启动本地应用打开PDF
*
* @param mContext
* 上下文
* @param filePath
* 文件路径
*/
public static void openWordFile(Context mContext, String filePath) {
try {
File file = new File(filePath);
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(path, "application/msword");
mContext.startActivity(intent);
}
} catch (Exception e) {
Toast.makeText(mContext, "未检测到可打开Word文档相关软件", Toast.LENGTH_SHORT)
.show();
}
}
/**
* 调用WPS打开office文档 http://bbs.wps.cn/thread-22349340-1-1.html
*
* @param mContext
* 上下文
* @param filePath
* 文件路径
*/
public static void openOfficeByWPS(Context mContext, String filePath) {
try {
// 文件存在性检查
File file = new File(filePath);
if (!file.exists()) {
Toast.makeText(mContext, filePath + "文件路径不存在",
Toast.LENGTH_SHORT).show();
return;
}
// 检查是否安装WPS
String wpsPackageEng = "cn.wps.moffice_eng";// 普通版与英文版一样
// String wpsActivity =
// "cn.wps.moffice.documentmanager.PreStartActivity";
String wpsActivity2 = "cn.wps.moffice.documentmanager.PreStartActivity2";// 默认第三方程序启动
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setClassName(wpsPackageEng, wpsActivity2);
Uri uri = Uri.fromFile(new File(filePath));
intent.setData(uri);
mContext.startActivity(intent);
} catch (ActivityNotFoundException e) {
Toast.makeText(mContext, "本地未安装WPS", Toast.LENGTH_SHORT).show();
} catch (Exception e) {
Toast.makeText(mContext, "打开文档失败", Toast.LENGTH_SHORT).show();
}
}
/**
* 判断是否安装指定包名的APP
*
* @param mContext
* 上下文
* @param packageName
* 包路径
* @return
*/
@SuppressWarnings("unused")
public static boolean isInstalledApp(Context mContext, String packageName) {
if (packageName == null || "".equals(packageName)) {
return false;
}
try {
ApplicationInfo info = mContext.getPackageManager()
.getApplicationInfo(packageName,
PackageManager.GET_UNINSTALLED_PACKAGES);
return true;
} catch (NameNotFoundException e) {
return false;
}
}
/**
* 判断是否存在指定的Activity
*
* @param mContext
* 上下文
* @param packageName
* 包名
* @param className
* activity全路径类名
* @return
*/
public static boolean isExistActivity(Context mContext, String packageName,
String className) {
Boolean result = true;
Intent intent = new Intent();
intent.setClassName(packageName, className);
if (mContext.getPackageManager().resolveActivity(intent, 0) == null) {
result = false;
} else if (intent.resolveActivity(mContext.getPackageManager()) == null) {
result = false;
} else {
List<ResolveInfo> list = mContext.getPackageManager()
.queryIntentActivities(intent, 0);
if (list.size() == 0) {
result = false;
}
}
return result;
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.