Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.accounts.Account;
import android.accounts.AccountManager;

import android.content.Context;

public class Main {
    public static final String ACCOUNT_TYPE = "nmct.howest.be.rideshare.account";

    public static boolean isAccountExists(Context context) {
        AccountManager manager = AccountManager.get(context);
        Account[] accounts = manager.getAccountsByType(ACCOUNT_TYPE);
        return accounts.length > 0;
    }
}