summaryrefslogtreecommitdiff
path: root/Realisation_vol/App/app/src/main/res/values
diff options
context:
space:
mode:
authorGaspard Coulet <gaspard.coulet@mines-ales.org>2021-04-28 23:08:21 +0200
committerGaspard Coulet <gaspard.coulet@mines-ales.org>2021-04-28 23:08:21 +0200
commit20f3a92f1c5ddecb565634237e33b321e846ad5d (patch)
tree1de4cea19d6bf2768a212c1e3c030bdb05a39544 /Realisation_vol/App/app/src/main/res/values
Initial commit
Diffstat (limited to 'Realisation_vol/App/app/src/main/res/values')
-rw-r--r--Realisation_vol/App/app/src/main/res/values/colors.xml6
-rw-r--r--Realisation_vol/App/app/src/main/res/values/ids.xml8
-rw-r--r--Realisation_vol/App/app/src/main/res/values/strings.xml35
-rw-r--r--Realisation_vol/App/app/src/main/res/values/styles.xml17
4 files changed, 66 insertions, 0 deletions
diff --git a/Realisation_vol/App/app/src/main/res/values/colors.xml b/Realisation_vol/App/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..faeef17
--- /dev/null
+++ b/Realisation_vol/App/app/src/main/res/values/colors.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="colorPrimary">#0e4db2</color>
+ <color name="colorPrimaryDark">#113b7f</color>
+ <color name="colorAccent">#D81B60</color>
+</resources>
diff --git a/Realisation_vol/App/app/src/main/res/values/ids.xml b/Realisation_vol/App/app/src/main/res/values/ids.xml
new file mode 100644
index 0000000..eb9b444
--- /dev/null
+++ b/Realisation_vol/App/app/src/main/res/values/ids.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <item type="id" name="button_pause"></item>
+ <item type="id" name="button_stop"></item>
+ <item type="id" name="button_Main_start"></item>
+ <item type="id" name="button_work_start"></item>
+ <item type="id" name="button_work_load"></item>
+</resources> \ No newline at end of file
diff --git a/Realisation_vol/App/app/src/main/res/values/strings.xml b/Realisation_vol/App/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..4aab2d4
--- /dev/null
+++ b/Realisation_vol/App/app/src/main/res/values/strings.xml
@@ -0,0 +1,35 @@
+<resources>
+ <string name="app_name">Drone_routing</string>
+ <string name="button_load">Load</string>
+ <string name="button_start">Start</string>
+ <string name="button_Load">Load</string>
+ <string name="start_text">Welcome! Your DJI product is not connected yet, please connect it to your smartphone</string>
+ <string name="text_connected">Welcome! Product connected!</string>
+ <string name="save">Save</string>
+ <string name="load">Load</string>
+ <string name="lon">Longitude</string>
+ <string name="lat">Latitude</string>
+ <string name="angle">Angle</string>
+ <string name="length">Length</string>
+ <string name="width">Width</string>
+ <string name="height">Height</string>
+ <string name="nb">Nb of pics</string>
+ <string name="nbhint">Number of wanted pictures</string>
+ <string name="lonhint">Longitude (°)</string>
+ <string name="lathint">Latitude (°)</string>
+ <string name="angleHint">angle of the width relative to north (+°))</string>
+ <string name="lengthhint">Length (m)</string>
+ <string name="widthhint">Width (m)</string>
+ <string name="heighthint">Height (m)</string>
+ <string name="gps_not_found_title">\"gps not found\"</string>
+ <string name="gps_not_found_message">\"gps not found\"</string>
+ <string name="yes">Yes</string>
+ <string name="no">No</string>
+ <string name="curr">Current Loc</string>
+ <string name="pause">Pause</string>
+ <string name="resume">Resume</string>
+ <string name="stop">Stop</string>
+ <string name="generate">Create Path</string>
+ <string name="onMap">Choose on Map</string>
+ <string name="remove">Remove</string>
+</resources>
diff --git a/Realisation_vol/App/app/src/main/res/values/styles.xml b/Realisation_vol/App/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..3bfdff5
--- /dev/null
+++ b/Realisation_vol/App/app/src/main/res/values/styles.xml
@@ -0,0 +1,17 @@
+<resources>
+
+ <!-- Base application theme. -->
+ <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
+ <!-- Customize your theme here. -->
+ <item name="colorPrimary">@color/colorPrimary</item>
+ <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
+ <item name="colorAccent">@color/colorAccent</item>
+ <item name="windowActionBar">false</item>
+ <item name="windowNoTitle">true</item>
+ </style>
+ <style name="AppTheme.NoActionBar" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
+ <item name="windowActionBar">false</item>
+ <item name="windowNoTitle">true</item>
+ </style>
+
+</resources>