8aa13953ee
device's accelerometers).
30 lines
993 B
XML
30 lines
993 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<ToggleButton
|
|
android:id="@+id/drive"
|
|
android:layout_width="150dp"
|
|
android:layout_height="150dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@+id/drive"
|
|
android:layout_centerHorizontal="true"
|
|
android:text="@string/drive"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
<Button
|
|
android:id="@+id/exit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:text="Exit" />
|
|
|
|
</RelativeLayout>
|