진동 울리기 (How to make an Android device vibrate)
뿌리튼튼 CS/Android2015. 6. 30. 20:26
import android.os.Vibrator;
...
private static final long VIBRATE_TIME = 200;
...
Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
v.vibrate(VIBRATE_TIME); |
cs |
<uses-permission android:name="android.permission.VIBRATE"/> |
cs |
출처 : http://stackoverflow.com/questions/13950338/how-to-make-an-android-device-vibrate
'뿌리튼튼 CS > Android' 카테고리의 다른 글
Service가 동작중인지 확인 (How to check if my service is running or not) (0) | 2015.06.24 |
---|---|
화면(screen) 사이즈 구하는 법 (How to get display size) (0) | 2015.06.23 |
dp 단위로 set하고 싶을 때 (How to convert dps to pixels) (0) | 2015.06.18 |
D/skia: --- decoder->decode returned false (0) | 2015.06.16 |
File to Byte Array (File을 Byte배열로 변환) (0) | 2015.06.12 |