changed all displays of avatars to be center crop instead of fitXY
This commit is contained in:
parent
0cda7f7819
commit
9dec8e761e
|
@ -27,7 +27,7 @@
|
||||||
android:layout_width="72dp"
|
android:layout_width="72dp"
|
||||||
android:layout_height="72dp"
|
android:layout_height="72dp"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:scaleType="fitXY"/>
|
android:scaleType="centerCrop"/>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/details_jidbox"
|
android:id="@+id/details_jidbox"
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
android:layout_width="48dp"
|
android:layout_width="48dp"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
|
android:scaleType="centerCrop"
|
||||||
android:src="@drawable/ic_profile">
|
android:src="@drawable/ic_profile">
|
||||||
</ImageView>
|
</ImageView>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
android:id="@+id/conversation_image"
|
android:id="@+id/conversation_image"
|
||||||
android:layout_width="56dp"
|
android:layout_width="56dp"
|
||||||
android:layout_height="56dp"
|
android:layout_height="56dp"
|
||||||
android:layout_alignParentLeft="true"/>
|
android:layout_alignParentLeft="true"
|
||||||
|
android:scaleType="centerCrop"/>
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:layout_toRightOf="@+id/conversation_image"
|
android:layout_toRightOf="@+id/conversation_image"
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:adjustViewBounds="true"
|
android:adjustViewBounds="true"
|
||||||
android:paddingBottom="2dp"
|
android:paddingBottom="2dp"
|
||||||
android:scaleType="fitXY"
|
android:scaleType="centerCrop"
|
||||||
android:background="@color/primarytext"
|
android:background="@color/primarytext"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:adjustViewBounds="true"
|
android:adjustViewBounds="true"
|
||||||
android:paddingBottom="2dp"
|
android:paddingBottom="2dp"
|
||||||
android:scaleType="fitXY"
|
android:scaleType="centerCrop"
|
||||||
android:background="@color/primarytext"
|
android:background="@color/primarytext"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue