Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
// Released under the Apache License, Version 2.0

import android.database.Cursor;

import android.provider.ContactsContract.Data;

public class Main {
    /**
     * Get the Data.CONTACT_ID index for PhoneNumberPicker.
     */
    public static int getContactIdIndex(Cursor contactCursor) {
        return contactCursor.getColumnIndex(Data.CONTACT_ID);
    }
}