Skip to content

Instantly share code, notes, and snippets.

@ziginsider
Created July 6, 2021 18:20
Show Gist options
  • Save ziginsider/28366f2b549448c40a694e0355936208 to your computer and use it in GitHub Desktop.
Save ziginsider/28366f2b549448c40a694e0355936208 to your computer and use it in GitHub Desktop.
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.example.customview.CustomView
android:id="@+id/custom_view_one"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginBottom="300dp"
app:custom_color="@color/purple_500"
app:custom_style="stroke"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.example.customview.CustomView
android:id="@+id/custom_view_two"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginTop="100dp"
app:custom_color="@color/purple_700"
app:custom_style="fill"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
/>
</androidx.constraintlayout.widget.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment