You need to go through the AccountManager Android class:
AccountManager manager = (AccountManager) getSystemService(ACCOUNT_SERVICE); Account[] list = manager.getAccounts();
and also add the necessary permissions for the AndroidManifest file:
<uses-permission android:name="android.permission.GET_ACCOUNTS"></uses-permission>
From there you can autofill information.
source share