Search in sources :

Example 56 with Selection

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

the class MultiSelectManager_SelectionTest method testSize.

public void testSize() {
    Selection other = new Selection();
    for (int i = 0; i < selection.size(); i++) {
        other.add(ids[i]);
    }
    assertEquals(selection.size(), other.size());
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 57 with Selection

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

the class DirectoryFragment method copySelectedToClipboard.

public void copySelectedToClipboard() {
    Metrics.logUserAction(getContext(), Metrics.USER_ACTION_COPY_CLIPBOARD);
    Selection selection = mSelectionManager.getSelection(new Selection());
    if (!selection.isEmpty()) {
        copySelectionToClipboard(selection);
        mSelectionManager.clearSelection();
    }
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 58 with Selection

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

the class MultiSelectManager_SelectionTest method testIntersection_exclusive.

public void testIntersection_exclusive() {
    String[] ids0 = new String[] { "foo", "bar", "baz" };
    String[] ids1 = new String[] { "0", "1", "2" };
    Selection testSelection = new Selection();
    testSelection.add(ids0[0]);
    testSelection.add(ids0[1]);
    testSelection.add(ids0[2]);
    Set<String> set = Sets.newHashSet(ids1);
    testSelection.intersect(set);
    assertTrue(testSelection.isEmpty());
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 59 with Selection

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

the class MultiSelectManager_SelectionTest method testIntersection_empty0.

public void testIntersection_empty0() {
    Selection testSelection = new Selection();
    testSelection.intersect(new HashSet<String>());
    assertTrue(testSelection.isEmpty());
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

Example 60 with Selection

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

the class MultiSelectManager_SelectionTest method testIntersection_all.

public void testIntersection_all() {
    String[] ids0 = new String[] { "foo", "bar", "baz" };
    String[] ids1 = new String[] { "0", "baz", "1", "foo", "2", "bar" };
    Selection testSelection = new Selection();
    testSelection.add(ids0[0]);
    testSelection.add(ids0[1]);
    testSelection.add(ids0[2]);
    Selection control = new Selection();
    control.copyFrom(testSelection);
    testSelection.intersect(Sets.newHashSet(ids1));
    assertTrue(testSelection.equals(control));
}
Also used : Selection(com.android.documentsui.dirlist.MultiSelectManager.Selection)

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