2015-06-09 14:37:20 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<org.thoughtcrime.securesms.ConversationTitleView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-06-22 16:52:46 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-06-09 14:37:20 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2015-06-22 16:52:46 +00:00
|
|
|
android:transitionName="recipient_name"
|
2015-06-09 14:37:20 +00:00
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-06-22 16:52:46 +00:00
|
|
|
style="@style/TextSecure.TitleTextStyle"
|
|
|
|
tools:ignore="UnusedAttribute"/>
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
<TextView android:id="@+id/subtitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
style="@style/TextSecure.SubtitleTextStyle"/>
|
|
|
|
|
|
|
|
</org.thoughtcrime.securesms.ConversationTitleView>
|