=================================
=================================
=================================
출처: http://ezcocoa.com/?m=201101&paged=3
특정 버튼 안에 이미지 넣기
Button button = new Button(mContext);
button.setText("Close");
Drawable close = Drawable.createFromPath("/data/icon/image.png");
close.setBounds(0, 0, close.getIntrinsicWidth(), close.getIntrinsicHeight());
button.setCompoundDrawables(close, null, null, null);
=================================
=================================
=================================
'스마트기기개발관련 > 안드로이드 개발' 카테고리의 다른 글
파일명으로 리소스 가져오기 (0) | 2011.05.24 |
---|---|
안드로이드 뷰어,레이아웃,리스트뷰어등 업데이트 갱신 (0) | 2011.05.23 |
안드로이드 Group List 관련 (0) | 2011.05.17 |
안드로이드 로딩하면 띄우기 관련 (0) | 2011.05.17 |
재사용 가능한 UI 컴포넌트로 레이아웃 구성하기 (0) | 2011.05.12 |
댓글 영역