2가지 방법, 1. xml 사용 한 구현 방법 1). xml 생성 res\drawable\ 안에 xml 생성 2). imageView에 위에서 생성한 animation src로 적용 3). activity java 로 구현 ImageView animation = findViewById(R.id.imsi_animation); AnimationDrawable animationDrawable = (AnimationDrawable) imsi_animation.getDrawable(); animationDrawable.start(); -----------------------------------------------------------------------------------------------------..
AnimationDrawable 사용 시 메모리 해제가 되지 않는 이슈 생명주기에 따라 아래 코드를 호출. animationDrawable.stop(); for (int i = 0; i < animationDrawable.getNumberOfFrames(); ++i){ Drawable frame = animationDrawable.getFrame(i); if (frame instanceof BitmapDrawable) { ((BitmapDrawable)frame).getBitmap().recycle(); } frame.setCallback(null); } animationDrawable.setCallback(null); Heap Alloc 과 Heap Free에 대한 내용은 좀 더 공부가 필요할 듯 하지..
* xml * activity onCreate mSurfaceView1 = (SurfaceView)findViewById(R.id.surfaceView1); mSurfaceHolder1 = mSurfaceView1.getHolder(); mMediaPlayer1 = new MediaPlayer(); mSurfaceHolder1.addCallback(new SurfaceHolder.Callback() { @Override public void surfaceCreated(SurfaceHolder holder) { mMediaPlayer1.setDisplay(holder); } @Override public void surfaceChanged(SurfaceHolder holder, int format, int..
- Total
- Today
- Yesterday
- text 부분 색 칠하기
- React Native
- 함수형 코드
- 명령어
- MongoDB
- rn
- not working adb
- 차번호 정규식
- https://hwan-shell.tistory.com/244
- 안드로이드
- 자바
- react native state
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- ubunut 설치 link
- mac android
- 데이터베이스
- 클래스형 코드
- 귀찮아;;
- mongo db
- Android
- insert
- 차번호 정규표현식
- not starting .bash_profile
- nosql
- 구글 맵 선그리기
- ubunut android
- 구글 맵 경로 그리기
- adb 환경변수
- not found adb
- spannableText
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |