mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
ac0a1c0bc1
1) Fix i18n and layout naming. 2) Error header for message details. 3) Add back button to message details. // FREEBIE Closes #2593
90 lines
3.9 KiB
XML
90 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<org.thoughtcrime.securesms.MessageRecipientListItem
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:gravity="center_vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.makeramen.RoundedImageView
|
|
android:id="@+id/contact_photo_image"
|
|
android:foreground="@drawable/contact_photo_background"
|
|
app:riv_oval="true"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginRight="10dp"
|
|
android:cropToPadding="true"
|
|
android:scaleType="centerCrop"
|
|
tools:src="@drawable/ic_contact_picture"
|
|
android:contentDescription="@string/SingleContactSelectionActivity_contact_photo" />
|
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dip"
|
|
android:layout_marginBottom="4dip"
|
|
android:layout_toRightOf="@id/contact_photo_image"
|
|
android:layout_centerVertical="true"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView android:id="@+id/from"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="?attr/conversation_list_item_contact_color"
|
|
android:singleLine="true"
|
|
android:gravity="center_vertical"
|
|
android:layout_gravity="center_vertical"
|
|
tools:text="Jules Bonnot"
|
|
android:ellipsize="marquee" />
|
|
|
|
<TextView android:id="@+id/error_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#FFF44336"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"
|
|
tools:text="New identity" />
|
|
|
|
</LinearLayout>
|
|
|
|
<Button android:id="@+id/conflict_button"
|
|
android:layout_width="60sp"
|
|
android:layout_height="38sp"
|
|
style="@style/ErrorButton"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:drawableLeft="@drawable/ic_error_white_18dp"
|
|
android:text="@string/message_recipients_list_item__verify"
|
|
android:visibility="gone"/>
|
|
|
|
<Button android:id="@+id/resend_button"
|
|
android:layout_width="85sp"
|
|
android:layout_height="38sp"
|
|
style="@style/InfoButton"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:drawableLeft="@drawable/ic_refresh_white_18dp"
|
|
android:text="@string/message_recipients_list_item__resend"
|
|
android:visibility="gone"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</org.thoughtcrime.securesms.MessageRecipientListItem>
|