Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第68章、使用ContentProvider操作通話記錄(從零開始學Android)

第68章、使用ContentProvider操作通話記錄(從零開始學Android)

編輯:Android技術基礎

android也提供了很多接口,通過ContentResolver().query方法,傳入不同的URI即可訪問相應的數據集。

讀取通話記錄信息,傳入的URI為:CallLog.Calls.CONTENT_URI

一、設計界面

1、布局文件

打開res/layout/activity_main.xml文件。
輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout   
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <TextView  
  9.         android:id="@+id/textView1"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:text="通話記錄列表" />  
  13.   
  14.     <ListView  
  15.         android:id="@+id/calllist"  
  16.         android:layout_width="match_parent"  
  17.         android:layout_height="wrap_content" >  
  18.     </ListView>  
  19.   
  20.     <Button  
  21.         android:id="@+id/read"  
  22.         android:layout_width="wrap_content"  
  23.         android:layout_height="wrap_content"  
  24.         android:text="讀取通話記錄" />  
  25.   
  26. </LinearLayout>  


2、自定義ListView文件

打開res/layout/calls.xml文件。
輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout   
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent">  
  6.   
  7.     <TextView  
  8.         android:id="@+id/_id"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content" />  
  11.       
  12.     <TextView  
  13.         android:id="@+id/name"  
  14.         android:layout_width="wrap_content"  
  15.         android:layout_height="wrap_content"  
  16.         android:textSize="16sp" />  
  17.       
  18.     <TextView  
  19.         android:id="@+id/mobile"  
  20.         android:layout_width="wrap_content"  
  21.         android:layout_height="wrap_content" />  
  22.       
  23.      <TextView  
  24.         android:id="@+id/date"  
  25.         android:layout_width="wrap_content"  
  26.         android:layout_height="wrap_content" />  
  27.       
  28. </LinearLayout>  


二、程序文件

打開“src/com.genwoxue.contentprovider_b/MainActivity.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.contentprovider_b;  
  2.   
  3.   
  4. import android.os.Bundle;  
  5. import android.provider.CallLog;  
  6. import android.provider.ContactsContract;  
  7. import android.view.View;  
  8. import android.view.View.OnClickListener;  
  9. import android.widget.Button;  
  10. import android.widget.ListView;  
  11. import android.widget.SimpleCursorAdapter;  
  12. import android.app.Activity;  
  13. import android.database.Cursor;  
  14.   
  15. public class MainActivity extends Activity {  
  16.   
  17.     private ListView lvCalls=null;  
  18.     private Cursor cursor=null;  
  19.     private Button btnRead=null;  
  20.       
  21.       
  22.     @Override  
  23.     protected void onCreate(Bundle savedInstanceState) {  
  24.         super.onCreate(savedInstanceState);  
  25.         setContentView(R.layout.activity_main);  
  26.         lvCalls=(ListView)super.findViewById(R.id.calllist);  
  27.           
  28.           
  29.         btnRead=(Button)super.findViewById(R.id.read);  
  30.           
  31.         btnRead.setOnClickListener(new OnClickListener(){  
  32.             public void onClick(View v)  
  33.             {    
  34.                 cursor=MainActivity.this.getContentResolver()  
  35.                         .query(CallLog.Calls.CONTENT_URI,  
  36.                                 null,  
  37.                                 null,  
  38.                                 null,  
  39.                                 null);  
  40.                 String[] from={CallLog.Calls._ID,CallLog.Calls.CACHED_NAME,CallLog.Calls.NUMBER};  
  41.                 int to[]={R.id._id,R.id.name,R.id.mobile};  
  42.                   
  43.                 SimpleCursorAdapter adapter = new SimpleCursorAdapter(  
  44.                         MainActivity.this,  
  45.                         R.layout.calls,  
  46.                         cursor,  
  47.                         from,  
  48.                         to);  
  49.                 lvCalls.setAdapter(adapter);  
  50.             }  
  51.         });  
  52.     }  
  53.   
  54. }  


三、配置文件

打開“AndroidManifest.xml”文件。

然後輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.genwoxue.contentprovider_b"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="14"  
  9.         android:targetSdkVersion="15" />  
  10.     <strong><span style="color:#ff0000;"><uses-permission android:name="android.permission.READ_CONTACTS"/></span></strong>  
  11.   
  12.     <application  
  13.         android:allowBackup="true"  
  14.         android:icon="@drawable/ic_launcher"  
  15.         android:label="@string/app_name"  
  16.         android:theme="@style/AppTheme" >  
  17.         <activity  
  18.             android:name="com.genwoxue.contentprovider_b.MainActivity"  
  19.             android:label="@string/app_name" >  
  20.             <intent-filter>  
  21.                 <action android:name="android.intent.action.MAIN" />  
  22.                 <category android:name="android.intent.category.LAUNCHER" />  
  23.             </intent-filter>  
  24.         </activity>  
  25.     </application>  
  26.   
  27. </manifest>  


注意:需要在AndroidManifest.xml文件中添加權限:

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

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved