본문 바로가기

DEVELOPMENT/ANDROID

[Android] 버튼사이 여백 없애기


첫번째 방법 : 자바소스 상 버튼 백그라운드 색을 없애준다

  1. 'buttonName'.setBackgroundDrawable(null);   //버튼 배경 null값 주기

두번째 방법 : XML 소스상 버튼 배경을 바꿔준다.

  1. <Button
  2.    android:id="@+id/button1"
  3.    android:layout_width="wrap_content"
  4.    android:layout_height="wrap_content"
  5.    android:layout_weight="1"
  6.    android:background="#00000000"
  7.    android:scaleType="centerCrop"
  8.    android:text="Button" />