summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2011-10-18 14:58:11 -0700
committerAdam Cohen <adamcohen@google.com>2011-10-18 14:58:50 -0700
commitd3357b186d55816e682b3012cfccd2d7a0680678 (patch)
treea05211f0acbe8a37f3e7a236013c8f828752dfc9 /src
parent44fbf9de0e4694d785383b6c276cc24f86923118 (diff)
downloadandroid_packages_apps_Trebuchet-d3357b186d55816e682b3012cfccd2d7a0680678.tar.gz
android_packages_apps_Trebuchet-d3357b186d55816e682b3012cfccd2d7a0680678.tar.bz2
android_packages_apps_Trebuchet-d3357b186d55816e682b3012cfccd2d7a0680678.zip
Fixing all apps accessibility (issue: 5478505)
Change-Id: I8f5ba2e4acd620520a57ef0b464171c6e0966d4e
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher2/AppsCustomizePagedView.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/com/android/launcher2/AppsCustomizePagedView.java b/src/com/android/launcher2/AppsCustomizePagedView.java
index 7bc4b511b..4718b31c4 100644
--- a/src/com/android/launcher2/AppsCustomizePagedView.java
+++ b/src/com/android/launcher2/AppsCustomizePagedView.java
@@ -1419,14 +1419,17 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
protected String getCurrentPageDescription() {
int page = (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
int stringId = R.string.default_scroll_format;
-
+ int count = 0;
+
if (page < mNumAppsPages) {
stringId = R.string.apps_customize_apps_scroll_format;
+ count = mNumAppsPages;
} else {
page -= mNumAppsPages;
stringId = R.string.apps_customize_widgets_scroll_format;
+ count = mNumWidgetPages;
}
- return String.format(mContext.getString(stringId), page + 1, getChildCount());
+ return String.format(mContext.getString(stringId), page + 1, count);
}
}