2018-04-26 17:03:54 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-07 15:43:36 -03:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-04-26 17:03:54 -07:00
|
|
|
android:layout_width="match_parent"
|
2019-10-07 15:43:36 -03:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2018-04-26 17:03:54 -07:00
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-04-26 17:03:54 -07:00
|
|
|
android:id="@+id/contact_share_edit_list"
|
|
|
|
android:layout_width="match_parent"
|
2018-07-06 09:52:28 -07:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingBottom="80dp"
|
|
|
|
android:clipToPadding="false"/>
|
2018-04-26 17:03:54 -07:00
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2018-04-26 17:03:54 -07:00
|
|
|
android:id="@+id/contact_share_edit_send"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|bottom"
|
2019-10-07 15:43:36 -03:00
|
|
|
android:tint="@color/white"
|
|
|
|
app:srcCompat="@drawable/ic_send_lock_24"
|
2018-04-26 17:03:54 -07:00
|
|
|
android:layout_margin="@dimen/floating_action_button_margin"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|