How do you access the user\'s Google Account Id / username in code? I am building an application that will call a web service to store data and I want to identify the ident
String name = android.os.Build.USER; if (!TextUtils.isEmpty(name)) { nameEdit.setText(name); }