diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2018-04-26 13:34:40 +0200 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2018-04-26 13:34:40 +0200 |
commit | 9ecffe7854da65b39ae13b18be7da425777f1ee8 (patch) | |
tree | 431c18a13684d54c656c935ef4fdfcc93e0e81fc /app/src/main/res/layout/atlas_grid_item.xml | |
parent | 4de306375a33b2abd067e65658a46d45cba5e56e (diff) |
Riced the app, added Atlas and About views
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 |