<ConstraintLayout에서 같은 비율로 배치하기>
https://curryyou.tistory.com/383
<LinearLayout에서 같은 비율로 배치하기>(가로로 배치)
1. layout_width를 match_parent로 설정해준다.
2. layout_weight을 1로 설정해준다.
완성
--------------------------------------------------------------------------------------------------
<ConstraintLayout에서 남은 공간에 꽉차게 채우기>
1. 각 뷰를 체인으로 묶어주고
2. layout_height을 0dp로 설정해주면 된다.