android中類似 QQ震動視窗的實現,帶聲音和震動效果

來源:互聯網
上載者:User

<?xml version="1.0" encoding="utf-8"?><cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:cycles="10" />


下來就是左右 和 上下一起動:shake.xml

<?xml version="1.0" encoding="utf-8"?><translate xmlns:android="http://schemas.android.com/apk/res/android"android:fromXDelta="0" android:toXDelta="5" android:fromYDelta="5" android:toYDelta="0" android:duration="1000" android:interpolator="@anim/cycleinter" />

<?xml version="1.0" encoding="utf-8"?><translate xmlns:android="http://schemas.android.com/apk/res/android"    android:duration="1000"    android:fromYDelta="0"    android:interpolator="@anim/cycleinter"    android:toYDelta="3" />

這樣基本上就完成了動的效果

代碼中直接:

Animation shakeAnimation = AnimationUtils.loadAnimation(this, R.anim.shake_xy);view.startAnimation(shakeAnimation);


現在再在震動效果的同時 加上 手機震動和 QQ聲音提示:

SoundPool  soundPoolsoundPool = new SoundPool(10 , AudioManager.STREAM_SYSTEM , 5);//1 最多同時放出的聲音數,2聲音類型,3聲音品質越高越耗費資源soundPool.load(this, R.raw.aa ,1);//context id 層級   public void soundPlay(){//第1個參數 ID(放入 soundpool的順序 第一個放入)//2,3 左聲道 右聲道的控制量//4 優先順序//5 是否迴圈     0 - 不迴圈    -1 -  迴圈//6 播放比例     0.5-2 一般為1 表示正常播放 soundPool.play(1, 1, 1, 1, 0, 1);}public void zhendong(){//別忘記震動許可權Vibrator  vibrator = (Vibrator)this.getSystemService(VIBRATOR_SERVICE);long[] pattern = {50 ,400 ,50 , 400};    //停止 開始  停止 開啟    vibrator.vibrate(pattern, -1);            //不重複設定為1 -1}







相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.