Skip to content

Instantly share code, notes, and snippets.

@swahaniroy
Created July 22, 2021 12:14
Show Gist options
  • Select an option

  • Save swahaniroy/1ce6c0dd43888fbb9267baadc40e75b3 to your computer and use it in GitHub Desktop.

Select an option

Save swahaniroy/1ce6c0dd43888fbb9267baadc40e75b3 to your computer and use it in GitHub Desktop.
Conversation Screen button for the user to click and initiate a chat
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_marginEnd="32dp"
android:layout_marginBottom="32dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add"
android:layout_gravity="bottom|end"
app:elevation="6dp"
android:onClick="newChatTapped"
app:pressedTranslationZ="12dp"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment