summaryrefslogtreecommitdiff
path: root/res/values
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-09-08 16:45:08 +0400
committerAndrew Dolgov <[email protected]>2011-09-08 16:45:08 +0400
commit30eea4c5e4022a5630138f2d3bd36eccf8031dc4 (patch)
treed8eba6467a498b298399a0a87b2eef21e278f0e3 /res/values
parenta14e9cd14e3d9490a6c4680e54bcd7d691bf548b (diff)
implement placeholder headlinesfragment
fix reloading feedsfragment on rotate
Diffstat (limited to 'res/values')
-rw-r--r--res/values/attrs.xml1
-rw-r--r--res/values/strings.xml1
-rw-r--r--res/values/style.xml10
3 files changed, 12 insertions, 0 deletions
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
index fa4748c5..2e1278de 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -3,4 +3,5 @@
<attr name="feedlistDivider" format="reference|color" />
<attr name="feedlistBackground" format="reference|color" />
<attr name="unreadCounterColor" format="reference|color" />
+ <attr name="headlinesBackground" format="reference|color" />
</resources> \ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 76ff7d7e..e4ac1e8a 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -23,4 +23,5 @@
<string name="login_api_disabled">Login failed: API disabled.</string>
<string name="login_wrong_password">Login failed: username or password incorrect.</string>
<string name="login_success">Logged in.</string>
+ <string name="no_unread_feeds">No unread feeds.</string>
</resources>
diff --git a/res/values/style.xml b/res/values/style.xml
index b9c13774..ba0bca29 100644
--- a/res/values/style.xml
+++ b/res/values/style.xml
@@ -3,12 +3,22 @@
<item name="feedlistDivider">@android:drawable/divider_horizontal_bright</item>
<item name="feedlistBackground">#fafafa</item>
<item name="unreadCounterColor">#0000ff</item>
+ <item name="headlinesBackground">#ffffff</item>
</style>
<style name="DarkTheme" parent="android:Theme.Holo">
<item name="feedlistDivider">@android:drawable/divider_horizontal_dark</item>
<item name="feedlistBackground">#101010</item>
<item name="unreadCounterColor">#0000ff</item>
+ <item name="headlinesBackground">#000000</item>
+ </style>
+
+ <style name="SelectedFeed">
+ <item name="android:textStyle">bold</item>
+ </style>
+
+ <style name="Feed">
+ <item name="android:textStyle">normal</item>
</style>
</resources> \ No newline at end of file