Search in sources :

Example 21 with Selection

use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by ResurrectionRemix.

the class MultiSelectManager_SelectionTest method testEqualsOther.

public void testEqualsOther() {
    Selection other = new Selection();
    other.add(ids[0]);
    other.add(ids[1]);
    other.add(ids[2]);
    assertEquals(selection, other);
    assertEquals(selection.hashCode(), other.hashCode());
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 22 with Selection

use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by ResurrectionRemix.

the class MultiSelectManager_SelectionTest method testNotEquals.

public void testNotEquals() {
    Selection other = new Selection();
    other.add("foobar");
    assertFalse(selection.equals(other));
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 23 with Selection

use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by ResurrectionRemix.

the class MultiSelectManager_SelectionTest method setUp.

@Override
public void setUp() throws Exception {
    selection = new Selection();
    selection.add(ids[0]);
    selection.add(ids[1]);
    selection.add(ids[2]);
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 24 with Selection

use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by ResurrectionRemix.

the class ModelTest method positionToSelection.

private Selection positionToSelection(int... positions) {
    String[] ids = model.getModelIds();
    Selection s = new Selection();
    // Construct a selection of the given positions.
    for (int p : positions) {
        s.add(ids[p]);
    }
    return s;
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 25 with Selection

use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by ResurrectionRemix.

the class MultiSelectManagerTest method testProvisionalSelection_IntersectsExistingProvisionalSelection.

public void testProvisionalSelection_IntersectsExistingProvisionalSelection() {
    Selection s = mManager.getSelection();
    SparseBooleanArray provisional = new SparseBooleanArray();
    provisional.append(1, true);
    provisional.append(2, true);
    s.setProvisionalSelection(getItemIds(provisional));
    provisional.clear();
    provisional.append(1, true);
    s.setProvisionalSelection(getItemIds(provisional));
    assertSelection(items.get(1));
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection) SparseBooleanArray(android.util.SparseBooleanArray)

Aggregations

Selection (com.android.documentsui.dirlist.MultiSelectManager.Selection)110 SparseBooleanArray (android.util.SparseBooleanArray)30 Bundle (android.os.Bundle)10 ActivityManager (android.app.ActivityManager)5 FragmentTransaction (android.app.FragmentTransaction)5 Context (android.content.Context)5 Point (android.graphics.Point)5 AccessibilityNodeInfoCompat (android.support.v4.view.accessibility.AccessibilityNodeInfoCompat)5 GridLayoutManager (android.support.v7.widget.GridLayoutManager)5 SpanSizeLookup (android.support.v7.widget.GridLayoutManager.SpanSizeLookup)5 RecyclerView (android.support.v7.widget.RecyclerView)5 Recycler (android.support.v7.widget.RecyclerView.Recycler)5 ViewHolder (android.support.v7.widget.RecyclerView.ViewHolder)5 View (android.view.View)5 ImageView (android.widget.ImageView)5 TextView (android.widget.TextView)5 DocumentClipper (com.android.documentsui.DocumentClipper)5 State (com.android.documentsui.State)5