버튼(Button) 패딩 제거

by 조쉬 posted Jun 10, 2016
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

 버튼 default 패딩 제거하는 방법


final Button button = new Button(this);
 button.setMinWidth(0);
 button.setMinHeight(0);
 button.setMinimumWidth(0);
 button.setMinimumHeight(0);
 button.setPadding(0,0,0,0);