編輯:關於Android編程
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>
Android MimeType的用法和幾種類型
關於MIME TYPE描述 多用途互聯網郵件擴展(MIME,Multipurpose Internet Mail Extensions)是一個互聯網標准,它擴展了電子
Android中.9.png圖片的使用及制作
我們有一個TextView,其裡面的內容是可以通過代碼動態改變的,我們想用一張圖片作為TextView的背景,實現類似於手機QQ對話中的氣泡文本效果。TextView定義
Android學習筆記---Activity狀態保存及Activity主題皮膚學習
Activity狀態保存應用及Activity的主題皮膚學習 1.Activity狀態的保存. Activi
Android自定義View和屬性動畫完美結合,創造出酷炫圓環動畫,帶標尺和進度
主要是在原來的基礎上添加了如下功能1.進度圓環的顏色是漸變。 2.添加一個進度標尺,類似與鐘表表盤的樣子,用來顯示刻度。3.添加一個進度指示器,三角形的樣子,用來顯示進