diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2015-07-19 22:34:47 +0200 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2015-07-20 16:02:18 +0200 |
commit | dcf9117451877b1add21543910224b2120367393 (patch) | |
tree | d11396e5deb8816ec848644c833705225b21dc19 /src/main/res/layout/message_sent.xml | |
parent | e6cb12dfe414497b4317820497985c110cb81864 (diff) |
changed sizes of avatars and padding in new message bubbles
Diffstat (limited to '')
-rw-r--r-- | src/main/res/layout/message_sent.xml | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/src/main/res/layout/message_sent.xml b/src/main/res/layout/message_sent.xml index 15969d82..96e7808f 100644 --- a/src/main/res/layout/message_sent.xml +++ b/src/main/res/layout/message_sent.xml @@ -3,21 +3,21 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" - android:paddingBottom="0dp" - android:paddingLeft="4dp" - android:paddingRight="@dimen/activity_vertical_margin" - android:paddingTop="0dp"> + android:paddingBottom="3dp" + android:paddingLeft="8dp" + android:paddingRight="8dp" + android:paddingTop="3dp"> <ImageView android:id="@+id/message_photo" - android:layout_width="36dp" - android:layout_height="40dp" - android:paddingBottom="4dp" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:scaleType="fitXY" + android:paddingBottom="3dp" + android:src="@drawable/ic_profile" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" - android:layout_marginLeft="@dimen/message_profile_image_gap" - android:scaleType="fitXY" - android:src="@drawable/ic_profile" /> + android:layout_alignParentEnd="true"/> <LinearLayout android:id="@+id/message_box" @@ -26,14 +26,16 @@ android:layout_alignParentBottom="true" android:layout_toLeftOf="@+id/message_photo" android:background="@drawable/message_bubble_sent" - android:minHeight="48dp" + android:minHeight="53dp" + android:layout_marginLeft="-4dp" android:longClickable="true"> <LinearLayout android:layout_width="wrap_content" android:layout_height="fill_parent" android:gravity="center_vertical" - android:orientation="vertical"> + android:orientation="vertical" + android:padding="2dp"> <ImageView android:id="@+id/message_image" |