Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.ContentResolver;
import android.content.Context;
import android.database.Cursor;

import android.net.Uri;
import android.os.Bundle;
import android.provider.ContactsContract.Contacts;

public class Main {
    public static Bundle getContactFromNumber(String number, Context context) {
        ContentResolver cr = context.getContentResolver();
        String[] projection = new String[] { Contacts._ID, Contacts.DISPLAY_NAME };
        Bundle bundle = new Bundle();
        Uri contactUri = Uri.withAppendedPath(Contacts.CONTENT_FILTER_URI, Uri.encode(number));
        Cursor cursor = cr.query(contactUri, projection, null, null, null);
        try {
            if (cursor.moveToFirst()) {
                for (String key : projection) {
                    bundle.putString(key, cursor.getString(cursor.getColumnIndex(key)));
                }
            }
            return bundle;
        } catch (Exception e) {
            return null;
        } finally {
            cursor.close();
        }

    }
}