NekoX/TMessagesProj/src/main/res/layout/chat_incoming_text_layout.xml

40 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="1dp"
android:paddingTop="1dp"
android:layout_gravity="top">
<org.telegram.ui.Views.MessageLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginRight="40dp"
android:id="@+id/message_layout"
android:layout_gravity="top">
<org.telegram.ui.Views.TightTextView
android:id="@+id/chat_message_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp"
android:layout_marginBottom="8dp"
android:autoLink="web|email"
android:linksClickable="false"
android:layout_gravity="top"
android:textColor="#000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/chat_time_text"
android:textColor="#a1aab3"
android:textSize="12dp"
android:textStyle="italic"
android:paddingBottom="5dp"
android:layout_gravity="bottom|right"/>
</org.telegram.ui.Views.MessageLayout>
</LinearLayout>