1. TextView 의 말줄임 위치 설정
android:ellipsize="end"
end / middle / start / none / marquee
2. 2.3 이하에서 dialog가 배경 테두리를 가질 경우 삭제
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
3. bitmap recycle 시 유의사항 (14.06.13)
bitmap을 recyle했다면 모든 참조를 끊어라.
- imageView 참조
- bitmap 전달인자
4. 서로다른 Notification은 서로다른 context를 써라.
같은 context로 다른 Notification을 생성한다면 처음에 생성한 notification은 소실된다.
'프로그래밍 > Android 짜투리 지식' 카테고리의 다른 글
[android] google advertising id (0) | 2014.07.02 |
---|---|
[android] dex index (0) | 2014.06.03 |
[android] get resource id by String (0) | 2014.02.07 |
[android] ImageView Matrix (0) | 2014.01.09 |
[android] [API] dropbox (0) | 2014.01.06 |