Notice
Recent Posts
Recent Comments
Link
투케이2K
364. (android/xml) [레이아웃] button 버튼 기본 생성 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
[속성 설명]
1. android:id : 자바 코드에 매핑을 하기위한 컴포넌트 id 를 지정
2. android:layout_width : 가로 크기
3. android:layout_height : 세로 크기
4. android:layout_weight : 반응형 크기 비율
5. android:text : 텍스트 타이틀 명칭
6. android:textStyle : 텍스트 표시 스타일
7. android:textSize : 텍스트 사이즈
8. android:gravity : 컴포넌트 정렬 기준
9. android:textColor : 텍스트 색상
10. android:background : 컴포넌트 배경 지정 (색상 및 drawable 이미지 지정)
11. android:layout_marginTop : top 마진
12. android:layout_marginLeft : left 마진
13. android:layout_marginRight : right 마진
14. android:layout_marginBottom : bottom 마진
[소스 코드]
<Button
android:id="@+id/one_button"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:text="ONE"
android:textStyle="bold"
android:textSize="15dp"
android:gravity="center"
android:textColor="#ffffff"
android:background="#7e8396"
android:layout_marginTop="10dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="0dp" />
[결과 출력]
반응형
'Android' 카테고리의 다른 글
366. (android/xml) [레이아웃] TextView 텍스트 뷰 기본 생성 (0) | 2022.11.02 |
---|---|
365. (android/xml) [레이아웃] EditText 에딧트 텍스트 기본 생성 (0) | 2022.11.02 |
363. (android/kotlin) Koin 코인 개념 설명 (0) | 2022.10.31 |
362. (android/안드로이드) 블루투스 SPP (Bluetooth Serial Port Profile) 시리얼 통신 용어 설명 (0) | 2022.10.28 |
361. (android/안드로이드) Dagger 용어 설명 - 의존성 주입 프레임워크 (0) | 2022.10.28 |
Comments