diff options
Diffstat (limited to 'app/src/main/res/layout/atlas_grid_item.xml')
-rw-r--r-- | app/src/main/res/layout/atlas_grid_item.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/main/res/layout/atlas_grid_item.xml b/app/src/main/res/layout/atlas_grid_item.xml new file mode 100644 index 0000000..cda531a --- /dev/null +++ b/app/src/main/res/layout/atlas_grid_item.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:padding="8dp"> + + <ImageView + android:id="@+id/atlas_photo" + android:layout_width="100dp" + android:layout_height="100dp" + android:layout_alignParentStart="true" + android:layout_alignParentTop="true" + app:srcCompat="@drawable/common_google_signin_btn_icon_dark" + android:layout_alignParentLeft="true" /> + + <TextView + android:id="@+id/atlas_name" + android:layout_width="100dp" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + android:layout_alignStart="@+id/atlas_photo" + android:layout_marginTop="105dp" + android:text="TextView" + android:layout_alignLeft="@+id/atlas_photo" /> +</RelativeLayout>
\ No newline at end of file |