91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android ContentResolver如何獲取手機電話號碼和短信內容

發布時間:2021-05-25 09:31:04 來源:億速云 閱讀:147 作者:小新 欄目:移動開發

小編給大家分享一下android ContentResolver如何獲取手機電話號碼和短信內容,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

通過ContentResolver 獲取到手機的聯系人跟手機短信信息并顯示出來,具體內容如下

1、實現的代碼:

package com.example.phone; 
 
 
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.net.Uri; 
import android.os.Bundle; 
import android.provider.ContactsContract; 
import android.provider.ContactsContract.PhoneLookup; 
import android.app.Activity; 
import android.content.ContentResolver; 
import android.database.Cursor; 
import android.database.sqlite.SQLiteException; 
import android.util.Log; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.TextView; 
 
 
public class MainActivity extends Activity implements OnClickListener{ 
 
  private TextView text; 
  private Button button; 
  private Button sms; 
  HashMap<String, Object> map = new HashMap<String, Object>(); 
  List<String> con = new ArrayList<String>(); 
  String msg;//聯系人姓名+號碼 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main);  
    initUI();     
  } 
 
  private void initUI() { 
    // TODO Auto-generated method stub  
    text = (TextView)findViewById(R.id.text); 
    button = (Button)findViewById(R.id.button);//獲取手機電話號碼 
    button.setOnClickListener(this); 
    sms = (Button)findViewById(R.id.sms);//獲取手機短信信息 
    sms.setOnClickListener(this); 
  } 
  @Override 
  public void onClick(View v) { 
    // TODO Auto-generated method stub 
    switch(v.getId()){ 
      case R.id.button: 
        getPhoneNumber();//獲取手機電話號碼 
        break; 
      case R.id.sms://獲取手機短信內容 
        getSmsMessage(); 
        Map<String,Object> item = new HashMap<String,Object>(); 
        for(int i= 0;i<con.size();i++){ 
          text.setText(item.put("con", con.get(i))+"");//僅顯示一條 
          System.out.println("ningshengcai:"+item.put("con", con.get(i)));//打印顯示全部數據      
        } 
        break; 
      default : 
        break; 
    } 
  } 
  /** 
   * 獲取手機聯系人號碼 
   */ 
  public void getPhoneNumber(){ 
    // smslist=getListView();  
    //得到ContentResolver對象   
    ContentResolver cr = getContentResolver();    
    //取得電話本中開始一項的光標   
    Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);   
    while (cursor.moveToNext())   
    {   
      // 取得聯系人名字   
      int nameFieldColumnIndex = cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);   
      String name = cursor.getString(nameFieldColumnIndex);   
      //name += (name);   
      // 取得聯系人ID   
      String contactId = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));   
      Cursor phone = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, 
          ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = "+ contactId, null, null);     
      // 取得電話號碼(可能存在多個號碼)   
      while (phone.moveToNext())   
      {   
        String strPhoneNumber = phone.getString(phone.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)); 
        System.out.println(name+":"+strPhoneNumber);                     
        msg += name+":"+strPhoneNumber+"\n"; 
        text.setText(msg); 
      }       
      phone.close();   
    }   
    cursor.close();  
  } 
  /** 
   * 獲取短信信息 
   * @return smsBuilder.toString() 
   */ 
  @SuppressWarnings("unused") 
  public String getSmsMessage(){   
     
    final String SMS_URI_ALL  = "content://sms/";    
    final String SMS_URI_INBOX = "content://sms/inbox";   
    final String SMS_URI_SEND = "content://sms/sent";   
    final String SMS_URI_DRAFT = "content://sms/draft";   
       
    StringBuilder smsBuilder = new StringBuilder();   
       
    try{   
      ContentResolver cr = getContentResolver();   
      String[] projection = new String[]{"_id", "address", "person",    
          "body", "date", "type"};   
      Uri uri = Uri.parse(SMS_URI_ALL);   
      Cursor cur = cr.query(uri, projection, null, null, "date desc");   
     
      if (cur.moveToFirst()) {   
        String name;    
        String phoneNumber;       
        String smsbody;   
        String date;   
        String type;   
          
        int nameColumn = cur.getColumnIndex("person"); //發送人  
        int phoneNumberColumn = cur.getColumnIndex("address");  //號碼 
        int smsbodyColumn = cur.getColumnIndex("body");  //內容 
        int dateColumn = cur.getColumnIndex("date");  //時間 
        int typeColumn = cur.getColumnIndex("type");  //接收還是發送 
          
        do{   
          name = cur.getString(nameColumn);          
          phoneNumber = cur.getString(phoneNumberColumn);   
          smsbody = cur.getString(smsbodyColumn);   
             
          SimpleDateFormat dateFormat = new SimpleDateFormat(   
              "yyyy-MM-dd hh:mm:ss");   
          Date d = new Date(Long.parseLong(cur.getString(dateColumn)));   
          date = dateFormat.format(d);   
             
          int typeId = cur.getInt(typeColumn);   
          if(typeId == 1){   
            type = "接收";   
          } else if(typeId == 2){   
            type = "發送";   
          } else {   
            type = "";   
          }   
          //System.out.println("nsc :"+name+":"+phoneNumber+":"+smsbody+":"+date+":"+type +"\n"); 
          String smsmsg = name+":"+phoneNumber+":"+smsbody+":"+date+":"+type+"\n"; 
          con.add(smsmsg);          
          if(smsbody == null) smsbody = "";    
        }while(cur.moveToNext());   
      } else {   
        smsBuilder.append("no result!");   
      }   
          
      smsBuilder.append("getSmsInPhone has executed!");   
    } catch(SQLiteException ex) {   
      Log.d("SQLiteException in getSmsInPhone", ex.getMessage());   
    }   
    return smsBuilder.toString();   
  }   
}

2、代碼布局:

<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" > 
   
  <Button  
    android:id="@+id/button" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/ph"/> 
  <Button  
    android:id="@+id/sms" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/sms"/> 
  <ScrollView 
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content"> 
    <TextView 
      android:id="@+id/text" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content"       
      android:text="@string/hello_world" /> 
         
  </ScrollView> 
 
</LinearLayout>

3、需要用到的權限

<uses-permission android:name="android.permission.READ_CONTACTS" />  
  <uses-permission android:name="android.permission.WRITE_SMS" />  
  <uses-permission android:name="android.permission.READ_SMS" />  
  <uses-permission android:name="android.permission.READ_PHONE_STATE" />

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。

看完了這篇文章,相信你對“android ContentResolver如何獲取手機電話號碼和短信內容”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

报价| 桦南县| 易门县| 乌鲁木齐县| 日照市| 大余县| 杭锦后旗| 方正县| 唐河县| 江永县| 江门市| 葫芦岛市| 太仓市| 腾冲县| 北京市| 玛沁县| 乌拉特中旗| 天气| 龙井市| 务川| 闻喜县| 晋城| 和顺县| 海林市| 蒙城县| 浦东新区| 肥城市| 丰城市| 肥东县| 万全县| 秦皇岛市| 敦化市| 高邑县| 阜新| 施甸县| 砀山县| 吕梁市| 长寿区| 亳州市| 阿拉尔市| 商丘市|