setCompoundDrawablesWithIntrinsicBounds (int left, int top, int right, int bottom)
: 글씨의 왼쪽, 상단, 오른쪽, 아래에 이미지 추가
setCompoundDrawablePadding (int pad)
: 이미지와 글씨 사이의 간격 설정
1
2
3
4
|
TextView txtEvent = (TextView)convertView.findViewById(R.id.cell_event);
txtEvent.setCompoundDrawablesWithIntrinsicBounds(R.drawable.event, 0, 0, 0);
txtEvent.setCompoundDrawablePadding(10);
txtEvent.setText("이벤트합니다.");
|