Adding workaround for page indicators to support many pages.
- Tweaking assets until we get something proper
Change-Id: Ie07946acb529ff747d76896ff38837f8db6a7258
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
index 1545083..09b8804 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -32,6 +32,13 @@
<attr name="drawIdentifier" format="string" />
</declare-styleable>
+ <!-- Page Indicator specific attributes. These attributes are used to customize
+ the cling in XML files. -->
+ <declare-styleable name="PageIndicator">
+ <!-- Used to identify how to draw the cling bg -->
+ <attr name="windowSize" format="integer" />
+ </declare-styleable>
+
<!-- Workspace specific attributes. These attributes are used to customize
the workspace in XML files. -->
<declare-styleable name="Workspace">
diff --git a/res/values/config.xml b/res/values/config.xml
index 6aaca1a..cc3d4f0 100644
--- a/res/values/config.xml
+++ b/res/values/config.xml
@@ -3,6 +3,9 @@
<bool name="is_large_screen">false</bool>
<bool name="allow_rotation">false</bool>
+ <!-- Max number of page indicators to show -->
+ <integer name="config_maxNumberOfPageIndicatorsToShow">21</integer>
+
<!-- DragController -->
<integer name="config_flingToDeleteMinVelocity">-1500</integer>