Fixing all apps accessibility (issue: 5478505)

Change-Id: I8f5ba2e4acd620520a57ef0b464171c6e0966d4e
This commit is contained in:
Adam Cohen
2011-10-18 14:58:11 -07:00
parent 44fbf9de0e
commit d3357b186d
@@ -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);
}
}