Home
last modified time | relevance | path

Searched refs:numsongs (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Music/src/com/android/music/
DArtistAlbumBrowserActivity.java680 int numsongs = cursor.getInt(mGroupSongIdx); in bindGroupView() local
683 numalbums, numsongs, unknown); in bindGroupView()
709 …int numsongs = cursor.getInt(cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.NUMBER_OF_SONGS)… in bindChildView() local
715 numsongs = numartistsongs; in bindChildView()
718 if (numsongs == 1) { in bindChildView()
721 if (numsongs == numartistsongs) { in bindChildView()
723 args[0] = numsongs; in bindChildView()
724 builder.append(mResources.getQuantityString(R.plurals.Nsongs, numsongs, args)); in bindChildView()
727 args[0] = numsongs; in bindChildView()
730 … builder.append(mResources.getQuantityString(R.plurals.Nsongscomp, numsongs, args)); in bindChildView()
DMusicUtils.java94 …public static String makeAlbumsLabel(Context context, int numalbums, int numsongs, boolean isUnkno… in makeAlbumsLabel() argument
103 if (numsongs == 1) { in makeAlbumsLabel()
106 String f = r.getQuantityText(R.plurals.Nsongs, numsongs).toString(); in makeAlbumsLabel()
108 sFormatter.format(f, Integer.valueOf(numsongs)); in makeAlbumsLabel()
124 …public static String makeAlbumsSongsLabel(Context context, int numalbums, int numsongs, boolean is… in makeAlbumsSongsLabel() argument
134 if (numsongs == 1) { in makeAlbumsSongsLabel()
145 String f = r.getQuantityText(R.plurals.Nsongs, numsongs).toString(); in makeAlbumsSongsLabel()
147 sFormatter.format(f, Integer.valueOf(numsongs)); in makeAlbumsSongsLabel()
DQueryBrowserActivity.java410 int numsongs = cursor.getInt(cursor.getColumnIndexOrThrow("data2")); in bindView() local
413 numalbums, numsongs, isunknown); in bindView()