Loading packages/SystemUI/src/com/android/systemui/quicksettings/UserTile.java +2 −4 Original line number Diff line number Diff line Loading @@ -51,10 +51,8 @@ public class UserTile extends QuickSettingsTile { Log.e(TAG, "Couldn't show user switcher", e); } } else { Intent intent = ContactsContract.QuickContact.composeQuickContactsIntent( mContext, v, ContactsContract.Profile.CONTENT_URI, ContactsContract.QuickContact.MODE_LARGE, null); mContext.startActivityAsUser(intent, new UserHandle(UserHandle.USER_CURRENT)); Intent intent = new Intent(Intent.ACTION_VIEW, ContactsContract.Profile.CONTENT_URI); startSettingsActivity(intent); } } }; Loading Loading
packages/SystemUI/src/com/android/systemui/quicksettings/UserTile.java +2 −4 Original line number Diff line number Diff line Loading @@ -51,10 +51,8 @@ public class UserTile extends QuickSettingsTile { Log.e(TAG, "Couldn't show user switcher", e); } } else { Intent intent = ContactsContract.QuickContact.composeQuickContactsIntent( mContext, v, ContactsContract.Profile.CONTENT_URI, ContactsContract.QuickContact.MODE_LARGE, null); mContext.startActivityAsUser(intent, new UserHandle(UserHandle.USER_CURRENT)); Intent intent = new Intent(Intent.ACTION_VIEW, ContactsContract.Profile.CONTENT_URI); startSettingsActivity(intent); } } }; Loading