Move java source, and resources to new paths for gradle
[fw/altos] / altosdroid / app / src / main / 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; either version 2 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful, but
11   WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   General Public License for more details.
14
15   You should have received a copy of the GNU General Public License along
16   with this program; if not, write to the Free Software Foundation, Inc.,
17   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 -->
19 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20     android:orientation="vertical"
21     android:layout_width="match_parent"
22     android:layout_height="match_parent"
23     >
24   <Button android:id="@+id/map_type_hybrid"
25            android:layout_width="fill_parent"
26            android:layout_height="wrap_content"
27            android:text="@string/preload_hybrid"
28            android:onClick="selectType"
29            />
30   <Button android:id="@+id/map_type_satellite"
31            android:layout_width="fill_parent"
32            android:layout_height="wrap_content"
33            android:text="@string/preload_satellite"
34            android:onClick="selectType"
35            />
36   <Button android:id="@+id/map_type_roadmap"
37            android:layout_width="fill_parent"
38            android:layout_height="wrap_content"
39            android:text="@string/preload_roadmap"
40            android:onClick="selectType"
41            />
42   <Button android:id="@+id/map_type_terrain"
43            android:layout_width="fill_parent"
44            android:layout_height="wrap_content"
45            android:text="@string/preload_terrain"
46            android:onClick="selectType"
47            />
48 </LinearLayout>