mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
db9656c70c
1) No more blue/green for outgoing messages. Just lock or no lock. 2) Use 9-patches instead of shapes for better bubble performance. 3) Use tinting rather than different colored assets. 4) Change outgoing status indicators so that they don't change width of the bubble as they update. 5) Switch to using ..., check, double-check for pending, sent, delivered rather than using bubble tone to indicate pending. // FREEBIE
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<org.thoughtcrime.securesms.ConversationItem
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/conversation_item"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="8dp">
|
|
|
|
<TextView android:id="@+id/conversation_item_body"
|
|
android:autoLink="all"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:linksClickable="true"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:gravity="center"
|
|
android:textStyle="italic"
|
|
android:textColor="?attr/conversation_group_member_name"
|
|
android:textSize="14sp" />
|
|
<TextView android:id="@+id/conversation_item_date"
|
|
android:autoLink="all"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:linksClickable="false"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:layout_gravity="right"
|
|
android:fontFamily="sans-serif-light"
|
|
android:textColor="?conversation_item_sent_text_secondary_color"
|
|
android:text="date"
|
|
android:layout_marginBottom="8dp"
|
|
android:visibility="gone"/>
|
|
|
|
</org.thoughtcrime.securesms.ConversationItem>
|