Skip to content

Instantly share code, notes, and snippets.

@gabbertini
Last active August 23, 2018 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabbertini/f4c345e24a5460d4b04067896d867931 to your computer and use it in GitHub Desktop.
Save gabbertini/f4c345e24a5460d4b04067896d867931 to your computer and use it in GitHub Desktop.
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintTop_toBottomOf="@+id/button1" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintTop_toBottomOf="@+id/button2" />
<android.support.constraint.Group
android:id="@+id/empty_state"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
app:constraint_referenced_ids="button1,button3"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment