1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="6dp"
- android:background="@color/white">
- <ImageView
- android:id="@+id/img_view"
- android:layout_width="85dp"
- android:layout_height="85dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="5dp"
- android:layout_marginTop="5dp"
- android:scaleType="fitXY"
- android:layout_marginRight="5dp" />
- </RelativeLayout>
|