Skip to content

Instantly share code, notes, and snippets.

@vamsee9
Created August 19, 2020 15:04
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 vamsee9/d5571d4f4ea79436de8d7abc62da2afd to your computer and use it in GitHub Desktop.
Save vamsee9/d5571d4f4ea79436de8d7abc62da2afd to your computer and use it in GitHub Desktop.
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/camera_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="32dp"
android:layout_marginBottom="32dp"
android:clickable="true"
android:focusable="true"
app:layout_constraintBottom_toTopOf="@+id/main_add_fab"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/ic_outline_camera_alt_24" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/import_image_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="32dp"
android:layout_marginBottom="32dp"
android:clickable="true"
android:focusable="true"
app:layout_constraintBottom_toTopOf="@+id/camera_fab"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/ic_outline_folder_24" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/main_add_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="32dp"
android:layout_marginBottom="32dp"
android:clickable="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/ic_baseline_add_24"
android:focusable="true" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment