일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드
- 젠킨스
- ubuntu
- vi
- Android
- 아파치 https 적용
- 가상머신
- 전화번호 가져오기
- 우분투 젠킨스 업데이트
- jenkins
- vimrc
- 웹서버
- SMS Retreiver API
- 우분투
- CODEIGNITER
- 인증번호 문자
- Phone Selector
- php
- jenkins war
- vim
- 우분투 아파치 ssl
- 우분투 젠킨스
- jenkins 업데이트
- phpMyAdmin
- 가상컴퓨터
- Firebase
- 리눅스
- 아파치
- 버추얼박스
- virtualbox
- Today
- Total
철스토리
2020-05-07 2회차 내용 본문
* LinearLayout
1. LinearLayout의 속성 중 많이 사용하는 속성
- android:orientation="vertical" / android:orientation="horizontal"
- android:background="#ffffff" / android:background="@color/colorPrimary"
- android:gravity="center_vertical|center_horizontal" // 자식 뷰가 어디에 위치될건지
2. LinearLayout 내부에 View가 배치될 경우 많이 사용하는 속성
- android:layout_gravity="center" // 부모 뷰의 어디에 위치시킬건지
3. 참고사이트
- https://recipes4dev.tistory.com/89
* RelativeLayout
1. RelativeLayout 내부에 View가 배치될 경우 많이 사용하는 속성
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:layout_alignParentBottom="true"
- android:layout_below="@+id/layoutTitle" // 아이디 값을 가진 뷰의 아래에 붙음
- android:layout_above="@+id/containerBottom" // 아이디 값을 가진 뷰의 위에 붙음
2. 참고사이트
- https://recipes4dev.tistory.com/126
* ConstraintLayout
1. ConstraintLayout 내부에 View가 배치될 경우 사용하는 속성
- app:layout_constraintLeft_toLeftOf="parent" // View 자신을 기준으로 왼쪽이 어느뷰의 왼쪽에 붙을건지.. parent => 부모뷰
- app:layout_constraintRight_toRightOf="@+id/imageView" // View 자신을 기준으로 오른쪽이 imageView의 오른쪽으로 붙음
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintDimensionRatio="h, 1:1" // View가 어느 비율만큼 설정될 것인지, 이 때 width, height은 0dp로 세팅되어야 함
2. 참고사이트
* 다음 진행
1. ClickEvent 넣는 방법 소개 및 실습
2. 화면전환 (Intent, startActivity)
3. TabLayout
4. ViewPager
5. Fragment
6. RecyclerView, RecyclerAdapter, ViewHolder....
'안드로이드 > 강의' 카테고리의 다른 글
2020-05-14 3회차 내용 (0) | 2020.05.08 |
---|