PhoneCilicoSoundUtils.java 393 B

12345678910111213141516171819202122
  1. package cilico.tools.barcode;
  2. public class PhoneCilicoSoundUtils extends CilicoSoundUtils{
  3. /**
  4. * 成功声音 2014-5-9下午12:38:54
  5. */
  6. public static void play() {
  7. if(PhoneScanner.isPhone){
  8. //是手机,就手机的声音播放
  9. return;
  10. }
  11. Thread thread = new Thread(new Runnable() {
  12. public void run() {
  13. genTone();
  14. playSound();
  15. }
  16. });
  17. thread.start();
  18. }
  19. }