47 lines
1.5 KiB
XML
47 lines
1.5 KiB
XML
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context="com.google.experiments.client.pavelm.fakeclusterux.CarInfoFragment">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="32 psi"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginLeft="-80dp"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="33 psi"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginLeft="80dp"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="33 psi"
|
||
|
android:layout_gravity="center_horizontal|bottom"
|
||
|
android:layout_marginLeft="80dp"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="31 psi"
|
||
|
android:layout_gravity="center_horizontal|bottom"
|
||
|
android:layout_marginLeft="-80dp"
|
||
|
/>
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:src="@drawable/car_top_view"
|
||
|
android:padding="30dp"
|
||
|
android:scaleType="fitCenter" />
|
||
|
|
||
|
</FrameLayout>
|