1<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2    xmlns:tools="http://schemas.android.com/tools"
3    android:layout_width="match_parent"
4    android:layout_height="match_parent"
5    tools:context="com.google.experiments.client.pavelm.fakeclusterux.CarInfoFragment">
6
7    <TextView
8        android:layout_width="wrap_content"
9        android:layout_height="wrap_content"
10        android:text="32 psi"
11        android:layout_gravity="center_horizontal"
12        android:layout_marginLeft="-80dp"
13        />
14
15    <TextView
16        android:layout_width="wrap_content"
17        android:layout_height="wrap_content"
18        android:text="33 psi"
19        android:layout_gravity="center_horizontal"
20        android:layout_marginLeft="80dp"
21        />
22
23    <TextView
24        android:layout_width="wrap_content"
25        android:layout_height="wrap_content"
26        android:text="33 psi"
27        android:layout_gravity="center_horizontal|bottom"
28        android:layout_marginLeft="80dp"
29        />
30
31    <TextView
32        android:layout_width="wrap_content"
33        android:layout_height="wrap_content"
34        android:text="31 psi"
35        android:layout_gravity="center_horizontal|bottom"
36        android:layout_marginLeft="-80dp"
37        />
38
39    <ImageView
40        android:layout_width="fill_parent"
41        android:layout_height="fill_parent"
42        android:src="@drawable/car_top_view"
43        android:padding="30dp"
44        android:scaleType="fitCenter" />
45
46</FrameLayout>
47