android通訊錄源碼
『壹』 android開發怎樣獲取通訊錄聯系人信息
代碼演示
java">privateArrayList<HashMap<String,String>>readContact(){
//首先,從raw_contacts中讀取聯系人的id("contact_id")
//其次,根據contact_id從data表中查詢出相應的電話號碼和聯系人名稱
//然後,根據mimetype來區分哪個是聯系人,哪個是電話號碼
UrirawContactsUri=Uri
.parse("content://com.android.contacts/raw_contacts");
UridataUri=Uri.parse("content://com.android.contacts/data");
ArrayList<HashMap<String,String>>list=newArrayList<>();
//從raw_contacts中讀取聯系人的id("contact_id")
CursorrawContactsCursor=getContentResolver().query(rawContactsUri,
newString[]{"contact_id"},null,null,null);
if(rawContactsCursor!=null){
while(rawContactsCursor.moveToNext()){
StringcontactId=rawContactsCursor.getString(0);
//System.out.println(contactId);
//根據contact_id從data表中查詢出相應的電話號碼和聯系人名稱,實際上查詢的是視圖view_data
CursordataCursor=getContentResolver().query(dataUri,
newString[]{"data1","mimetype"},"contact_id=?",
newString[]{contactId},null);
if(dataCursor!=null){
HashMap<String,String>map=newHashMap<String,String>();
while(dataCursor.moveToNext()){
Stringdata1=dataCursor.getString(0);
Stringmimetype=dataCursor.getString(1);
//System.out.println(contactId+";"+data1+";"
//+mimetype);
if("vnd.android.cursor.item/phone_v2".equals(mimetype)){
map.put("phone",data1);
}elseif("vnd.android.cursor.item/name"
.equals(mimetype)){
map.put("name",data1);
}
}
list.add(map);
dataCursor.close();
}
}
rawContactsCursor.close();
}
returnlist;
}手機聯系人圖片:
『貳』 Android編程,根據姓名獲得手機通訊錄中的電話號碼
importcn.teachcourse.R;
/**
*[email protected]/5/5.
*/
{
privatestaticfinalStringTAG=PhoneNameActivity.class.getSimpleName();
privateEditTextet;
publicstaticvoidstart(Contextcontext){
start(context,null);
}
publicstaticvoidstart(Contextcontext,Intentextras){
Intentintent=newIntent();
intent.setClass(context,PhoneNameActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
|Intent.FLAG_ACTIVITY_SINGLE_TOP);
if(extras!=null){
intent.putExtras(extras);
}
context.startActivity(intent);
}
@Override
protectedvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_phone_name);
et=(EditText)this.findViewById(R.id.mobile);
}
publicvoidgetTelClick(Viewview){
Stringname=et.getText().toString().trim();
number(name);
}
/**
*通過輸入獲取電話號碼
*/
publicvoidnumber(Stringname){
//使用ContentResolver查找聯系人數據
Cursorcursor=getContentResolver().query(ContactsContract.Contacts.CONTENT_URI,null,null,null,null);
//遍歷查詢結果,找到所需號碼
while(cursor.moveToNext()){
//獲取聯系人ID
StringcontactId=cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));
//獲取聯系人的名字
StringcontactName=cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
if(name.equals(contactName)){
//使用ContentResolver查找聯系人的電話號碼
Cursorphone=getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID+"="+contactId,null,null);
if(phone.moveToNext()){
StringphoneNumber=phone.getString(phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
Toast.makeText(this,phoneNumber+"TeachCourse——blog。。。",Toast.LENGTH_SHORT).show();
Log.d(TAG,"電話:"+phoneNumber);
break;
}
}
}
}
}
1、修改getTelClick()方法
2、修改Toast麵包屑提示
3、修改獲取聯系人名字方法
4、位置稍微調整
『叄』 android 鎬庝箞閫氳繃js璋冪敤鎵嬫満閫氳褰
鎬濊礬錛
1銆乯s璋冪敤android鐨刯ava浠g爜
2銆侀氳繃java浠g爜璁塊棶閫氳褰
3銆侀氳繃java浠g爜璁塊棶js浠g爜榪斿洖閫氳褰曚俊鎮
浠g爜錛
1銆乯s璋冪敤android鐨刯ava浠g爜
js浠g爜錛
window.ncp.callOnJs2("click");
android浠g爜錛岄氳繃webview鎵撳紑欏甸潰錛
mWebview.getSettings().setJavaScriptEnabled(true);
mWebView.addJavascriptInterface(newJavaScriptInterface(),"ncp");
finalclassJavaScriptInterface{
publicintcallOnJs(){
return1000;
}
publicvoidcallOnJs2(Stringmode){
//TODO
}
}
2銆侀氳繃java浠g爜璁塊棶閫氳褰
/**寰楀埌鎵嬫満閫氳褰曡仈緋諱漢淇℃伅**/
privatevoidgetPhoneContacts(){
ContentResolverresolver=mContext.getContentResolver();
//鑾峰彇鎵嬫満鑱旂郴浜
CursorphoneCursor=resolver.query(Phone.CONTENT_URI,PHONES_PROJECTION,null,null,null);
if(phoneCursor!=null){
while(phoneCursor.moveToNext()){
//寰楀埌鎵嬫満鍙風爜
StringphoneNumber=phoneCursor.getString(PHONES_NUMBER_INDEX);
//褰撴墜鏈哄彿鐮佷負絀虹殑鎴栬呬負絀哄瓧孌璺寵繃褰撳墠寰鐜
if(TextUtils.isEmpty(phoneNumber))
continue;
//寰楀埌鑱旂郴浜哄悕縐
StringcontactName=phoneCursor.getString(PHONES_DISPLAY_NAME_INDEX);
//寰楀埌鑱旂郴浜篒D
Longcontactid=phoneCursor.getLong(PHONES_CONTACT_ID_INDEX);
//寰楀埌鑱旂郴浜哄ご鍍廔D
Longphotoid=phoneCursor.getLong(PHONES_PHOTO_ID_INDEX);
//寰楀埌鑱旂郴浜哄ご鍍廈itamp
BitmapcontactPhoto=null;
//photoid澶т簬0琛ㄧず鑱旂郴浜烘湁澶村儚濡傛灉娌℃湁緇欐や漢璁劇疆澶村儚鍒欑粰浠栦竴涓榛樿ょ殑
if(photoid>0){
Uriuri=ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI,contactid);
InputStreaminput=ContactsContract.Contacts.openContactPhotoInputStream(resolver,uri);
contactPhoto=BitmapFactory.decodeStream(input);
}else{
contactPhoto=BitmapFactory.decodeResource(getResources(),R.drawable.contact_photo);
}
mContactsName.add(contactName);
mContactsNumber.add(phoneNumber);
mContactsPhonto.add(contactPhoto);
}
phoneCursor.close();
}
3銆侀氳繃java浠g爜璁塊棶js浠g爜榪斿洖閫氳褰曚俊鎮
mWebView.loadUrl("javascript:onSaveCallback()");
『肆』 如何調用android通訊錄
這個過程有三步:
1)許可向你的應用程序的manifest中添加讀取通訊錄數據的許可
<uses-permission android:name="android.permission.READ_CONTACTS"/
2)調用Contact Picker
在你的activity中,創建一個Intent,用來請求系統查找一個能夠執行一個從Contacts URI的項目中發出的PICK動作的activity,
Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
調用startActivityForResult在Intent中傳遞(和一個整數的請求代碼,在這個例子中是PICK CONTACT )。這將導致android啟動一個已經被等級的activity,用來支持在People.CONTENT URI上的ACTION_PICK ,然後當按下選擇(或者取消)的時候返回到這個activity。startActivityForResult(intent, PICK_CONTACT);
3)仍然在你的activity中,重寫onActivityResul方法來監聽在你的第二個步驟中啟動的activi'select a contact' activity的回調。你應該檢查反饋的請求代碼是否匹配你的期望值,結果代碼是否是 RESULT_OK。
通過在數據Intent參數中調用getData()你可以獲得選擇的聯系人的URI。為了獲得選擇的聯系人的名字你需要使用URI從返回的游標中創建一個新的查詢和提取的參數。
@Overridepublic void onActivityResult(int reqCode, int resultCode, Intent data) {
super.onActivityResult(reqCode, resultCode, data);
switch (reqCode) {
case (PICK_CONTACT) :
if (resultCode == Activity.RESULT_OK) {
Uri contactData = data.getData();
Cursor c = managedQuery(contactData, null, null, null, null);
if (c.moveToFirst()) {
String name = c.getString(c.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));}}break;}}
『伍』 android開發怎樣獲取通訊錄聯系人信息
在Android開發中,我經常會遇到需要獲取手機通訊錄聯系人信息,Android手機的通訊錄聯系人全部都存在系統的資料庫中,如果須要獲得通訊里聯系人的信息就須要訪問系統的資料庫,才能將信息獲取出來。
下面直接貼出代碼供大家參考:
程序文件java代碼:
import java.io.InputStream;
import java.util.ArrayList;
import android.app.ListActivity;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.provider.ContactsContract.CommonDataKinds.Phone;
import android.provider.ContactsContract.CommonDataKinds.Photo;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.AdapterView.OnItemClickListener;
public class ContactsActivity extends ListActivity {
Context mContext = null;
/**獲取庫Phon表欄位**/
private static final String[] PHONES_PROJECTION = new String[] {
Phone.DISPLAY_NAME, Phone.NUMBER, Photo.PHOTO_ID,Phone.CONTACT_ID };
/**聯系人顯示名稱**/
private static final int PHONES_DISPLAY_NAME_INDEX = 0;
/**電話號碼**/
private static final int PHONES_NUMBER_INDEX = 1;
/**頭像ID**/
private static final int PHONES_PHOTO_ID_INDEX = 2;
/**聯系人的ID**/
private static final int PHONES_CONTACT_ID_INDEX = 3;
/**聯系人名稱**/
private ArrayList<String> mContactsName = new ArrayList<String>();
/**聯系人頭像**/
private ArrayList<String> mContactsNumber = new ArrayList<String>();
/**聯系人頭像**/
private ArrayList<Bitmap> mContactsPhonto = new ArrayList<Bitmap>();
ListView mListView = null;
MyListAdapter myAdapter = null;
@Override
public void onCreate(Bundle savedInstanceState) {
mContext = this;
mListView = this.getListView();
/**得到手機通訊錄聯系人信息**/
getPhoneContacts();
myAdapter = new MyListAdapter(this);
setListAdapter(myAdapter);
mListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view,
int position, long id) {
//調用系統方法撥打電話
Intent dialIntent = new Intent(Intent.ACTION_CALL, Uri
.parse("tel:" + mContactsNumber.get(position)));
startActivity(dialIntent);
}
});
super.onCreate(savedInstanceState);
}
/**得到手機通訊錄聯系人信息**/
private void getPhoneContacts() {
ContentResolver resolver = mContext.getContentResolver();
// 獲取手機聯系人
Cursor phoneCursor = resolver.query(Phone.CONTENT_URI,PHONES_PROJECTION, null, null, null);
if (phoneCursor != null) {
while (phoneCursor.moveToNext()) {
//得到手機號碼
String phoneNumber = phoneCursor.getString(PHONES_NUMBER_INDEX);
//當手機號碼為空的或者為空欄位 跳過當前循環
if (TextUtils.isEmpty(phoneNumber))
continue;
//得到聯系人名稱
String contactName = phoneCursor.getString(PHONES_DISPLAY_NAME_INDEX);
//得到聯系人ID
Long contactid = phoneCursor.getLong(PHONES_CONTACT_ID_INDEX);
//得到聯系人頭像ID
Long photoid = phoneCursor.getLong(PHONES_PHOTO_ID_INDEX);
//得到聯系人頭像Bitamp
Bitmap contactPhoto = null;
//photoid 大於0 表示聯系人有頭像 如果沒有給此人設置頭像則給他一個默認的
if(photoid > 0 ) {
Uri uri =ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI,contactid);
InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(resolver, uri);
contactPhoto = BitmapFactory.decodeStream(input);
}else {
contactPhoto = BitmapFactory.decodeResource(getResources(), R.drawable.contact_photo);
}
mContactsName.add(contactName);
mContactsNumber.add(phoneNumber);
mContactsPhonto.add(contactPhoto);
}
phoneCursor.close();
}
}
/**得到手機SIM卡聯系人人信息**/
private void getSIMContacts() {
ContentResolver resolver = mContext.getContentResolver();
// 獲取Sims卡聯系人
Uri uri = Uri.parse("content://icc/adn");
Cursor phoneCursor = resolver.query(uri, PHONES_PROJECTION, null, null,
null);
if (phoneCursor != null) {
while (phoneCursor.moveToNext()) {
// 得到手機號碼
String phoneNumber = phoneCursor.getString(PHONES_NUMBER_INDEX);
// 當手機號碼為空的或者為空欄位 跳過當前循環
if (TextUtils.isEmpty(phoneNumber))
continue;
// 得到聯系人名稱
String contactName = phoneCursor
.getString(PHONES_DISPLAY_NAME_INDEX);
//Sim卡中沒有聯系人頭像
mContactsName.add(contactName);
mContactsNumber.add(phoneNumber);
}
phoneCursor.close();
}
}
class MyListAdapter extends BaseAdapter {
public MyListAdapter(Context context) {
mContext = context;
}
public int getCount() {
//設置繪制數量
return mContactsName.size();
}
@Override
public boolean areAllItemsEnabled() {
return false;
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
ImageView iamge = null;
TextView title = null;
TextView text = null;
if (convertView == null) {
convertView = LayoutInflater.from(mContext).inflate(
R.layout.colorlist, null);
iamge = (ImageView) convertView.findViewById(R.id.color_image);
title = (TextView) convertView.findViewById(R.id.color_title);
text = (TextView) convertView.findViewById(R.id.color_text);
}
//繪制聯系人名稱
title.setText(mContactsName.get(position));
//繪制聯系人號碼
text.setText(mContactsNumber.get(position));
//繪制聯系人頭像
iamge.setImageBitmap(mContactsPhonto.get(position));
return convertView;
}
}
}
『陸』 android通訊錄源碼中如何去掉進入時的圖片
首先你要看看這張圖片是直接作為背景或者其他圖片在布局中引用,還是在代碼中動態添加,然後看看是什麼操作,如果在布局中引用,可以刪掉,或者替換掉,動態添加的話,把那句話注釋掉看看。
『柒』 求android讀取通訊錄並按字母排序demo
如果只是排序,很簡單。採用java自帶的Collections.sort(***,***)方法。代碼可以這樣寫:
List list =new ArrayList();
//Test是你的聯系人實體。假設聯系人的姓名是name,並且實體里有個方法getName(),返回的是聯系人的名字
//然後對list賦值
Collections.sort(list,new Comparator(){
@Override
public int compare(Test lhs, Test rhs){
return (lhs.getName().compateTo(rhs.getName())); //這個是升序。把此行lhs和rhs互換,就是降序了。
}
}