Retrieves all of the Google accounts on the device - Android Account

Android examples for Account:Google Account

Description

Retrieves all of the Google accounts on the device

Demo Code

/*//from   ww w.  j av a 2  s. co  m
 * Copyright 2012 emuneee apps
 * http://emuneee.com/apps
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
//package com.java2s;

import android.accounts.Account;
import android.accounts.AccountManager;

import android.content.Context;

public class Main {
    public final static String GOOGLE_ACCOUNT_TYPE = "com.google";

    /**
     * Retrieves all of the Google accounts on the device
     * @param context
     * @return
     */
    public static Account[] getGoogleAccounts(Context context) {
        return AccountManager.get(context).getAccountsByType(
                GOOGLE_ACCOUNT_TYPE);
    }
}

Related Tutorials