blob: cda531a2ac60199592928ef43fddfaee5ba04635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>
|