2013-07-15 22:51:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-07-16 01:47:15 +02:00
|
|
|
android:layout_width="wrap_content"
|
2013-07-15 22:51:03 +02:00
|
|
|
android:layout_height="match_parent"
|
2013-07-16 01:47:15 +02:00
|
|
|
android:orientation="horizontal" android:layout_gravity="center_horizontal" android:gravity="center_horizontal">
|
2013-07-15 22:51:03 +02:00
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
android:id="@+id/DefaultButton"
|
|
|
|
android:layout_width="64dp"
|
|
|
|
android:layout_height="64dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:contentDescription="@string/app_mode_default"
|
|
|
|
android:textOff=""
|
|
|
|
android:textOn="" />
|
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
android:id="@+id/CarButton"
|
|
|
|
android:layout_width="64dp"
|
|
|
|
android:layout_height="64dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:contentDescription="@string/app_mode_car"
|
|
|
|
android:textOff=""
|
|
|
|
android:textOn="" />
|
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
android:id="@+id/BicycleButton"
|
|
|
|
android:layout_width="64dp"
|
|
|
|
android:layout_height="64dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:contentDescription="@string/app_mode_bicycle"
|
|
|
|
android:textOff=""
|
|
|
|
android:textOn="" />
|
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
android:id="@+id/PedestrianButton"
|
|
|
|
android:layout_width="64dp"
|
|
|
|
android:layout_height="64dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:contentDescription="@string/app_mode_pedestrian"
|
|
|
|
android:textOff=""
|
|
|
|
android:textOn="" />
|
|
|
|
|
|
|
|
</LinearLayout>
|