diff options
| author | Keith Packard <keithp@keithp.com> | 2015-06-06 20:37:53 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2015-06-06 20:37:53 -0700 | 
| commit | 6cb7d76c3fbe32b442713e358654d07b2506897e (patch) | |
| tree | deff88041d5798babd623bff050998dfe37bb1b0 | |
| parent | 78df1d5213c402780fa2ce7e062c64cf5a01c45f (diff) | |
altosdroid: Resource changes needed for multi-tracker mode
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | altosdroid/res/menu/option_menu.xml | 6 | ||||
| -rw-r--r-- | altosdroid/res/values/Colors.xml | 20 | ||||
| -rw-r--r-- | altosdroid/res/values/strings.xml | 2 | 
3 files changed, 28 insertions, 0 deletions
diff --git a/altosdroid/res/menu/option_menu.xml b/altosdroid/res/menu/option_menu.xml index 1b3142a8..9cb57dfc 100644 --- a/altosdroid/res/menu/option_menu.xml +++ b/altosdroid/res/menu/option_menu.xml @@ -37,6 +37,12 @@      <item android:id="@+id/map_type"  	  android:icon="@android:drawable/ic_menu_mapmode"  	  android:title="@string/map_type" /> +    <item android:id="@+id/select_tracker" +	  android:icon="@android:drawable/ic_menu_view" +	  android:title="@string/select_tracker"/> +    <item android:id="@+id/delete_track" +	  android:icon="@android:drawable/ic_notification_clear_all" +	  android:title="@string/delete_track"/>      <item android:id="@+id/quit"            android:icon="@android:drawable/ic_menu_close_clear_cancel"            android:title="@string/quit" /> diff --git a/altosdroid/res/values/Colors.xml b/altosdroid/res/values/Colors.xml new file mode 100644 index 00000000..055c6df2 --- /dev/null +++ b/altosdroid/res/values/Colors.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +	 Copyright © 2015 Keith Packard <keithp@keithp.com> + +	 This program is free software; you can redistribute it and/or modify +	 it under the terms of the GNU General Public License as published by +	 the Free Software Foundation; version 2 of the License. + +	 This program is distributed in the hope that it will be useful, but +	 WITHOUT ANY WARRANTY; without even the implied warranty of +	 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU +	 General Public License for more details. + +	 You should have received a copy of the GNU General Public License along +	 with this program; if not, write to the Free Software Foundation, Inc., +	 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +--> +<resources> +  <color name="old_color">#ffff4040</color> +</resources> diff --git a/altosdroid/res/values/strings.xml b/altosdroid/res/values/strings.xml index 1af0dbb7..79a77ba9 100644 --- a/altosdroid/res/values/strings.xml +++ b/altosdroid/res/values/strings.xml @@ -33,6 +33,8 @@  	<string name="select_rate">Select data rate</string>  	<string name="change_units">Change units</string>  	<string name="preload_maps">Load Maps</string> +	<string name="select_tracker">Select Tracker</string> +	<string name="delete_track">Delete Track</string>  	<string name="map_type">Map Type</string>  	<!-- MapTypeActivity -->  | 
