Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Yunitsky <yunik@mapswithme.com>2014-12-11 21:52:02 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:34:49 +0300
commit3dfa93495691a7c9c787f540f99f9d59b4f18696 (patch)
treedd868f3cb41f73a70c8d5d0a06d4bb329f1c2064 /android/res/values-v21
parente619d29e14267d181b4e10e1af382ad5a8530b81 (diff)
Fix for non-clickable lists.
Diffstat (limited to 'android/res/values-v21')
-rw-r--r--android/res/values-v21/styles.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/android/res/values-v21/styles.xml b/android/res/values-v21/styles.xml
new file mode 100644
index 0000000000..939362578b
--- /dev/null
+++ b/android/res/values-v21/styles.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <style name="MwmList" parent="android:Widget.Material.ListView">
+ <item name="android:fadingEdge">none</item>
+ <item name="android:divider">@drawable/divider_medium_padded</item>
+ <item name="android:dividerHeight">1px</item>
+ <item name="android:background">@android:color/white</item>
+ <item name="android:animationCache">false</item>
+ <item name="android:scrollingCache">false</item>
+ <item name="android:cacheColorHint">@android:color/transparent</item>
+ </style>
+
+ <style name="MwmText" parent="android:Widget.Material.TextView">
+ <item name="android:fontFamily">@string/robotoRegular</item>
+ <item name="android:background">@android:color/transparent</item>
+ </style>
+
+</resources> \ No newline at end of file