From d3357b186d55816e682b3012cfccd2d7a0680678 Mon Sep 17 00:00:00 2001 From: Adam Cohen Date: Tue, 18 Oct 2011 14:58:11 -0700 Subject: Fixing all apps accessibility (issue: 5478505) Change-Id: I8f5ba2e4acd620520a57ef0b464171c6e0966d4e --- src/com/android/launcher2/AppsCustomizePagedView.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') 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); } } -- cgit v1.2.3