DEV Community

Discussion on: ConstraintLayout beginners guide Part I: Designing a repsonsive UI for Android apps

Collapse
 
kiyansadegh profile image
kiyan

Until 2 months ago I was using Relative and Linear layout. Since I've got known Constraint layout, It has had a good effect on my coding and helped me a lot with saving time and energy. On the other hand it has made designing very attractive and pleasant. Thank you Miguel for your helpful post.

Collapse
 
miguelrodoma95 profile image
Miguel Rodriguez

Glad you find it helpful! I also had the habit of using mostly LinearLayout for everything, but I always felt it was quite inefficient because I would end with a lot of nested LL's. As I began implementing ConstriantLayout my views became 'flatter' and more responsive to different screen sizes.