Signal-Android/app/src/main/res/layout/activity_contact_share_edit.xml

40 lines
1.8 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<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"
android:layout_width="match_parent"
2022-06-17 13:45:44 -03:00
android:layout_height="match_parent">
<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
android:id="@+id/contact_share_edit_list"
android:layout_width="match_parent"
android:layout_height="0dp"
2022-06-17 13:45:44 -03:00
android:clipToPadding="false"
android:paddingBottom="80dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar" />
2022-06-17 13:45:44 -03:00
<ImageView
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"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/ic_send_lock_24"
2022-06-17 13:45:44 -03:00
app:tint="@color/white" />
</androidx.constraintlayout.widget.ConstraintLayout>