Android中簡(jiǎn)單的電話(huà)管理與短信管理App編寫(xiě)實(shí)例
android電話(huà)管理器(TelephonyManger)實(shí)例:
TelephonyManger是管理電話(huà)狀態(tài)、網(wǎng)絡(luò)信息的服務(wù)類(lèi)。
添加權(quán)限:
<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; // 聲明代表狀態(tài)名的數(shù)組 private String[] statusName; // 聲明代表手機(jī)狀態(tài)名的集合 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); // 獲取系統(tǒng)的TelephonyManager TelephonyManager tele = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); // 獲取各種狀態(tài)名的數(shù)組 statusName = getResources().getStringArray(R.array.statusNames); // 獲取SIM卡的狀態(tài)的數(shù)組 String[] simType = getResources().getStringArray(R.array.simState); // 獲取電話(huà)網(wǎng)絡(luò)類(lèi)型的數(shù)組 String[] phoneType = getResources().getStringArray(R.array.phoneType); // 獲取設(shè)備編號(hào) statusValues.add(tele.getDeviceId()); // 獲取系統(tǒng)平臺(tái)的版本 statusValues.add(tele.getDeviceSoftwareVersion() != null ? tele .getDeviceSoftwareVersion() : "未知"); // 獲取網(wǎng)絡(luò)運(yùn)營(yíng)代號(hào) statusValues.add(tele.getNetworkOperator()); // 獲取網(wǎng)絡(luò)運(yùn)營(yíng)商的名稱(chēng) statusValues.add(tele.getNetworkOperatorName()); // 獲取手機(jī)網(wǎng)絡(luò)的類(lèi)型 statusValues.add(phoneType[tele.getPhoneType()]); // 獲取設(shè)為所在的位置 statusValues.add(tele.getCellLocation() != null ? tele .getCellLocation().toString() : "未知"); // 獲取sim卡的國(guó)別 statusValues.add(tele.getSimCountryIso()); // 獲取sim卡的序列號(hào) statusValues.add(tele.getSimSerialNumber()); // 獲取sim卡的狀態(tài) 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); // 創(chuàng)建一個(gè)電話(huà)監(jiān)聽(tīng)器 PhoneStateListener listener = new PhoneStateListener() { // 監(jiān)聽(tīng)電話(huà)呼叫狀態(tài) @Override public void onCallStateChanged(int state, String incomingNumber) { switch (state) { // 無(wú)任何狀態(tài) case TelephonyManager.CALL_STATE_IDLE: break; case TelephonyManager.CALL_STATE_OFFHOOK: break; // 來(lái)電響鈴 case TelephonyManager.CALL_STATE_RINGING: OutputStream os = null; try { os = openFileOutput("phoneList", MODE_APPEND); } catch (FileNotFoundException e) { e.printStackTrace(); } PrintStream ps = new PrintStream(os); // 講電話(huà)號(hào)碼記錄到文件中 ps.println(new Date() + "來(lái)電:" + 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)實(shí)例
需要注冊(cè)的權(quán)限:
<uses-permission android:name="android.permission.READ_CONTACTS"/> <uses-permission android:name="android.permission.SEND_SMS"/>
群發(fā)短信功能:
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) { // 創(chuàng)建PendIntent對(duì)象 PendingIntent ped = PendingIntent.getActivity( MainActivity.this, 0, new Intent(), 0); // 發(fā)送信息 sManger.sendTextMessage(send, null, ed2.getText() .toString(), ped, null); } // 提示消息發(fā)送完畢 Toast.makeText(MainActivity.this, "短信群發(fā)完", Toast.LENGTH_LONG) .show(); } }); bt2.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // 查看聯(lián)系人的電話(huà)號(hào)碼 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); // 獲取聯(lián)系人的電話(huà)號(hào)碼 并去掉中間的中畫(huà)、空格 String number = cursor .getString( cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)) .replace("-", ""); rb.setText(number); // 如果該號(hào)碼已經(jīng)加入發(fā)送人名單,默認(rèn)勾選該號(hào)碼 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布局文件對(duì)應(yīng)的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組件的每個(gè)列表項(xiàng) for(int i=0;i<listView.getCount();i++){ CheckBox checkBox=(CheckBox)listView.getChildAt(i); //如果該列表項(xiàng)被勾選 if(checkBox.isChecked()){ //添加到該列表項(xiàng)中 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="獲取聯(lián)系人"/> <Button android:id="@+id/bt1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="發(fā)送信息"/> </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>
- Android 實(shí)現(xiàn)手機(jī)接通電話(huà)后振動(dòng)提示的功能
- Android 實(shí)現(xiàn)電話(huà)攔截及攔截提示音功能的開(kāi)發(fā)
- Android 實(shí)現(xiàn)電話(huà)來(lái)去自動(dòng)錄音的功能
- Android6.0來(lái)電號(hào)碼與電話(huà)薄聯(lián)系人進(jìn)行匹配
- Android編程實(shí)現(xiàn)從字符串中查找電話(huà)號(hào)碼的方法
- Android廣播接實(shí)現(xiàn)監(jiān)聽(tīng)電話(huà)狀態(tài)(電話(huà)的狀態(tài),攔截)
- Android撥打電話(huà)功能實(shí)例詳解
- Android監(jiān)聽(tīng)手機(jī)電話(huà)狀態(tài)與發(fā)送郵件通知來(lái)電號(hào)碼的方法(基于PhoneStateListene實(shí)現(xiàn))
- Android 實(shí)現(xiàn)手機(jī)撥打電話(huà)的功能
相關(guān)文章
Android?自定義開(kāi)源庫(kù)?EasyView實(shí)現(xiàn)詳解
這篇文章主要為大家介紹了Android自定義開(kāi)源庫(kù)EasyView實(shí)現(xiàn)示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-04-04Android實(shí)現(xiàn)簡(jiǎn)單的popupwindow提示框
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)簡(jiǎn)單的popupwindow提示框,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-10-10Android SDK Manager解決更新時(shí)的問(wèn)題 :Failed to fetch URL...
本文主要介紹解決安裝使用SDK Manager更新時(shí)的問(wèn)題:Failed to fetch URL...,這里提供了詳細(xì)的資料及解決問(wèn)題辦法,有需要的小伙伴可以參考下2016-09-09Android實(shí)現(xiàn)文字動(dòng)態(tài)高亮讀取進(jìn)度效果
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)文字動(dòng)態(tài)高亮讀取進(jìn)度效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-05-05簡(jiǎn)單介紹Android開(kāi)發(fā)中的Activity控件的基本概念
這篇文章主要介紹了Android開(kāi)發(fā)中的Activity控件的基本概念,Activity控件的使用是安卓開(kāi)發(fā)的基礎(chǔ)之一,需要的朋友可以參考下2015-12-12Android實(shí)現(xiàn)向Launcher添加快捷方式的方法
這篇文章主要介紹了Android實(shí)現(xiàn)向Launcher添加快捷方式的方法,涉及Android添加快捷方式的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-09-09Android TextView高級(jí)顯示技巧實(shí)例小結(jié)
這篇文章主要介紹了Android TextView高級(jí)顯示技巧,結(jié)合實(shí)例形式總結(jié)分析了Android TextView控件進(jìn)行文字與圖片顯示的相關(guān)操作技巧,需要的朋友可以參考下2016-10-10Android SwipeRefreshLayout仿抖音app靜態(tài)刷新
這篇文章主要為大家詳細(xì)介紹了Android SwipeRefreshLayout仿抖音app靜態(tài)刷新,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-03-03Android編程實(shí)現(xiàn)全局獲取Context及使用Intent傳遞對(duì)象的方法詳解
這篇文章主要介紹了Android編程實(shí)現(xiàn)全局獲取Context及使用Intent傳遞對(duì)象的方法,結(jié)合實(shí)例形式分析了Android全局Context的獲取及Intent傳遞對(duì)象的具體操作方法,需要的朋友可以參考下2017-08-08