2018-04-26 17:03:54 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-07-14 14:47:00 -03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-09-13 11:16:01 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-04-26 17:03:54 -07:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:layout_height="wrap_content"
|
2022-09-13 11:16:01 -03:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:viewBindingIgnore="true">
|
2022-07-14 14:47:00 -03:00
|
|
|
|
2018-04-26 17:03:54 -07:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="56dp"
|
|
|
|
android:orientation="horizontal">
|
2018-04-26 17:03:54 -07:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/editable_contact_name"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:layout_marginStart="72dp"
|
2018-04-26 17:03:54 -07:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:maxLines="2"
|
|
|
|
android:textAppearance="@style/Signal.Text.BodyLarge"
|
|
|
|
tools:text="Peter Parker" />
|
2018-04-26 17:03:54 -07:00
|
|
|
|
2018-05-10 11:31:38 -07:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/editable_contact_name_edit_button"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_marginEnd="12dp"
|
2018-05-10 11:31:38 -07:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2022-07-14 14:47:00 -03:00
|
|
|
android:contentDescription="@string/ContactShareEditActivity__edit_name"
|
|
|
|
android:scaleType="centerInside"
|
2022-09-13 11:16:01 -03:00
|
|
|
app:srcCompat="@drawable/ic_compose_24"
|
|
|
|
app:tint="@color/signal_colorOnSurface" />
|
2018-05-10 11:31:38 -07:00
|
|
|
|
2018-04-26 17:03:54 -07:00
|
|
|
</LinearLayout>
|
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-04-26 17:03:54 -07:00
|
|
|
android:id="@+id/editable_contact_fields"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|