Skip to content

Instantly share code, notes, and snippets.

@mikkipastel
Created September 21, 2022 10:03
Show Gist options
  • Save mikkipastel/99370bf053c7f44b832092ee934e0c86 to your computer and use it in GitHub Desktop.
Save mikkipastel/99370bf053c7f44b832092ee934e0c86 to your computer and use it in GitHub Desktop.
add Button under TextView
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Click Me"
app:layout_constraintTop_toBottomOf="@+id/textview"
app:layout_constraintStart_toStartOf="@id/textview"
app:layout_constraintEnd_toEndOf="@id/textview" />
</androidx.constraintlayout.widget.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment