Warm tip: This article is reproduced from stackoverflow.com, please click
android android-intent gmail

How to open Gmail Login Activity by using Intent

发布于 2020-03-28 23:12:55

I want to open Gmail Login Activities directly from another app using Intent. I am able to open gmail app by using its package name com.google.android.gm. But I am wondering how to open its Login Activities directly as activities are show below

enter image description here enter image description here

  1. What are the URI's of these activities? OR
  2. How can I get these URI's?
Questioner
Adeel Iftikhar
Viewed
20
Ashwini Violet 2020-01-31 17:25

The screenshots you provided here is not the part of Gmail Activities, instead these are the part of Android OS it self and known as AccountManager.

check here to learn more about it

Now the Main Answer:-

As you specified that you want to launch these through your intent, you can do

//pass the action while creating intent
Intent intent = new Intent(Settings.ACTION_ADD_ACCOUNT);

//setting type for Google Accounts
intent.putExtra(Settings.EXTRA_ACCOUNT_TYPES, new String[] {"com.google"});

startActivity(intent);