리스트뷰 가로/세로 설정 : horizontal/vertical

layout_weight 가중치 설정

<LinearLayout
    android:layout_width="match_parent" 
    android:layout_height="500dp" 
    android:orientation="horizontal" 
    app:layout_constraintHorizontal_weight="5" 
    android:background="@mipmap/ic_launcher_round" 
    tools:ignore="MissingConstraints"> 

    <TextView
        android:layout_width="100dp" 
        android:layout_height="100dp" 
        android:layout_weight="1" 
        android:background="@color/colorPrimaryDark"/> 
    <TextView
        android:layout_width="100dp" 
        android:layout_height="100dp" 
        android:layout_weight="1" 
        android:background="@color/colorAccent"/> 

    <TextView

        android:layout_width="100dp" 
        android:layout_height="100dp" 
        android:layout_weight="1" 
        android:background="@color/colorPrimary"/> 
</LinearLayout>

 

<LinearLayout

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    app:layout_constraintHorizontal_weight="5"
    android:background="@mipmap/ic_launcher_round"
    tools:ignore="MissingConstraints">

 

    <TextView

        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:background="@color/colorPrimaryDark"/>

    <TextView

        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_weight="1"
        android:background="@color/colorAccent"/>

    <TextView    

        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_weight="2"
        android:background="@color/colorPrimary"/>

</LinearLayout

'Android' 카테고리의 다른 글

Anko 라이브러리 추가  (0) 2020.03.30
RelaytiveLayout  (0) 2020.03.23
무료아이콘 다운로드  (2) 2017.02.02
스플래쉬 참고  (0) 2017.02.01
[스터디] 1. 카카오톡 패스워드입력 화면 구성  (0) 2016.12.05

+ Recent posts