use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by DirtyUnicorns.
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());
}
use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by DirtyUnicorns.
the class MultiSelectManager_SelectionTest method testIntersection_empty0.
public void testIntersection_empty0() {
Selection testSelection = new Selection();
testSelection.intersect(new HashSet<String>());
assertTrue(testSelection.isEmpty());
}
use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by DirtyUnicorns.
the class DirectoryFragment method create.
public static void create(FragmentManager fm, int type, RootInfo root, DocumentInfo doc, String query, int anim) {
final Bundle args = new Bundle();
args.putInt(Shared.EXTRA_TYPE, type);
args.putParcelable(Shared.EXTRA_ROOT, root);
args.putParcelable(Shared.EXTRA_DOC, doc);
args.putString(Shared.EXTRA_QUERY, query);
args.putParcelable(Shared.EXTRA_SELECTION, new Selection());
final FragmentTransaction ft = fm.beginTransaction();
AnimationView.setupAnimations(ft, anim, args);
final DirectoryFragment fragment = new DirectoryFragment();
fragment.setArguments(args);
ft.replace(getFragmentId(), fragment);
ft.commitAllowingStateLoss();
}
use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by DirtyUnicorns.
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();
}
}
use of com.android.documentsui.dirlist.MultiSelectManager.Selection in project android_frameworks_base by AOSPA.
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;
}
Aggregations