中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android中怎么實現震動和提示音

發布時間:2021-08-10 14:36:51 來源:億速云 閱讀:151 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關android中怎么實現震動和提示音,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

實現代碼如下所示:

public class VibratorUtil {  protected AudioManager audioManager;  protected Vibrator vibrator;  private Ringtone ringtone;  private static final int MIN_TIME_OUT = 4000; //時間間隔  long lastNotificationTime;  public VibratorUtil() {    audioManager = (AudioManager) MyApp.getContext().getSystemService(Context.AUDIO_SERVICE); //此方法是由Context調用的    vibrator = (Vibrator) MyApp.getContext().getSystemService(Context.VIBRATOR_SERVICE); //同上  }  /**   * 開啟手機震動和播放系統提示鈴聲   */  public void vibrateAndPlayTone() {    if (System.currentTimeMillis() - lastNotificationTime < MIN_TIME_OUT) {      return;    }    try {      lastNotificationTime = System.currentTimeMillis();      if (audioManager.getRingerMode() == AudioManager.RINGER_MODE_SILENT) {        return;      }      long[] pattern = new long[]{0, 180, 80, 120};      vibrator.vibrate(pattern, -1); //震動      if (ringtone == null) {        Uri notificationUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);        ringtone = RingtoneManager.getRingtone(MyApp.getContext(), notificationUri);        if (ringtone == null) {          return;        }      }      if (!ringtone.isPlaying()) {        ringtone.play();        //判斷手機品牌        String vendor = Build.MANUFACTURER;        if (vendor != null && vendor.toLowerCase().contains("samsung")) {          Thread ctlThread = new Thread() {            public void run() {              try {                Thread.sleep(3000);                if (ringtone.isPlaying()) {                  ringtone.stop();                }              } catch (Exception e) {              }            }          };          ctlThread.run();        }      }    } catch (Exception e) {      e.printStackTrace();    }  }}

上述就是小編為大家分享的android中怎么實現震動和提示音了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

潼南县| 乌拉特中旗| 双江| 响水县| 兴化市| 闵行区| 高阳县| 罗山县| 阿拉善右旗| 从江县| 汉沽区| 温州市| 卫辉市| 麻城市| 江城| 托克逊县| 大荔县| 宜君县| 广元市| 湖北省| 濮阳县| 颍上县| 页游| 祁连县| 桂东县| 诸暨市| 运城市| 甘肃省| 师宗县| 东阳市| 新河县| 彭泽县| 宁海县| 雷州市| 岳普湖县| 山西省| 沁阳市| 临夏县| 绥芬河市| 鹿邑县| 道孚县|