Log calls to conversations
// FREEBIE
BIN
res/drawable-hdpi/ic_call_made_grey600_24dp.png
Normal file
After Width: | Height: | Size: 284 B |
BIN
res/drawable-hdpi/ic_call_missed_grey600_24dp.png
Normal file
After Width: | Height: | Size: 311 B |
BIN
res/drawable-hdpi/ic_call_received_grey600_24dp.png
Normal file
After Width: | Height: | Size: 309 B |
BIN
res/drawable-mdpi/ic_call_made_grey600_24dp.png
Normal file
After Width: | Height: | Size: 227 B |
BIN
res/drawable-mdpi/ic_call_missed_grey600_24dp.png
Normal file
After Width: | Height: | Size: 249 B |
BIN
res/drawable-mdpi/ic_call_received_grey600_24dp.png
Normal file
After Width: | Height: | Size: 230 B |
BIN
res/drawable-xhdpi/ic_call_made_grey600_24dp.png
Normal file
After Width: | Height: | Size: 308 B |
BIN
res/drawable-xhdpi/ic_call_missed_grey600_24dp.png
Normal file
After Width: | Height: | Size: 359 B |
BIN
res/drawable-xhdpi/ic_call_received_grey600_24dp.png
Normal file
After Width: | Height: | Size: 322 B |
BIN
res/drawable-xxhdpi/ic_call_made_grey600_24dp.png
Normal file
After Width: | Height: | Size: 386 B |
BIN
res/drawable-xxhdpi/ic_call_missed_grey600_24dp.png
Normal file
After Width: | Height: | Size: 449 B |
BIN
res/drawable-xxhdpi/ic_call_received_grey600_24dp.png
Normal file
After Width: | Height: | Size: 384 B |
@@ -1,21 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<org.thoughtcrime.securesms.ConversationUpdateItem
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/conversation_update_item"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:padding="20dp">
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/conversation_update_item"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center"
|
||||
android:padding="20dp">
|
||||
|
||||
<LinearLayout android:orientation="horizontal"
|
||||
<ImageView android:id="@+id/conversation_update_icon"
|
||||
android:layout_marginRight="7dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:src="@drawable/ic_call_received_grey600_24dp" />
|
||||
|
||||
<LinearLayout android:orientation="vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<ImageView android:id="@+id/conversation_update_icon"
|
||||
android:layout_marginRight="7dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<TextView android:id="@+id/conversation_update_body"
|
||||
android:autoLink="all"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -23,8 +27,25 @@
|
||||
android:linksClickable="true"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textStyle="italic"
|
||||
android:textColor="?attr/conversation_group_member_name"/>
|
||||
android:textColor="?attr/conversation_group_member_name"
|
||||
tools:text="Sasha called you"/>
|
||||
|
||||
<TextView android:id="@+id/conversation_update_date"
|
||||
android:autoLink="none"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="15sp"
|
||||
android:linksClickable="false"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:layout_gravity="center"
|
||||
android:fontFamily="sans-serif-light"
|
||||
android:textColor="?conversation_item_sent_text_secondary_color"
|
||||
android:textSize="@dimen/conversation_item_date_text_size"
|
||||
android:paddingTop="1dip"
|
||||
android:paddingBottom="2dp"
|
||||
tools:text="30 min ago" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</org.thoughtcrime.securesms.ConversationUpdateItem>
|
||||
|