fixed own avatar not being square in message view
This commit is contained in:
parent
516b6dcc1f
commit
11f67ac1ae
|
@ -9,23 +9,36 @@
|
||||||
android:paddingRight="8dp"
|
android:paddingRight="8dp"
|
||||||
android:paddingTop="3dp">
|
android:paddingTop="3dp">
|
||||||
|
|
||||||
<com.makeramen.roundedimageview.RoundedImageView
|
|
||||||
android:id="@+id/message_photo"
|
|
||||||
android:layout_width="48dp"
|
<LinearLayout
|
||||||
android:layout_height="48dp"
|
android:id="@+id/message_photo_box"
|
||||||
android:scaleType="fitXY"
|
android:orientation="vertical"
|
||||||
android:paddingBottom="3dp"
|
|
||||||
android:layout_alignParentBottom="true"
|
|
||||||
android:layout_alignParentRight="true"
|
|
||||||
android:layout_alignParentEnd="true"
|
android:layout_alignParentEnd="true"
|
||||||
app:riv_corner_radius="2dp" />
|
android:layout_alignParentBottom="true"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||||||
|
android:id="@+id/message_photo"
|
||||||
|
android:layout_width="48dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:scaleType="fitXY"
|
||||||
|
app:riv_corner_radius="2dp" />
|
||||||
|
<View
|
||||||
|
android:id="@+id/placeholder"
|
||||||
|
android:layout_height="3dp"
|
||||||
|
android:layout_width="48dp"
|
||||||
|
/>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/message_box"
|
android:id="@+id/message_box"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:layout_toLeftOf="@+id/message_photo"
|
android:layout_toLeftOf="@+id/message_photo_box"
|
||||||
android:background="?attr/message_bubble_sent"
|
android:background="?attr/message_bubble_sent"
|
||||||
android:minHeight="53dp"
|
android:minHeight="53dp"
|
||||||
android:layout_marginLeft="-4dp"
|
android:layout_marginLeft="-4dp"
|
||||||
|
|
Loading…
Reference in a new issue