2023學(xué)年完整公開課版振動器Vibrator_第1頁
2023學(xué)年完整公開課版振動器Vibrator_第2頁
2023學(xué)年完整公開課版振動器Vibrator_第3頁
2023學(xué)年完整公開課版振動器Vibrator_第4頁
2023學(xué)年完整公開課版振動器Vibrator_第5頁
已閱讀5頁,還剩9頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

振動器Vibrator目錄振動器Vibrator振動器使用實(shí)例小結(jié)振動器VibratorAndroid手機(jī)中的震動由Vibrator實(shí)現(xiàn)。設(shè)置震動事件,需要知道其震動的時(shí)間長短、震動的周期等。在AndroidVibrator中,震動的時(shí)間一毫秒計(jì)算(1/1000秒),所以如果設(shè)置的時(shí)間值太小,會感覺不出來。通過調(diào)用Vibrator的vibrate(long[]pattern,intrepeat)方法實(shí)現(xiàn)。前一個(gè)參數(shù)為設(shè)置震動的效果的數(shù)組,第二個(gè)參數(shù)為-1表示只震動一次,為0則震動會一直持續(xù)。Vibrator常用方法:取得震動服務(wù)的句柄:振動器Vibratorvibrator=(Vibrator)getSystemService(VIBRATOR_SERVICE);vibrator=(Vibrator)getApplication().getSystemService(Service.VIBRATOR_SERVICE);Vibrator常用方法:開始震動有兩個(gè)接口振動器Vibrator

1.vibrator.vibrate(2000);//震動指定時(shí)間,數(shù)據(jù)類型long,單位為毫秒,一毫秒為1/1000秒

2.vibrator.vibrate(newlong[]{100,10,100,1000},-1);//按照指定的模式去震動。數(shù)組參數(shù)意義:第一個(gè)參數(shù)為等待指定時(shí)間后開始震動,震動時(shí)間為第二個(gè)參數(shù)。后邊的參數(shù)依次為等待震動和震動的時(shí)間。取消震動:振動器Vibratorvibrator.cancel();//取消震動,立即停止震動震動為一直震動的話,如果不取消震動,就算退出,也會一直震動示例編寫程序,實(shí)現(xiàn)短振動、長振動、節(jié)奏振動。示例1.新建main.xml文件,定義三個(gè)開關(guān)按鈕,分別為寓意短振動、長振動、節(jié)奏振動。<Buttonandroid:id="@+id/tog1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="短震動"/><Buttonandroid:id="@+id/tog2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="長震動"/><Buttonandroid:id="@+id/tog3"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="節(jié)奏震動"/>示例2.在MainActivity中,定義并獲取振動器和組件:privateVibratorvibrator; privateToggleButtontog1; privateToggleButtontog2; privateToggleButtontog3;

tog1=(ToggleButton)findViewById(R.id.tog1); tog2=(ToggleButton)findViewById(R.id.tog2); tog3=(ToggleButton)findViewById(R.id.tog3); vibrator=(Vibrator)this.getSystemService(VIBRATOR_SERVICE);示例3.為短振動器綁定監(jiān)聽事件。tog1.setOnCheckedChangeListener(newOnCheckedChangeListener(){publicvoidonCheckedChanged(CompoundButtonbuttonView, booleanisChecked){if(isChecked){

vibrator.vibrate(newlong[]{1000,10,100,1000},-1); showToast("OK"); }else{ //取消震動

vibrator.cancel(); showToast("CANCEL"); } } });示例4.為長振動器綁定監(jiān)聽事件。tog2.setOnCheckedChangeListener(newOnCheckedChangeListener(){publicvoidonCheckedChanged(CompoundButtonbuttonView, booleanisChecked){if(isChecked){vibrator.vibrate(newlong[]{100,100,100,1000},0); showToast("OK"); }else{ //取消震動

vibrator.cancel(); showToast("CANCEL"); } } });示例5.為節(jié)奏振動器綁定監(jiān)聽事件。tog3.setOnCheckedChangeListener(newOnCheckedChangeListener(){publicvoidonCheckedChanged(CompoundButtonbuttonView, booleanisChecked){if(isChecked){

vibrator.vibrate(newlong[]{1000,50,1000,50,1000},0); showToast("OK");

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論