안드로이드 버튼과 레이아웃에 배경 설정하기
버튼과 레이아웃에 배경 설정하기.
① 색상 형식.
- AA : 투명도, 00~FF, 00-투명, FF-불투명.
- RR : 적색, 00~FF
- GG :녹색, 00~FF
- BB : 청색, 00~FF
색상 형식 |
#AARRGGBB |
#RRGGBB |
#RGB |
main.xml |
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/image1" > <Button android:layout_width="fill_parent" android:layout_height="100px" android:text="Button Button Button Button" android:background="#ffff0000" /> <View android:layout_width="fill_parent" android:layout_height="30px" /> <Button android:layout_width="fill_parent" android:layout_height="100px" android:text="Button Button Button Button" android:background="#aaff0000" /> <View android:layout_width="fill_parent" android:layout_height="30px" /> <Button android:layout_width="fill_parent" android:layout_height="100px" android:text="Button Button Button Button" android:background="#00ff0000" /> <View android:layout_width="fill_parent" android:layout_height="30px" /> <Button android:layout_width="fill_parent" android:layout_height="100px" android:text="Button Button Button Button" android:background="#0000ff" /> <View android:layout_width="fill_parent" android:layout_height="30px" /> <Button android:layout_width="fill_parent" android:layout_height="100px" android:text="Button Button Button Button" android:background="#0F0" /> </LinearLayout> [출처] 안드로이드 버튼과 레이아웃에 배경 설정하기.|작성자 shylove2456
|
'안드로이드 > 레이아웃(Layout)' 카테고리의 다른 글
[안드로이드] Timepicker(타임피커), Datepicker(데이트피커) 예제 (0) | 2018.01.17 |
---|---|
[Android] Strings.xml에서 개행하기 (0) | 2018.01.17 |
[Android] 안드로이드 액션바 색상/디자인 변경하기(Action Bar Color Change/Action Bar Customize) (0) | 2018.01.17 |
안드로이드 상단 회색(그레이) 색상 타이틀바 없애기 또는 레이블 넣기 (0) | 2018.01.17 |
리스트뷰의 주요 속성 살펴보기 (0) | 2018.01.17 |
안드로이드 버튼 스타일 (0) | 2018.01.17 |
안드로이드 스타일 적용하기 (0) | 2018.01.17 |
안드로이드 버튼의 이미지 위치/버튼의 텍스트 위치/버튼의 주요 속성 (0) | 2018.01.17 |