Android遊戲的心跳效果

來源:互聯網
上載者:User
代碼介紹:
  開發的遊戲中計時就要結束的時候,為了營造緊張的氣氛,會利用手機自身的震動類比心跳效果,其實這個心跳效果做起來真的非常的簡單。所以直接上代碼了(注意模擬器是類比不了震動的,得真機測試哦)

  1.   package com.ray.test;
  2.   import android.app.Activity;
  3.   import android.os.Bundle;
  4.   import android.os.Vibrator;
  5.   import android.view.MotionEvent;
  6.   public class TestViberation extends Activity {
  7.   Vibrator vibrator;
  8.   /** Called when the activity is first created.*/
  9.   @Override
  10.   public void onCreate(Bundle savedInstanceState) {
  11.   super.onCreate(savedInstanceState);
  12.   setContentView(R.layout.main);
  13.   }
  14.   @Override
  15.   protected void onStop() {
  16.   if(null!=vibrator){
  17.   vibrator.cancel();
  18.   }
  19.   super.onStop();
  20.   }
  21.   @Override
  22.   public boolean onTouchEvent(MotionEvent event) {
  23.   if(event.getAction() == MotionEvent.ACTION_DOWN){
  24.   vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
  25.   long[] pattern = {800, 50, 400, 30}; // OFF/ON/OFF/ON…
  26.   vibrator.vibrate(pattern, 2);//-1不重複,非-1為從pattern的指定下標開始重複
  27.   }
  28.   return super.onTouchEvent(event);
  29.   }
  30.   }

複製代碼

<ignore_js_op style="word-wrap: break-word;">

TestViberation.zip

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.