Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ubuntu for phone
- 예제
- 소주
- C++
- 솔루션
- 오리진
- C언어
- 에러
- 안드로이드
- 정보보안개론과 실습
- 연습문제
- 어플리케이션 숨기기
- 한빛미디어
- 관평동
- 맛집
- mysql
- 인터넷 이해와 활용
- 둔산동
- 윈도우
- 태그를 입력해 주세요.
- 스카이림
- C4996
- origin
- 소켓통신
- NFC
- Android
- 심즈3
- Error
- C
- 시스템 사양
Archives
- Today
- Total
스프링노트
[Android] 버튼사이 여백 없애기 본문
첫번째 방법 : 자바소스 상 버튼 백그라운드 색을 없애준다
- 'buttonName'.setBackgroundDrawable(null); //버튼 배경 null값 주기
두번째 방법 : XML 소스상 버튼 배경을 바꿔준다.
- <Button
- android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="#00000000"
- android:scaleType="centerCrop"
- android:text="Button" />
'DEVELOPMENT > ANDROID' 카테고리의 다른 글
[android] 이미지버튼 사이즈 조절 (0) | 2013.11.04 |
---|---|
[android] XmlPullParser 간단한 사용법 (0) | 2013.11.04 |
[android] android studio 설치 실패 시 대처방법 (0) | 2013.09.04 |
안드로이드 핸드폰 번호 가져오기 (0) | 2013.04.29 |
안드로이드 퍼미션 종류 (0) | 2013.04.29 |