You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.2 KiB
XML
85 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="@dimen/massive_spacing"
|
|
android:paddingVertical="@dimen/medium_spacing">
|
|
|
|
<TextView
|
|
android:id="@+id/dateBreakTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:gravity="center"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/very_small_font_size"
|
|
android:textStyle="bold"
|
|
tools:text="@tools:sample/date/hhmm" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iconImageView"
|
|
android:layout_width="12dp"
|
|
android:layout_height="12dp"
|
|
android:layout_marginBottom="@dimen/small_spacing"
|
|
android:visibility="gone"
|
|
app:tint="?android:textColorPrimary"
|
|
tools:src="@drawable/ic_timer"
|
|
tools:visibility="visible"/>
|
|
|
|
<org.thoughtcrime.securesms.conversation.v2.components.ExpirationTimerView
|
|
android:id="@+id/expirationTimerView"
|
|
android:layout_width="12dp"
|
|
android:layout_height="12dp"
|
|
android:layout_marginBottom="@dimen/small_spacing"
|
|
android:visibility="gone"
|
|
app:tint="?android:textColorPrimary"
|
|
tools:src="@drawable/ic_timer"
|
|
tools:visibility="visible"/>
|
|
|
|
<TextView
|
|
android:id="@+id/textView"
|
|
android:contentDescription="@string/AccessibilityId_control_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/very_small_font_size"
|
|
android:textStyle="bold"
|
|
tools:text="You disabled disappearing messages" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/call_view"
|
|
style="@style/CallMessage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/call_text_view"
|
|
android:textColor="?message_received_text_color"
|
|
android:textAlignment="center"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
tools:text="You missed a call"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:drawableTint="?message_received_text_color"
|
|
app:drawableStartCompat="@drawable/ic_missed_call" />
|
|
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/followSetting"
|
|
style="@style/Widget.Session.Button.Common.Borderless"
|
|
android:layout_marginTop="4dp"
|
|
android:textColor="@color/accent_green"
|
|
android:textSize="@dimen/very_small_font_size"
|
|
android:text="@string/MessageRecord_follow_setting"
|
|
android:contentDescription="@string/AccessibilityId_follow_setting"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout> |