일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 비행기 모드
- 히오스
- tcp
- 컬렉션 프레임
- game
- 자바
- 에셋
- 소캣(Socket)
- 나지보
- 벨팡
- 안드로이드 Application Lifecycle
- unity
- 아이폰
- 게임
- 나지보 특성
- 명령어
- tcp네트워크
- End of Darkness
- 어플
- 변경된 정보
- 스랄 특성
- 기업의 행포
- TCP 네트워크 방식의 연결
- Collection Framework
- 아이패드
- 집 정리
- php 홈디렉토리 변경방법
- 리눅스
- 안드로이드
- 포트(Port)
- Today
- Total
목록전체 글 (407)
Do Something IT
public void setSeekBar() { /* 미디어 볼륨 조절 하는바 */ seekVolumn = (SeekBar) findViewById(R.id.mp_seekbar_volumn); audioManager = (AudioManager) getSystemService(AUDIO_SERVICE); nMax = audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC); nCurrentVolumn = audioManager .getStreamVolume(AudioManager.STREAM_MUSIC); seekVolumn.setMax(nMax); seekVolumn.setProgress(nCurrentVolumn); seekVolumn.setOnSeek..
MediaPlayer의 진행항태를 seekbar를 통하여 나타내고 싶었다 그래서 나는 CountDownTimer를 이용하여 작성 해보았다. seekPlayBar = (SeekBar) findViewById(R.id.mp_seekbar_playbar); mp = Cmp.getMp(); date = new Date(); date.setMinutes(0); int sec = mp.getDuration() / 1000; date.setSeconds(sec); SimpleDateFormat formatter = new SimpleDateFormat("mm:ss"); String str = formatter.format(date.getTime()); fulltime.setText(str); if (str.equal..
안드로이드는 간편한 음원 파일및 비디오 파일 컨트롤을 제공하기위해 MediaPlayer를 제공한다. MediaPlayer는 자신만의 life cycle을 가지고 있다. 우리는 이를 사용하기 위해서 이를 잘파악하고 사용 해야될 것이다. ※ 앞으로 편하게 설명하기위해 MediaPlayer를 mp라 칭하겠다. 윗 그림이 바로 mp의 life cycle이다. 이는 호출되는 메서드에 따라 mp의 상태가 변화함을 알수있다. 자세히 알아보도록 하자. private MediaPlayer mp = new MediaPlayer(); // MediaPlayer객체 생성 자 mp가 생성되었다. 최초 생성된 mp의 상태는 idle 상태이다. 이 상태는 유휴 상태로 즉 아무것도 하지않는 상태이다. 그러무로 이상태에서는 아무것도 ..