Back to project page MaterialManager.
The source code is released under:
There is no license, someone decided to pretty much republish Cabinet with no credit so I?m taking away the license altogether.
If you think the Android project MaterialManager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.afollestad.cabinet.cab; /*from www.j a va 2 s.com*/ import android.support.v7.view.ActionMode; import com.afollestad.cabinet.R; import com.afollestad.cabinet.cab.base.BaseCab; public class PickerCab extends BaseCab { @Override public int getMenu() { return -1; } @Override public CharSequence getTitle() { return getContext().getString(R.string.pick_a_file); } @Override public void onDestroyActionMode(ActionMode actionMode) { getContext().pickMode = false; super.onDestroyActionMode(actionMode); } }