Back to project page 5th.
The source code is released under:
GNU General Public License
If you think the Android project 5th listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
? package com.zhanglin.practice; //from w w w . j a v a 2 s . c o m public class PublicList { //?????1000?? static String path[]=new String[1000]; static String title[]=new String[1000]; static String artist[]=new String[1000]; static String album[]=new String[1000]; static long duration[]=new long[1000]; static int currentItem=0; static int size=0; public static void list(String pat,String tit,String art,String alb,long dur,int pos) { path[pos]=pat; title[pos]=tit; artist[pos]=art; album[pos]=alb; duration[pos]=dur; size=pos; } }