Android examples for App:APK Information
Normalizes a PageRange, which is the resulting page ranges are non-overlapping with the start lesser than or equal to the end and ordered in an ascending order.
/*/*from ww w . j a v a2 s .com*/ * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ //package com.java2s; import android.print.PageRange; import java.util.Arrays; import java.util.Comparator; public class Main { private static final Comparator<PageRange> sComparator = new Comparator<PageRange>() { @Override public int compare(PageRange lhs, PageRange rhs) { return lhs.getStart() - rhs.getStart(); } }; /** * Normalizes a page range, which is the resulting page ranges are * non-overlapping with the start lesser than or equal to the end * and ordered in an ascending order. * * @param pageRanges The page ranges to normalize. * @return The normalized page ranges. */ public static PageRange[] normalize(PageRange[] pageRanges) { if (pageRanges == null) { return null; } final int oldRangeCount = pageRanges.length; if (oldRangeCount <= 1) { return pageRanges; } Arrays.sort(pageRanges, sComparator); int newRangeCount = 1; for (int i = 0; i < oldRangeCount - 1; i++) { PageRange currentRange = pageRanges[i]; PageRange nextRange = pageRanges[i + 1]; if (currentRange.getEnd() + 1 >= nextRange.getStart()) { pageRanges[i] = null; pageRanges[i + 1] = new PageRange(currentRange.getStart(), Math.max(currentRange.getEnd(), nextRange.getEnd())); } else { newRangeCount++; } } if (newRangeCount == oldRangeCount) { return pageRanges; } int normalRangeIndex = 0; PageRange[] normalRanges = new PageRange[newRangeCount]; for (int i = 0; i < oldRangeCount; i++) { PageRange normalRange = pageRanges[i]; if (normalRange != null) { normalRanges[normalRangeIndex] = normalRange; normalRangeIndex++; } } return normalRanges; } }