tags:

views:

42

answers:

1

I have one function which is called on list item Click and list items contain name and phone Numbers,i Use the following query,but what query Should i use retrieve particular phone Number That Matches (Long id)

 protected void  onListItemClick  (ListView l, View v, int position, long id)
{

    try
    {
    String[] PROJECTION=new String[] {Contacts._ID,
            Contacts.DISPLAY_NAME,
            Phone.NUMBER
        };
    Cursor c=managedQuery(Phone.CONTENT_URI,
        PROJECTION, "where _ID == id ", null, null);
    System.out.println(Phone.NUMBER);
    c.close();
    }
    catch(Exception e)
    {
        e.printStackTrace();

    }
    for(int i=0;i<=position;i++)
    {   


        if(position==i)
        {
            Intent i1 = new Intent(v.getContext(),SMS.class);
            startActivity(i1);


        }   



}
A: 

I am using something like this: Uri phoneUri = Uri.parse("content://contacts/people/" + id + "/phones");

Bryan