티스토리 뷰
// 볼륨 낮추는 메소드
public void volumeDown(View v){
AudioManager am = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
// 현재 볼륨 가져오기
int volume = am.getStreamVolume(AudioManager.STREAM_MUSIC); //volume은 0~15 사이어야 함
// volume이 0보다 클 때만 키우기 동작
if(volume > 0) {
am.setStreamVolume(AudioManager.STREAM_MUSIC, volume-1, AudioManager.FLAG_PLAY_SOUND);
}else {
Toast.makeText(getApplicationContext(), "현재 최저음량입니다.", Toast.LENGTH_SHORT).show();
}
}
// 볼륨 높이는 메소드
public void volumeUp(View v){
AudioManager am = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
// 현재 볼륨 가져오기
int volume = am.getStreamVolume(AudioManager.STREAM_MUSIC);
// volume이 15보다 작을 때만 키우기 동작
if(volume < 15) {
am.setStreamVolume(AudioManager.STREAM_MUSIC, volume+1, AudioManager.FLAG_PLAY_SOUND);
}else {
Toast.makeText(getApplicationContext(), "현재 최고음량입니다.", Toast.LENGTH_SHORT).show();
}
}
'Application' 카테고리의 다른 글
ColorCode를 계산하는 어플 제작, 마켓 업로드 (0) | 2013.08.09 |
---|---|
중학교 3학년 천재(이) 2학기 중간고사대비 어플 제작중 (0) | 2013.08.01 |
About LucidOS 라는 어플을 만들었습니다 (부제:미르의 잉여력ㅋㅋㅋ) (1) | 2013.07.28 |
Plants Vs Zombies (식물 대 좀비) (0) | 2013.07.14 |
Android Activity theme 기본으로 제공하는 것들 (2) | 2013.07.07 |
안드로이드 스마트폰으로 CCTV를 만들자 - IP Webcam KO (한글번역버전) (12) | 2013.07.05 |
LucidOS 소프트키 높이/투명화/배경 변경 어플 (LucidOS Chooser) (2) | 2013.06.06 |
버튼을 누르면 레이아웃이 이동되는 어플 만들기 (0) | 2013.06.06 |
- Total
- Today
- Yesterday
- String Name = Miru(itmir913);
- String Mail = itmir913@gmail.com;
- String github = https://github.com/itmir913;