summaryrefslogtreecommitdiff
path: root/altosdroid/res
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-08-30 13:19:41 +1200
committerMike Beattie <mike@ethernal.org>2012-08-30 13:19:41 +1200
commitc32325af6605e78c1d1147d466f3ea12ce94124a (patch)
tree948615f7f020b08f3b93f7bb7adb6ae7824d3e3f /altosdroid/res
parent8ffa4f9a474026f5a6523b26919a78565e0ed74c (diff)
altosdroid: rename azimuth/altitude to elevation/height respectively.
(Matches altoslib, altosui, altos) Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altosdroid/res')
-rw-r--r--altosdroid/res/layout/altosdroid.xml22
-rw-r--r--altosdroid/res/values/strings.xml4
2 files changed, 13 insertions, 13 deletions
diff --git a/altosdroid/res/layout/altosdroid.xml b/altosdroid/res/layout/altosdroid.xml
index 0392ba01..e4b4f605 100644
--- a/altosdroid/res/layout/altosdroid.xml
+++ b/altosdroid/res/layout/altosdroid.xml
@@ -150,7 +150,7 @@
</RelativeLayout>
<RelativeLayout
- android:id="@+id/altitude_container"
+ android:id="@+id/height_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
@@ -158,23 +158,23 @@
android:layout_toRightOf="@id/strut" >
<TextView
- android:id="@+id/altitude_label"
+ android:id="@+id/height_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="@string/altitude_label" />
+ android:text="@string/height_label" />
<TextView
- android:id="@+id/altitude_value"
+ android:id="@+id/height_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_below="@+id/altitude_label"
android:layout_alignParentRight="true"
+ android:layout_below="@+id/height_label"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
<RelativeLayout
- android:id="@+id/azimuth_container"
+ android:id="@+id/elevation_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
@@ -182,17 +182,17 @@
android:layout_toLeftOf="@id/strut" >
<TextView
- android:id="@+id/azimuth_label"
+ android:id="@+id/elevation_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="@string/azimuth_label" />
+ android:text="@string/elevation_label" />
<TextView
- android:id="@+id/azimuth_value"
+ android:id="@+id/elevation_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_below="@+id/azimuth_label"
android:layout_alignParentRight="true"
+ android:layout_below="@+id/elevation_label"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
@@ -226,7 +226,7 @@
android:id="@+id/latitude_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_below="@+id/azimuth_container" >
+ android:layout_below="@+id/elevation_container" >
<TextView
android:id="@+id/latitude_label"
diff --git a/altosdroid/res/values/strings.xml b/altosdroid/res/values/strings.xml
index e100100f..2f8a9ddc 100644
--- a/altosdroid/res/values/strings.xml
+++ b/altosdroid/res/values/strings.xml
@@ -47,8 +47,8 @@
<string name="speed_label">Speed</string>
<string name="accel_label">Acceleration</string>
<string name="range_label">Range</string>
- <string name="altitude_label">Altitude</string>
- <string name="azimuth_label">Azimuth</string>
+ <string name="height_label">Height</string>
+ <string name="elevation_label">Elevation</string>
<string name="bearing_label">Bearing</string>
<string name="latitude_label">Latitude</string>
<string name="longitude_label">Longitude</string>