mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-15 05:35:07 -05:00
13 lines
422 B
XML
13 lines
422 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="100dp" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/grid_item_img"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="150dp"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:src="@drawable/peacock" />
|
||
|
|
||
|
</FrameLayout>
|