summaryrefslogtreecommitdiff
path: root/res/values
diff options
context:
space:
mode:
authorEino-Ville Talvala <etalvala@google.com>2016-04-19 22:38:02 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-04-19 22:38:02 +0000
commit070396f6848078229fd6a3f4f510b832a7fddd0e (patch)
tree08af4a9ab3773f88ff8cd73d7c29314392f8ed85 /res/values
parent3c34ea04f6ed48559c1d94a4cac1d5e2e5b6517f (diff)
parenta8a96dfce795a6621cdf7b890442fa5ed1252a55 (diff)
downloadDevCamera-070396f6848078229fd6a3f4f510b832a7fddd0e.tar.gz
Initial check-in of Snappy code
am: a8a96df * commit 'a8a96dfce795a6621cdf7b890442fa5ed1252a55': Initial check-in of Snappy code Change-Id: I1eeeb411c75eb0120287b1e318877ea3d348e591
Diffstat (limited to 'res/values')
-rw-r--r--res/values/colors.xml11
-rw-r--r--res/values/dimens.xml10
-rw-r--r--res/values/strings.xml16
-rw-r--r--res/values/styles.xml20
4 files changed, 57 insertions, 0 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml
new file mode 100644
index 0000000..47fef74
--- /dev/null
+++ b/res/values/colors.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="horiz_rule_color">#777777</color>
+ <color name="black">#000000</color>
+ <color name="dark_blue">#000066</color>
+ <color name="face_color">#FFFF00</color>
+ <color name="capture_button_color">#191919</color>
+ <color name="exp_iso_color">#FFFFFF</color>
+ <color name="hud_color">#DDDDDD</color>
+ <color name="message_color">#444444</color>
+</resources> \ No newline at end of file
diff --git a/res/values/dimens.xml b/res/values/dimens.xml
new file mode 100644
index 0000000..ec52df0
--- /dev/null
+++ b/res/values/dimens.xml
@@ -0,0 +1,10 @@
+<resources>
+
+ <!-- Default screen margins, per the Android Design guidelines. -->
+ <dimen name="activity_horizontal_margin">16dp</dimen>
+ <dimen name="activity_vertical_margin">16dp</dimen>
+ <dimen name="face_circle_stroke">0.65dp</dimen>
+ <dimen name="hud_stroke">0.33dp</dimen>
+ <dimen name="control_text">12dp</dimen>
+
+</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 0000000..cf216cf
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="app_name">Snappy2</string>
+ <string name="action_settings">Settings</string>
+ <string name="hello_world">This is a snappy app!</string>
+ <string name="jpeg_capture">JPEG</string>
+ <string name="aftrig">AF trig</string>
+ <string name="nr_unknown">NR --</string>
+ <string name="edge_unknown">Edge --</string>
+ <string name="minus">–</string>
+ <string name="plus">+</string>
+ <string name="gallery">Gallery</string>
+ <string name="Reprocessing">–– Reprocessing ––</string>
+
+</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
new file mode 100644
index 0000000..6ce89c7
--- /dev/null
+++ b/res/values/styles.xml
@@ -0,0 +1,20 @@
+<resources>
+
+ <!--
+ Base application theme, dependent on API level. This theme is replaced
+ by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
+ -->
+ <style name="AppBaseTheme" parent="android:Theme.Light">
+ <!--
+ Theme customizations available in newer API levels can go in
+ res/values-vXX/styles.xml, while customizations related to
+ backward-compatibility can go here.
+ -->
+ </style>
+
+ <!-- Application theme. -->
+ <style name="AppTheme" parent="AppBaseTheme">
+ <!-- All customizations that are NOT specific to a particular API-level can go here. -->
+ </style>
+
+</resources>