Androidが携帯電話の通話履歴を取得する方法
Androidは携帯電話の通話履歴をどう取得するかを発表します。
携帯電話の通話履歴の取得プロセス:
1、ContentResoloverを取得する。
ContentResolaver reolver=get ContentResolaver()
2、reolver.query(*)
着信通話記録が必要なURI:CallLog.Clals.ONT_URI
3、照会して得たCursorに対してデータを取得する。
主なコードは以下の通りです。
MainActivity.java
<uses-permission android:name=“android.permission.READ_”CALL_LOG'/>
最終効果図:
注意:
夜神シミュレータは電話機能がないようです。夜神テストを使わないでください。
版主は小米4の実機テストを使用していますが、usbのデバッグ中には直接崩壊します。手動で安全センターでアプリケーションに通話記録を読み込む権限を与えなければなりません。個人のマシンの状況によっては、一部のマシンは手動で設定する必要がないかもしれません。)
ソースのダウンロード:http://xiazai.jb51.net/201610/yuanma/androidContentDemo(jb 51.net)rar
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
携帯電話の通話履歴の取得プロセス:
1、ContentResoloverを取得する。
ContentResolaver reolver=get ContentResolaver()
2、reolver.query(*)
着信通話記録が必要なURI:CallLog.Clals.ONT_URI
3、照会して得たCursorに対してデータを取得する。
主なコードは以下の通りです。
MainActivity.java
package com.noonecode.contentresolvercalllogdemo;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.content.ContentResolver;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.CallLog;
import android.widget.ListView;
import android.widget.SimpleAdapter;
public class MainActivity extends Activity {
private ListView mLvShow;
private List<Map<String, String>> dataList;
private SimpleAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mLvShow = (ListView) findViewById(R.id.lv_show);
dataList = getDataList();
adapter = new SimpleAdapter(this, dataList, R.layout.simple_calllog_item//
, new String[] { "name", "number", "date", "duration", "type" }//
, new int[] { R.id.tv_name, R.id.tv_number, R.id.tv_date, R.id.tv_duration, R.id.tv_type });
mLvShow.setAdapter(adapter);
}
/**
*
*
* @return
*/
private List<Map<String, String>> getDataList() {
// 1. ContentResolver
ContentResolver resolver = getContentResolver();
// 2. ContentResolver query
/**
* @param uri URI,( URI ContentProvider )
* @param projection
* @param selection sql where
* @param selectionArgs ?
* @param sortOrder
*
*/
Cursor cursor = resolver.query(CallLog.Calls.CONTENT_URI, // URI
new String[] { CallLog.Calls.CACHED_NAME//
, CallLog.Calls.NUMBER//
, CallLog.Calls.DATE//
, CallLog.Calls.DURATION//
, CallLog.Calls.TYPE }//
, null, null, CallLog.Calls.DEFAULT_SORT_ORDER// ,
);
// 3. Cursor
List<Map<String, String>> list = new ArrayList<Map<String, String>>();
while (cursor.moveToNext()) {
String name = cursor.getString(cursor.getColumnIndex(CallLog.Calls.CACHED_NAME));
String number = cursor.getString(cursor.getColumnIndex(CallLog.Calls.NUMBER));
long dateLong = cursor.getLong(cursor.getColumnIndex(CallLog.Calls.DATE));
String date = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss").format(new Date(dateLong));
int duration = cursor.getInt(cursor.getColumnIndex(CallLog.Calls.DURATION));
int type = cursor.getInt(cursor.getColumnIndex(CallLog.Calls.TYPE));
String typeString = "";
switch (type) {
case CallLog.Calls.INCOMING_TYPE:
typeString = " ";
break;
case CallLog.Calls.OUTGOING_TYPE:
typeString = " ";
break;
case CallLog.Calls.MISSED_TYPE:
typeString = " ";
break;
default:
break;
}
Map<String, String> map = new HashMap<String, String>();
map.put("name", (name == null) ? " " : name);
map.put("number", number);
map.put("date", date);
map.put("duration", (duration / 60) + " ");
map.put("type", typeString);
list.add(map);
}
return list;
}
}
メインレイアウトactivitymain.xml
<RelativeLayout 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"
tools:context="com.noonecode.contentresolvercalllogdemo.MainActivity" >
<ListView
android:id="@+id/lv_show"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
シンプル_ハローitem.xml
<?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"
android:padding="10dp" >
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="name"
android:textSize="20sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/tv_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:text="number"
/>
<TextView
android:id="@+id/tv_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:text="date"
/>
<TextView
android:id="@+id/tv_duration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:text="duration"
/>
<TextView
android:id="@+id/tv_type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:text="type"
/>
</LinearLayout>
</LinearLayout>
通話履歴の読み取り権限:<uses-permission android:name=“android.permission.READ_”CALL_LOG'/>
最終効果図:
注意:
夜神シミュレータは電話機能がないようです。夜神テストを使わないでください。
版主は小米4の実機テストを使用していますが、usbのデバッグ中には直接崩壊します。手動で安全センターでアプリケーションに通話記録を読み込む権限を与えなければなりません。個人のマシンの状況によっては、一部のマシンは手動で設定する必要がないかもしれません。)
ソースのダウンロード:http://xiazai.jb51.net/201610/yuanma/androidContentDemo(jb 51.net)rar
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。