diff options
author | iNPUTmice <daniel@gultsch.de> | 2014-09-20 22:44:50 +0200 |
---|---|---|
committer | iNPUTmice <daniel@gultsch.de> | 2014-09-20 22:44:50 +0200 |
commit | 34de697e7e241886c2a2652a827b7be93086efa5 (patch) | |
tree | 77be835e43a13be7c04b1e6fc1744fadefc933db /res/layout/message_sent.xml | |
parent | d806923d571c2ad8f12446df32e251195cb13db8 (diff) |
changed security indicator and changed opacity of received tick to match the text
Diffstat (limited to 'res/layout/message_sent.xml')
-rw-r--r-- | res/layout/message_sent.xml | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/res/layout/message_sent.xml b/res/layout/message_sent.xml index cb35093d..9167012a 100644 --- a/res/layout/message_sent.xml +++ b/res/layout/message_sent.xml @@ -63,25 +63,27 @@ android:textColor="@color/secondarytext" android:textSize="?attr/TextSizeInfo" /> - <ImageView - android:id="@+id/indicator_received" + <ImageView + android:id="@+id/security_indicator" android:layout_width="?attr/TextSizeInfo" android:layout_height="?attr/TextSizeInfo" android:layout_gravity="center_vertical" - android:layout_marginLeft="6sp" - android:layout_marginTop="2sp" android:gravity="center_vertical" - android:src="@drawable/ic_received_indicator" /> - + android:src="@drawable/ic_secure_indicator" + android:layout_marginLeft="4sp" + android:alpha="0.54"/> + <ImageView - android:id="@+id/security_indicator" + android:id="@+id/indicator_received" android:layout_width="?attr/TextSizeInfo" android:layout_height="?attr/TextSizeInfo" android:layout_gravity="center_vertical" - android:layout_marginLeft="6sp" - android:layout_marginTop="2sp" android:gravity="center_vertical" - android:src="@drawable/ic_indicator" /> + android:src="@drawable/ic_received_indicator" + android:layout_marginLeft="4sp" + android:alpha="0.54"/> + + </LinearLayout> </LinearLayout> </LinearLayout> |