音乐
文章平均质量分 79
gundumw100
这个作者很懒,什么都没留下…
展开
-
j2me工具类:声音播放类SoundUtil
用法: 将需要播放的音乐都罗列在name,type数组中,需要的时候像下面这样调用: SoundUtil sound=new SoundUtil(); sound.start(musicIndex); import java.io.IOException; import java.io.InputStream; import javax.microedition.media.Mana原创 2017-04-10 17:59:57 · 401 阅读 · 0 评论 -
android图片处理方法(不断收集中)
//压缩图片大小 public static Bitmap compressImage(Bitmap image) { ByteArrayOutputStream baos = new ByteArrayOutputStream(); image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//质量压缩方法,这里100表示不压原创 2017-04-10 18:08:25 · 239 阅读 · 0 评论