2018-04-26 17:03:54 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-07-14 14:47:00 -03:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-06-17 13:45:44 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-04-26 17:03:54 -07:00
|
|
|
android:layout_width="match_parent"
|
2022-06-17 13:45:44 -03:00
|
|
|
android:layout_height="match_parent">
|
2018-04-26 17:03:54 -07:00
|
|
|
|
2022-07-14 14:47:00 -03:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/signal_m3_toolbar_height"
|
|
|
|
android:minHeight="@dimen/signal_m3_toolbar_height"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
|
|
|
app:title="@string/ContactShareEditActivity__send_contact"
|
|
|
|
app:titleTextAppearance="@style/Signal.Text.TitleLarge" />
|
|
|
|
|
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"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:layout_height="0dp"
|
2022-06-17 13:45:44 -03:00
|
|
|
android:clipToPadding="false"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:paddingBottom="80dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
2018-04-26 17:03:54 -07:00
|
|
|
|
2022-06-17 13:45:44 -03:00
|
|
|
<ImageView
|
2018-04-26 17:03:54 -07:00
|
|
|
android:id="@+id/contact_share_edit_send"
|
2022-06-17 13:45:44 -03:00
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_margin="@dimen/floating_action_button_margin"
|
|
|
|
android:background="@drawable/circle_tintable"
|
|
|
|
android:contentDescription="@string/conversation_activity__send"
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
app:backgroundTint="@color/signal_colorPrimary"
|
2022-07-14 14:47:00 -03:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-10-07 15:43:36 -03:00
|
|
|
app:srcCompat="@drawable/ic_send_lock_24"
|
2022-06-17 13:45:44 -03:00
|
|
|
app:tint="@color/white" />
|
2018-04-26 17:03:54 -07:00
|
|
|
|
2022-07-14 14:47:00 -03:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|