I need help with UserInfo and asking the user to type in his/her name.
Could anyone type in the code?
String userName;
if (UserInfo.isStorageAvailable());
{
UserInfo myInfo = UserInfo.getMyInfo();
userName = myInfo.getUserName();
}public String getNameOfUser()
{
String username;
if (UserInfo.isStorageAvailable())
{
UserInfo myInfo = UserInfo.getMyInfo();
return myInfo.getUserName();
}
return "";
}