예제 #1
0
 public static void setPartyShuffleMenuIcon(Menu menu) {
   MenuItem item = menu.findItem(Defs.PARTY_SHUFFLE);
   if (item != null) {
     int shuffle = MusicUtils.getCurrentShuffleMode();
     if (shuffle == MediaPlaybackService.SHUFFLE_AUTO) {
       item.setIcon(R.drawable.ic_menu_party_shuffle);
       item.setTitle(R.string.party_shuffle_off);
     } else {
       item.setIcon(R.drawable.ic_menu_party_shuffle);
       item.setTitle(R.string.party_shuffle);
     }
   }
 }