summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout-land/launcher.xml8
-rw-r--r--res/values/attrs.xml4
2 files changed, 10 insertions, 2 deletions
diff --git a/res/layout-land/launcher.xml b/res/layout-land/launcher.xml
index 61ebad0fb..44e1cfb55 100644
--- a/res/layout-land/launcher.xml
+++ b/res/layout-land/launcher.xml
@@ -41,7 +41,7 @@
</com.android.launcher2.Workspace>
- <ImageView
+ <com.android.launcher2.ClippedImageView
android:id="@+id/previous_screen"
android:layout_width="93dip"
android:layout_height="@dimen/button_bar_height"
@@ -53,10 +53,12 @@
android:onClick="previousScreen"
+ launcher:ignoreZone="56dip"
+
android:focusable="true"
android:clickable="true" />
- <ImageView
+ <com.android.launcher2.ClippedImageView
android:id="@+id/next_screen"
android:layout_width="93dip"
android:layout_height="@dimen/button_bar_height"
@@ -68,6 +70,8 @@
android:onClick="nextScreen"
+ launcher:ignoreZone="-56dip"
+
android:focusable="true"
android:clickable="true" />
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
index a0085bc40..78391206e 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -82,4 +82,8 @@
<attr name="title" format="reference" />
<attr name="uri" format="string" />
</declare-styleable>
+
+ <declare-styleable name="ClippedImageView">
+ <attr name="ignoreZone" format="dimension" />
+ </declare-styleable>
</resources>