ssomai / ScalableLayout

Scalable Layout For Android
Apache License 2.0
270 stars 87 forks source link

ConstraintLayout에서 사용이 가능한가요? #69

Closed sion1116 closed 5 years ago

sion1116 commented 5 years ago

최근 안드로이드 개발에서 많이 사용되는 ConstraintLayout에서도 사용할 수 있나요? 가능하다면 ConstraintLayout에서 사용하는 샘플이 있으면 좋을 것 같습니다.

ssomai commented 5 years ago

안녕하세요~ ScalableLayout은 FrameLayout을 상속받은것인지라 ConstraintLayout 안에서도 아마 사용할수 있을것입니다~ :)

샘플은 작업하게 되면 업데이트할게요~

edgelv34 commented 5 years ago

ConstraintLayout 에서 사용하고있습니다 잘되네요 다만 constraint 안에 ScalableLayout을 사용할 경우

        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:scale_base_width="360"
        app:scale_base_height="716"

와 같이 width나 height를 wrap해줘야 합니다.