altosdroid: Switch from custom title to standard Holo theme
[fw/altos] / altosdroid / res / layout / map_type.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3   Copyright © 2015 Keith Packard <keithp@keithp.com>
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation; version 2 of the License.
8
9   This program is distributed in the hope that it will be useful, but
10   WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   General Public License for more details.
13
14   You should have received a copy of the GNU General Public License along
15   with this program; if not, write to the Free Software Foundation, Inc.,
16   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17 -->
18 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19     android:orientation="vertical"
20     android:layout_width="match_parent"
21     android:layout_height="match_parent"
22     >
23   <Button android:id="@+id/map_type_hybrid"
24            android:layout_width="fill_parent"
25            android:layout_height="wrap_content"
26            android:text="@string/preload_hybrid"
27            android:onClick="selectType"
28            />
29   <Button android:id="@+id/map_type_satellite"
30            android:layout_width="fill_parent"
31            android:layout_height="wrap_content"
32            android:text="@string/preload_satellite"
33            android:onClick="selectType"
34            />
35   <Button android:id="@+id/map_type_roadmap"
36            android:layout_width="fill_parent"
37            android:layout_height="wrap_content"
38            android:text="@string/preload_roadmap"
39            android:onClick="selectType"
40            />
41   <Button android:id="@+id/map_type_terrain"
42            android:layout_width="fill_parent"
43            android:layout_height="wrap_content"
44            android:text="@string/preload_terrain"
45            android:onClick="selectType"
46            />
47 </LinearLayout>