Notice
Link
- Today
- Total
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- c언어
- pid 찾아 kill
- 코드로 서버 재실행
- mybatis exception
- 가변영역 스크롤
- kill -9
- view 획득
- 파티션 빠른 삭제
- SQL 마지막날
- vc++
- MySQL
- 말줌임 CSS
- springboot
- springboot 재가동
- SQL 첫날
- MariaDB
- 텍스트컬러
- sql exception
- 터치좌표 view
- reactnative
- CSS
- Activity 전체화면
- Back 키 클릭 감지
- CentOS
- 피쉬랜드
- DB 계정생성
- rn
- ffmpeg
- MFC
- 스크롤적용
Archives
개발은 하는건가..
Android View Animation stop 또는 재시작 본문
반응형
아래 코드 처럼 2개의 뷰를 시간차를 두고 에니메이션이 start 되는 상황에서 다른 activity 로 이동했다가 복귀 시
2개의 뷰 에니메이션이 시간차를 두지 않고 겹쳐서 에니메이션되는 현상 발생.
뷰를 Gone 시키는 코드도 안먹고 에니메이션 cancel 도 안되고 그랬으나 구글링 해보니 alpha 값을 0 으로 설정하면 사라진다는 글을 보고 적용해봤더니 정말 사라짐. @.@
void onResume() {
ImageView iv_o2Circle = findViewById(R.id.iv_o2Circle);
if (iv_o2Circle != null) {
setViewAnimation(R.anim.ani_fade, iv_o2Circle);
final ImageView iv_o2Circle2nd = findViewById(R.id.iv_o2Circle2nd);
if (iv_o2Circle2nd != null) {
// Alpha 를 0으로 설정했더니 사라졌음.
iv_o2Circle2nd.setAlpha(0f);
iv_o2Circle2nd.setVisibility(View.GONE);
getHandler().postDelayed(new Runnable() {
@Override
public void run() {
iv_o2Circle2nd.setAlpha(1f);
iv_o2Circle2nd.setVisibility(View.VISIBLE);
setViewAnimation(R.anim.ani_fade, iv_o2Circle2nd);
}
},5000);
}
}
}
'Java, Android' 카테고리의 다른 글
Android 화면 회전(ScreenRotation) (0) | 2022.07.19 |
---|---|
Android 전체 화면 노치 영역 사용 설정하기 (0) | 2022.07.01 |
Android ListView Divider 없에기 (0) | 2022.06.15 |
Android 애니메이션 drawable (0) | 2022.06.14 |
[Java] DB 에서 BLOB (바이너리 데이터) 읽어오기 (0) | 2022.03.08 |
Comments