Contour is a typesafe, Kotlin-first API for complex layouts on Android.
Let's create a simple note-taking view that displays a username aligned to the left, and fills the remaining horizontal space with the note.
class NoteView(context: Context) : ContourLayout(context) {
private val name: TextView =
TextView(context).apply {
text = "Ben Sisko"
setTextColor(White)
setTextSize(TypedValue.COMPLEX_UNIT_DIP, 18f)
layoutOf(
leftTo { parent.left() + 15.dip },
topTo { parent.top() + 15.dip }
)
}
private val note =
TextView(context).apply {
text = siskoWisdom
setTextColor(White)
setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14f)
layoutOf(
leftTo {
name.right() + 15.dip
}.rightTo {
parent.right() - 15.dip
},
topTo {
parent.top() + 15.dip
}
)
}
}
We should also set the view height to match the note: TextView
height, plus some padding.
init {
heightOf { description.bottom() + 15.dip }
}
Let's also introduce an avatar, and have its width and height match the width of the name: TextView
.
private val avatar =
AvatarImageView(context).apply {
scaleType = ImageView.ScaleType.CENTER_CROP
Picasso.get()
.load("https://upload.wikimedia.org/wikipedia/en/9/92/BenSisko.jpg")
.into(this)
layoutOf(
leftTo {
name.left()
}.widthOf {
name.width()
},
topTo {
name.bottom()
}.heightOf {
name.width().toY()
}
)
}
Finally, let's insert a created date between the note content and the bottom of the view. If there is not enough content in the note: TextView
, let's align the created date vertically with the name & icon.
private val starDate = TextView(context).apply {
text = "Stardate: 23634.1"
setTextColor(White)
setTextSize(TypedValue.COMPLEX_UNIT_DIP, 18f)
layoutOf(
rightTo { parent.right() - 15.dip },
maxOf(
topTo { note.bottom() + 5.dip },
bottomTo { name.bottom() }
)
)
}
What does the end result of this look like?
Similar to ConstraintLayout
, Contour works by creating relationships between views' position and size. The difference is, instead of providing opaque XML attributes, you provide functions which are directly called during the layout phase.
This offers a couple advantages:
Since configuration is simply provided through lambdas, you can make runtime layout decisions. For example:
leftTo {
if (user.name.isEmpty) parent.left()
else nameView.right()
}
Or
heightOf {
maxOf(note.height(), 100.dip)
}
You can use any of the Kotlin operators in your layouts for defining spacing, padding, etc.
rightTo { parent.right() - 15.dip }
Or
centerHorizontallyTo { parent.width() / 4 }
Contour tries to make it easy to do the right thing. As part of this effort, all of the layout functions return interfaces as views of the correct available actions.
For example, when defining a constraint of leftTo
, the only exposed methods to chain in this layout are rightTo
or widthOf
. Another leftTo
, or centerHorizontallyTo
don't really make sense in this context and are hidden.
In short:
layoutOf(
leftTo {
name.left()
}.leftTo {
name.right()
},
topTo {
name.bottom()
}
)
Will not compile.
Contour makes heavy use of inline classes to provide axis type safety in layouts. What this means is
toLeftOf { view.top() }
will not compile. toLeftOf {}
requires a XInt
, and top()
returns a YInt
. In cases where this needs to be forced, casting functions are made available to toY()
& toX()
.
Inline classes are a lightweight compile-time addition that allow this feature with minimal to no performance costs. https://kotlinlang.org/docs/reference/inline-classes.html
Circular references are pretty easy to unintentionally introduce in any layout. To accidentally declare
name.right
aligns tonote.left
- and
note.left
aligns toname.right
Contour fails fast and loud when these errors are detected, and provides as much context as possible when doing so. The screenshot below is an example of the trace provided when a circular reference is detected.
Copyright 2019 Square, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
See terms and conditions here.