Custom ActionBar Overflow Menu
I'm trying to make an ActionBar Menu OverFlow. The type twitter does. Where The Name and The UserName shows on the first Item on the OverFlow. So, I did this, but it's not taking any effect, any help would be appreciated. There is my code: MyActivity.java @Override public boolean onPrepareOptionsMenu(Menu menu) { MenuItem menuItem = menu.findItem(R.id.username); View usname = getLayoutInflater().inflate(R.layout.action_menu_overflow, null); TextView uName = (TextView) usname.findViewById(R.id.profileName); TextView slug = (TextView) usname.findViewById(R.id.slugName); uName.setText("Users");