Example to Query data from the Contacts content provider
package com.GetContact;
import android.app.Activity;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.provider.Contacts.People;
import android.widget.TextView;
public class GetContactActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tvContacts = (TextView)findViewById(R.id.contacts);
String[] contacts = new String[] {People.NAME, People.NUMBER};
Uri contentUri = People.CONTENT_URI;
Cursor cursor = managedQuery(contentUri, contacts, null, null, null);
String textContacts = "";
if (cursor.moveToFirst()) {
String myname = null;
String mynumber = null;
do {
textContacts = textContacts
+ cursor.getString(cursor.getColumnIndex(People.NAME)) + " : "
+ cursor.getString(cursor.getColumnIndex(People.NUMBER)) + "\n";
} while (cursor.moveToNext());
tvContacts.setText(textContacts);
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<TextView
android:id="@+id/contacts"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
In order to query data from the Contacts content provider, we have to grant permission of "android.permission.READ_CONTACTS".
Related Post:
- Pick contact using intent of Intent.ACTION_PICK, with People.CONTENT_URI
- Add contact using Contacts content provider
0 Response to "Query data from the Contacts content provider"
Posting Komentar