diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2015-07-21 02:21:34 +0200 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2015-07-21 02:21:34 +0200 |
commit | 74e05023b4f884b31876357c013513c51aff5369 (patch) | |
tree | b3ced8d3f301a3520599992eca62cb841a18aaa7 /src/main/res/layout/message_sent.xml | |
parent | b7ff2c34614a92f3893732338f75cb0f7fe77d32 (diff) |
very subtle
Diffstat (limited to '')
-rw-r--r-- | src/main/res/layout/message_sent.xml | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/main/res/layout/message_sent.xml b/src/main/res/layout/message_sent.xml index 96e7808f..24750c9b 100644 --- a/src/main/res/layout/message_sent.xml +++ b/src/main/res/layout/message_sent.xml @@ -1,14 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" - android:paddingBottom="3dp" - android:paddingLeft="8dp" - android:paddingRight="8dp" - android:paddingTop="3dp"> + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:paddingBottom="3dp" + android:paddingLeft="8dp" + android:paddingRight="8dp" + android:paddingTop="3dp"> - <ImageView + <com.makeramen.roundedimageview.RoundedImageView android:id="@+id/message_photo" android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -17,7 +18,8 @@ android:src="@drawable/ic_profile" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" - android:layout_alignParentEnd="true"/> + android:layout_alignParentEnd="true" + app:riv_corner_radius="2dp" /> <LinearLayout android:id="@+id/message_box" |