Android中简单的电话管理与短信管理App编写实例

android电话管理器(TelephonyManger)实例:
TelephonyManger是管理电话状态、网络信息的服务类。
添加权限:

<uses-permission android:name="android.permission.READ_PHONE_STATE"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

逻辑功能:

package com.example.telephonystatus; import java.io.FileNotFoundException; import java.io.OutputStream; import java.io.PrintStream; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import android.os.Bundle; import android.app.Activity; import android.content.Context; import android.telephony.PhoneStateListener; import android.telephony.TelephonyManager; import android.view.Menu; import android.widget.ListView; import android.widget.SimpleAdapter; public class MainActivity extends Activity { private ListView list1; // 声明代表状态名的数组 private String[] statusName; // 声明代表手机状态名的集合 private ArrayList<String> statusValues = new ArrayList<String>(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); list1 = (ListView) findViewById(R.id.list1); // 获取系统的TelephonyManager TelephonyManager tele = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); // 获取各种状态名的数组 statusName = getResources().getStringArray(R.array.statusNames); // 获取SIM卡的状态的数组 String[] simType = getResources().getStringArray(R.array.simState); // 获取电话网络类型的数组 String[] phoneType = getResources().getStringArray(R.array.phoneType); // 获取设备编号 statusValues.add(tele.getDeviceId()); // 获取系统平台的版本 statusValues.add(tele.getDeviceSoftwareVersion() != null ? tele .getDeviceSoftwareVersion() : "未知"); // 获取网络运营代号 statusValues.add(tele.getNetworkOperator()); // 获取网络运营商的名称 statusValues.add(tele.getNetworkOperatorName()); // 获取手机网络的类型 statusValues.add(phoneType[tele.getPhoneType()]); // 获取设为所在的位置 statusValues.add(tele.getCellLocation() != null ? tele .getCellLocation().toString() : "未知"); // 获取sim卡的国别 statusValues.add(tele.getSimCountryIso()); // 获取sim卡的序列号 statusValues.add(tele.getSimSerialNumber()); // 获取sim卡的状态 statusValues.add(simType[tele.getSimState()]); List<Map<String, Object>> list = new ArrayList<Map<String, Object>>(); for (int i = 0; i < statusValues.size(); i++) { HashMap<String, Object> hasp = new HashMap<String, Object>(); hasp.put("name", statusName[i]); hasp.put("values", statusValues.get(i)); list.add(hasp); } SimpleAdapter simple = new SimpleAdapter(this, list, R.layout.items, new String[] { "name", "values" }, new int[] { R.id.text1, R.id.text2 }); list1.setAdapter(simple); // 创建一个电话监听器 PhoneStateListener listener = new PhoneStateListener() { // 监听电话呼叫状态 @Override public void onCallStateChanged(int state, String incomingNumber) { switch (state) { // 无任何状态 case TelephonyManager.CALL_STATE_IDLE: break; case TelephonyManager.CALL_STATE_OFFHOOK: break; // 来电响铃 case TelephonyManager.CALL_STATE_RINGING: OutputStream os = null; try { os = openFileOutput("phoneList", MODE_APPEND); } catch (FileNotFoundException e) { e.printStackTrace(); } PrintStream ps = new PrintStream(os); // 讲电话号码记录到文件中 ps.println(new Date() + "来电:" + incomingNumber); ps.close(); break; default: break; } super.onCallStateChanged(state, incomingNumber); } }; tele.listen(listener, PhoneStateListener.LISTEN_CALL_STATE); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }

android短信管理器(SmsManager)实例
需要注册的权限:

<uses-permission android:name="android.permission.READ_CONTACTS"/> <uses-permission android:name="android.permission.SEND_SMS"/>

群发短信功能:

package com.android.xiong.groupsend; import java.util.ArrayList; import java.util.List; import android.app.Activity; import android.app.AlertDialog; import android.app.PendingIntent; import android.content.DialogInterface; import android.content.Intent; import android.database.Cursor; import android.os.Bundle; import android.provider.ContactsContract; import android.telephony.SmsManager; import android.view.Menu; import android.view.View; import android.view.ViewGroup; import android.view.View.OnClickListener; import android.widget.BaseAdapter; import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.ListView; import android.widget.Toast; public class MainActivity extends Activity { private Button bt1, bt2; private EditText ed1, ed2; private SmsManager sManger; List<String> sendList = new ArrayList<String>(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); bt1 = (Button) findViewById(R.id.bt1); bt2 = (Button) findViewById(R.id.bt2); ed1 = (EditText) findViewById(R.id.ed1); ed2 = (EditText) findViewById(R.id.ed2); // 获取SmsManger sManger = SmsManager.getDefault(); bt1.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { for (String send : sendList) { // 创建PendIntent对象 PendingIntent ped = PendingIntent.getActivity( MainActivity.this, 0, new Intent(), 0); // 发送信息 sManger.sendTextMessage(send, null, ed2.getText() .toString(), ped, null); } // 提示消息发送完毕 Toast.makeText(MainActivity.this, "短信群发完", Toast.LENGTH_LONG) .show(); } }); bt2.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // 查看联系人的电话号码 final Cursor cursor = getContentResolver().query( ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null, null); BaseAdapter adapter = new BaseAdapter() { @Override public View getView(int position, View convertView, ViewGroup parent) { cursor.moveToPosition(position); CheckBox rb = new CheckBox(MainActivity.this); // 获取联系人的电话号码 并去掉中间的中画、空格 String number = cursor .getString( cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)) .replace("-", ""); rb.setText(number); // 如果该号码已经加入发送人名单,默认勾选该号码 if (sendList.contains(number)) { rb.setChecked(true); } return rb; } @Override public long getItemId(int position) { // TODO Auto-generated method stub return position; } @Override public Object getItem(int position) { // TODO Auto-generated method stub return position; } @Override public int getCount() { // TODO Auto-generated method stub return cursor.getCount(); } }; // 加载list.xml布局文件对应的View View selectView = getLayoutInflater().inflate(R.layout.item, null); final ListView listView = (ListView) selectView .findViewById(R.id.list1); listView.setAdapter(adapter); new AlertDialog.Builder(MainActivity.this).setView(selectView).setPositiveButton("确定", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { //清空sendList集合 sendList.clear(); //遍历listView组件的每个列表项 for(int i=0;i<listView.getCount();i++){ CheckBox checkBox=(CheckBox)listView.getChildAt(i); //如果该列表项被勾选 if(checkBox.isChecked()){ //添加到该列表项中 sendList.add(checkBox.getText().toString()); ed1.append(checkBox.getText().toString()+","); } } } }).show(); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } } <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity" > <EditText android:id="@+id/ed1" android:layout_width="match_parent" android:layout_height="wrap_content"/> <EditText android:id="@+id/ed2" android:layout_width="match_parent" android:layout_height="wrap_content" /> <Button android:id="@+id/bt2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="获取联系人"/> <Button android:id="@+id/bt1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="发送信息"/> </LinearLayout> <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <ListView android:id="@+id/list1" android:layout_width="match_parent" android:layout_height="wrap_content" > </ListView> </LinearLayout>

时间: 2024-07-29 19:42:52

Android中简单的电话管理与短信管理App编写实例的相关文章

Android中简单的电话管理与短信管理App编写实例_Android

android电话管理器(TelephonyManger)实例:TelephonyManger是管理电话状态.网络信息的服务类. 添加权限: <uses-permission android:name="android.permission.READ_PHONE_STATE"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 逻辑功能:

怎么在android程序中使用service中的call isms程序发短信

问题描述 怎么在android程序中使用service中的call isms程序发短信 怎么在android程序中使用service中的call isms程序发短信,最好能有个简单的demo.主要是上层怎么调用这个service以及怎么实现发短信 解决方案 service call isms 是 adb命令,可以在adb shell命令行下执行.http://www.cnblogs.com/eustoma/archive/2012/04/27/2473351.html

Android中简单调用图片、视频、音频、录音和拍照的方法_Android

本文实例讲述了Android中简单调用图片.视频.音频.录音和拍照的方法.分享给大家供大家参考,具体如下: //选择图片 requestCode 返回的标识 Intent innerIntent = new Intent(Intent.ACTION_GET_CONTENT); //"android.intent.action.GET_CONTENT" innerIntent.setType(contentType); //查看类型 String IMAGE_UNSPECIFIED =

短信管理看我的

垃圾短信.无聊短信怎么办?其实你可以通过短信辅助小软件来"管理"这些不听话的短信.手机接收到短信,想快速查看,一定要先找到菜单再进入点击打开短信?其实没必要,只要你使用一款小软件,晃晃手机就能阅读短信了.下面就一起来看看这些有趣的小软件.这些软件通过电脑搜索,不仅可以搜索到,还可以免费下载,当然有问题还能跟同道中人交流一番. 记者 李光焱 短信管家:过滤垃圾短信 通过短信管家,你可有效过滤所有发送到你手机上的短信,它会自动阻止垃圾短信和你不希望收到的短信.短信管家提供四种不同模式以及六

Android中使用七牛云存储进行图片上传下载的实例代码

Android开发中的图片存储本来就是比较耗时耗地的事情,而使用第三方的七牛云,便可以很好的解决这些后顾之忧,最近我也是在学习七牛的SDK,将使用过程在这记录下来,方便以后使用. 先说一下七牛云的存储原理,上面这幅图片是官方给出的原理图,表述当然比较清晰了. 可以看出,要进行图片上传的话可以分为五大步: 1. 客户端用户登录到APP的账号系统里面: 2. 客户端上传文件之前,需要向业务服务器申请七牛的上传凭证,这个凭证由业务服务器使用七牛提供的服务端SDK生成: 3. 客户端使用七牛提供的客户端

Android使用第三方服务器Bmob实现发送短信验证码_Android

调用Bmob第三方服务器实现短信验证的功能,大致思路如下: 随机产生6位数字,然后调用Bmob的请求短发函数发送者六位数到服务器,然后服务器给指定手机发送这6位验证码,然后感觉用户输入的数字进行判断,如果输入的和发送的相等,则验证成功. 第一步.请求验证码: SimpleDateFormat format =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String sendTime = format.format(new Date());

Android 中按home键和跳转到主界面的实例代码

//home Intent intent= new Intent(Intent.ACTION_MAIN); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //如果是服务里调用,必须加入new task标识 intent.addCategory(Intent.CATEGORY_HOME); startActivity(intent); //主界面 Intent intent = new Intent(Intent.ACTION_MAIN,null)

IOS中调用系统拨打电话与发送短信

IOS中调用系统拨打电话发送短信 一.调用打电话界面 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",_phoneNumber]]]; 二.发送短消息界面 调用系统的发送短信的界面,需要引入以下头文件: #import <MessageUI/MessageUI.h> 系统短信界面的调用很简单,只需下面几句代码: ? 1

Android ContentObserver监视未接电话,未读短信

ContentObserver有点类似于BroadcastReceiver,当某类事件发生时进行调用.ContentObserver一般和系统或第三方程序提供的Provider一起使用. 当为某个URI注册了ContentObserver后,对其进行操作后都会调用注册的回调函数,以监视未接电话为例(未读短信和未接电话类似,只需将URI改为短信的URI就可以了): // 注册ContentObserver getContentResolver().registerContentObserver(C