How To Add Second Google Account To Your Android Smartphone

Many of us have more than one Google Account and it could be a tiring experience trying to log out of one account and login to another one every single time. You have perhaps designated these accounts for our different requirements like one could be for personal use, another one strictly for work, etc. So, you feel the need for the flexibility to access all our accounts without the tiresome logging in and out of the account. In this article, we learn about how to add second google account on Android smartphone.

Add Google Account

How to add a second Google account to your Android phone

  1. Launch Settings from your Home screen, the app drawer, or the Notification Shade.

2. Swipe up in the Settings menu to scroll down.

3. Tap Accounts.Account List

4. Tap Add Account.

5. Tap Google.

6. Type in your email address in the provided field. You can also create a new account to be added.

login7. Tap Next.

8. Type your password.

9. Tap Next.

How to remove a Second Google account from your Android phone

  1. Swipe down from the top of the Home screen.
  2. Tap the Settings button. It looks like a gear.
  3. Swipe up in the Settings menu to scroll down.How to remove Google Account
  4. Tap Accounts.
  5. Tap Google.
  6. Tap the Google account you’d like to remove.
  7. Tap Remove account.
  8. Tap Remove account to confirm the account removal.Remove Google Account

When you remove any Google account, all the data associated with it is deleted from your phone. Your account isn’t deleted from the cloud, so things like contacts or paid apps can be retrieved if you re-add the account or use the account on another device, but all your local data (like messages or app settings) is gone forever. You’ll see a warning about data deletion before you finish the process.

How to add an account on Samsung phones

Because Samsung and other manufacturers tend to change the Android user interface, the exact steps above won’t always apply. Here’s how you add a second Google account on Samsung phones.

  1. Launch Settings from your Home screen, the app drawer, or the Notification Shade.
  2. Swipe up in the Settings menu to scroll down.
  3. Tap Cloud and accounts.
  4. Tap Accounts.
  5. Tap Add Account.Cloud and account
  6. Tap Google.
  7. Type in your email address in the provided field. You can also create a new account to be added.
  8. Tap Next.
  9. Type your password.
  10. Tap Next.

If you are getting the problem to add a secondary account in your smartphone than google assistant helps you.

Samsung

// Constants for DOM elements const dropdownTriggers = document.querySelectorAll('.dz-menu-item.dropdown'); const dropdownContent = document.querySelector('.dz-dropdown-content'); const dropdownPanels = document.querySelectorAll('.dz-dropdown-panel'); const header = document.querySelector('.dz-header-wrap'); // State to track the currently open menu item element let activeDropdownElement = null; let closeTimer = null; // Timer for delayed closing // Function to close all dropdowns function closeAllDropdowns() { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // Only proceed if the elements exist if (dropdownContent) { dropdownContent.classList.remove('open'); } dropdownPanels.forEach(panel => panel.classList.remove('active')); dropdownTriggers.forEach(item => item.classList.remove('active')); activeDropdownElement = null; } // Function to open a specific dropdown function openDropdown(item, targetPanel) { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // 1. Close all others closeAllDropdowns(); // 2. Open the new one item.classList.add('active'); targetPanel.classList.add('active'); if (dropdownContent) { dropdownContent.classList.add('open'); } activeDropdownElement = item; } // Event listener for each dropdown menu item dropdownTriggers.forEach(item => { item.addEventListener('click', function(e) { e.preventDefault(); const panelName = this.getAttribute('data-panel'); const targetPanel = document.querySelector(`.${panelName}`); if (!targetPanel) return; const isCurrentlyActive = this === activeDropdownElement; if (isCurrentlyActive) { // If the same dropdown is clicked, close it immediately. closeAllDropdowns(); } else { // Open the new dropdown openDropdown(this, targetPanel); } }); }); /* --- MOUSE EVENTS FOR STABILITY FIX --- */ if (header) { // 1. When the mouse leaves the entire header area (menu + dropdown bar), start a timer to close it. header.addEventListener('mouseleave', () => { // Only initiate close if a dropdown is currently active if (activeDropdownElement) { // Set a delay (e.g., 300ms) to allow the user to move the mouse slightly closeTimer = setTimeout(closeAllDropdowns, 300); } }); // 2. If the mouse re-enters the header area before the timer fires, cancel the close. header.addEventListener('mouseenter', () => { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } }); } // 3. Close when clicking anywhere outside the header (as a fallback) document.addEventListener('click', (e) => { // Check if header exists and if the click is outside the header AND a dropdown is open if (header && !header.contains(e.target) && activeDropdownElement) { closeAllDropdowns(); } }); // Initial setup: ensure all are closed on load document.addEventListener('DOMContentLoaded', closeAllDropdowns); window.addEventListener('load', closeAllDropdowns);
Rulla till toppen