summaryrefslogtreecommitdiffstats
path: root/Android/02-Intents/IntentsLab/res/values
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-02-12 22:33:14 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-11-10 17:40:54 +0100
commitee3ef2bcf3656e3e7a02d86d43858cc8145508da (patch)
treec428969d47180877913f95201067f4b750f91b2a /Android/02-Intents/IntentsLab/res/values
parent339c57d3520c8de6f970b020c87f77ec266f3bf8 (diff)
downloadcoursera-ee3ef2bcf3656e3e7a02d86d43858cc8145508da.zip
coursera-ee3ef2bcf3656e3e7a02d86d43858cc8145508da.tar.gz
Android : 02-Intents: add
Diffstat (limited to 'Android/02-Intents/IntentsLab/res/values')
-rw-r--r--Android/02-Intents/IntentsLab/res/values/strings.xml25
-rw-r--r--Android/02-Intents/IntentsLab/res/values/styles.xml20
2 files changed, 45 insertions, 0 deletions
diff --git a/Android/02-Intents/IntentsLab/res/values/strings.xml b/Android/02-Intents/IntentsLab/res/values/strings.xml
new file mode 100644
index 0000000..28a476b
--- /dev/null
+++ b/Android/02-Intents/IntentsLab/res/values/strings.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="app_name">IntentsLab</string>
+ <string name="main_message">Press a button:</string>
+ <string name="menu_settings">Settings</string>
+ <string name="title_explicit">Explicit Activation</string>
+ <string name="title_main">Activity Loader Activity</string>
+ <string name="explicit_message">You have sent an Explicit Intent!</string>
+ <string name="explicit_activation_button_string">Explicit Activation</string>
+ <string name="implicit_activation_button_string">Implicit Activation</string>
+ <string name="main_button3">Part 2: Permissions</string>
+ <string name="title_permissions">Permissions</string>
+ <string name="perms_button1">Get Bookmarks</string>
+ <string name="perms_button2">Part 3: Customization</string>
+ <string name="place_holder">\n \n Bookmarks Go Here \n \n</string>
+ <string name="title_activity_customization">Customization</string>
+ <string name="cust_button1">Start Dangerous Activity</string>
+ <string name="cust_message">This button will load a Dangerous Level activity</string>
+ <string name="title_activity_my_browser">MyBrowser</string>
+ <string name="no_text_entered">No Text Entered</string>
+ <string name="enter_string">Enter</string>
+ <string name="enter_text_here_string">Enter Text Here</string>
+
+</resources> \ No newline at end of file
diff --git a/Android/02-Intents/IntentsLab/res/values/styles.xml b/Android/02-Intents/IntentsLab/res/values/styles.xml
new file mode 100644
index 0000000..4a10ca4
--- /dev/null
+++ b/Android/02-Intents/IntentsLab/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> \ No newline at end of file