blob: e2e98077e0525daa438767dd1ae4e10015ed3ca2 [file] [log] [blame]
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.documentsui;
18
Jeff Sharkey311a7d82015-04-11 21:27:21 -070019import static com.android.documentsui.BaseActivity.State.ACTION_BROWSE;
20import static com.android.documentsui.BaseActivity.State.ACTION_BROWSE_ALL;
Steve McKayd0a2a2c2015-03-25 14:35:33 -070021import static com.android.documentsui.BaseActivity.State.ACTION_CREATE;
22import static com.android.documentsui.BaseActivity.State.ACTION_MANAGE;
23import static com.android.documentsui.BaseActivity.State.MODE_GRID;
24import static com.android.documentsui.BaseActivity.State.MODE_LIST;
25import static com.android.documentsui.BaseActivity.State.MODE_UNKNOWN;
26import static com.android.documentsui.BaseActivity.State.SORT_ORDER_UNKNOWN;
Jeff Sharkey311a7d82015-04-11 21:27:21 -070027import static com.android.documentsui.DocumentsActivity.TAG;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070028import static com.android.documentsui.model.DocumentInfo.getCursorInt;
29import static com.android.documentsui.model.DocumentInfo.getCursorLong;
30import static com.android.documentsui.model.DocumentInfo.getCursorString;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070031
Ben Kwaf5858932015-04-07 15:43:39 -070032import android.app.Activity;
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070033import android.app.ActivityManager;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070034import android.app.Fragment;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070035import android.app.FragmentManager;
36import android.app.FragmentTransaction;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070037import android.app.LoaderManager.LoaderCallbacks;
Jeff Sharkey3fd11772013-09-30 14:26:27 -070038import android.content.ContentProviderClient;
Jeff Sharkey873daa32013-08-18 17:38:20 -070039import android.content.ContentResolver;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -070040import android.content.ContentValues;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070041import android.content.Context;
Jeff Sharkey873daa32013-08-18 17:38:20 -070042import android.content.Intent;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070043import android.content.Loader;
Jeff Sharkey083d7e12014-07-27 21:01:45 -070044import android.content.res.Resources;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070045import android.database.Cursor;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070046import android.graphics.Bitmap;
47import android.graphics.Point;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070048import android.graphics.drawable.Drawable;
Jeff Sharkeydb884f52013-09-21 15:11:19 -070049import android.graphics.drawable.InsetDrawable;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070050import android.net.Uri;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070051import android.os.AsyncTask;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070052import android.os.Bundle;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070053import android.os.CancellationSignal;
Jeff Sharkeye39a89b2013-10-29 11:56:37 -070054import android.os.OperationCanceledException;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070055import android.os.Parcelable;
Ben Kwa41b26c12015-03-31 10:11:43 -070056import android.os.SystemProperties;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070057import android.provider.DocumentsContract;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070058import android.provider.DocumentsContract.Document;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070059import android.text.format.DateUtils;
Jeff Sharkey2e694f82013-08-06 16:26:14 -070060import android.text.format.Formatter;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070061import android.text.format.Time;
62import android.util.Log;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070063import android.util.SparseArray;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070064import android.util.SparseBooleanArray;
65import android.view.ActionMode;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070066import android.view.LayoutInflater;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070067import android.view.Menu;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070068import android.view.MenuItem;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070069import android.view.View;
70import android.view.ViewGroup;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070071import android.widget.AbsListView;
72import android.widget.AbsListView.MultiChoiceModeListener;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070073import android.widget.AbsListView.RecyclerListener;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070074import android.widget.AdapterView;
75import android.widget.AdapterView.OnItemClickListener;
Jeff Sharkeya5defe32013-08-05 17:56:48 -070076import android.widget.BaseAdapter;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070077import android.widget.GridView;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070078import android.widget.ImageView;
79import android.widget.ListView;
80import android.widget.TextView;
Jeff Sharkey873daa32013-08-18 17:38:20 -070081import android.widget.Toast;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070082
Steve McKayd0a2a2c2015-03-25 14:35:33 -070083import com.android.documentsui.BaseActivity.State;
Jeff Sharkey753a3ae2013-10-22 17:09:44 -070084import com.android.documentsui.ProviderExecutor.Preemptable;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -070085import com.android.documentsui.RecentsProvider.StateColumns;
Jeff Sharkey724deeb2013-08-31 15:02:20 -070086import com.android.documentsui.model.DocumentInfo;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070087import com.android.documentsui.model.RootInfo;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070088import com.google.android.collect.Lists;
89
90import java.util.ArrayList;
Jeff Sharkeya5defe32013-08-05 17:56:48 -070091import java.util.List;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070092
93/**
94 * Display the documents inside a single directory.
95 */
96public class DirectoryFragment extends Fragment {
97
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070098 private View mEmptyView;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070099 private ListView mListView;
100 private GridView mGridView;
101
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700102 private AbsListView mCurrentView;
103
Ben Kwaf5858932015-04-07 15:43:39 -0700104 private List<DocumentInfo> mSelectedDocumentsForCopy;
105
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700106 public static final int TYPE_NORMAL = 1;
107 public static final int TYPE_SEARCH = 2;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700108 public static final int TYPE_RECENT_OPEN = 3;
Jeff Sharkey5b535922013-08-02 15:55:26 -0700109
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700110 public static final int ANIM_NONE = 1;
111 public static final int ANIM_SIDE = 2;
112 public static final int ANIM_DOWN = 3;
113 public static final int ANIM_UP = 4;
114
Ben Kwaf5858932015-04-07 15:43:39 -0700115 public static final int REQUEST_COPY_DESTINATION = 1;
116
Jeff Sharkey5b535922013-08-02 15:55:26 -0700117 private int mType = TYPE_NORMAL;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700118 private String mStateKey;
Jeff Sharkey5b535922013-08-02 15:55:26 -0700119
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700120 private int mLastMode = MODE_UNKNOWN;
121 private int mLastSortOrder = SORT_ORDER_UNKNOWN;
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700122 private boolean mLastShowSize = false;
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700123
Jeff Sharkey9656a532013-09-13 13:42:19 -0700124 private boolean mHideGridTitles = false;
125
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700126 private boolean mSvelteRecents;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700127 private Point mThumbSize;
128
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700129 private DocumentsAdapter mAdapter;
Jeff Sharkey46899c82013-08-18 22:26:48 -0700130 private LoaderCallbacks<DirectoryResult> mCallbacks;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700131
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700132 private static final String EXTRA_TYPE = "type";
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700133 private static final String EXTRA_ROOT = "root";
134 private static final String EXTRA_DOC = "doc";
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700135 private static final String EXTRA_QUERY = "query";
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700136 private static final String EXTRA_IGNORE_STATE = "ignoreState";
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700137
Jeff Sharkeyc0075dc2013-10-25 17:12:49 -0700138 private final int mLoaderId = 42;
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700139
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700140 public static void showNormal(FragmentManager fm, RootInfo root, DocumentInfo doc, int anim) {
141 show(fm, TYPE_NORMAL, root, doc, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700142 }
143
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700144 public static void showSearch(FragmentManager fm, RootInfo root, String query, int anim) {
145 show(fm, TYPE_SEARCH, root, null, query, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700146 }
147
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700148 public static void showRecentsOpen(FragmentManager fm, int anim) {
149 show(fm, TYPE_RECENT_OPEN, null, null, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700150 }
151
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700152 private static void show(FragmentManager fm, int type, RootInfo root, DocumentInfo doc,
153 String query, int anim) {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700154 final Bundle args = new Bundle();
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700155 args.putInt(EXTRA_TYPE, type);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700156 args.putParcelable(EXTRA_ROOT, root);
157 args.putParcelable(EXTRA_DOC, doc);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700158 args.putString(EXTRA_QUERY, query);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700159
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700160 final FragmentTransaction ft = fm.beginTransaction();
161 switch (anim) {
162 case ANIM_SIDE:
163 args.putBoolean(EXTRA_IGNORE_STATE, true);
164 break;
165 case ANIM_DOWN:
166 args.putBoolean(EXTRA_IGNORE_STATE, true);
167 ft.setCustomAnimations(R.animator.dir_down, R.animator.dir_frozen);
168 break;
169 case ANIM_UP:
170 ft.setCustomAnimations(R.animator.dir_frozen, R.animator.dir_up);
171 break;
172 }
173
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700174 final DirectoryFragment fragment = new DirectoryFragment();
175 fragment.setArguments(args);
176
Jeff Sharkey76112212013-08-06 11:26:10 -0700177 ft.replace(R.id.container_directory, fragment);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700178 ft.commitAllowingStateLoss();
179 }
180
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700181 private static String buildStateKey(RootInfo root, DocumentInfo doc) {
182 final StringBuilder builder = new StringBuilder();
183 builder.append(root != null ? root.authority : "null").append(';');
184 builder.append(root != null ? root.rootId : "null").append(';');
185 builder.append(doc != null ? doc.documentId : "null");
186 return builder.toString();
187 }
188
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700189 public static DirectoryFragment get(FragmentManager fm) {
190 // TODO: deal with multiple directories shown at once
Jeff Sharkey76112212013-08-06 11:26:10 -0700191 return (DirectoryFragment) fm.findFragmentById(R.id.container_directory);
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700192 }
193
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700194 @Override
195 public View onCreateView(
196 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
197 final Context context = inflater.getContext();
Jeff Sharkey083d7e12014-07-27 21:01:45 -0700198 final Resources res = context.getResources();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700199 final View view = inflater.inflate(R.layout.fragment_directory, container, false);
200
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700201 mEmptyView = view.findViewById(android.R.id.empty);
202
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700203 mListView = (ListView) view.findViewById(R.id.list);
204 mListView.setOnItemClickListener(mItemListener);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700205 mListView.setMultiChoiceModeListener(mMultiListener);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700206 mListView.setRecyclerListener(mRecycleListener);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700207
Jeff Sharkey083d7e12014-07-27 21:01:45 -0700208 // Indent our list divider to align with text
209 final Drawable divider = mListView.getDivider();
210 final boolean insetLeft = res.getBoolean(R.bool.list_divider_inset_left);
211 final int insetSize = res.getDimensionPixelSize(R.dimen.list_divider_inset);
212 if (insetLeft) {
213 mListView.setDivider(new InsetDrawable(divider, insetSize, 0, 0, 0));
214 } else {
215 mListView.setDivider(new InsetDrawable(divider, 0, 0, insetSize, 0));
216 }
217
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700218 mGridView = (GridView) view.findViewById(R.id.grid);
219 mGridView.setOnItemClickListener(mItemListener);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700220 mGridView.setMultiChoiceModeListener(mMultiListener);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700221 mGridView.setRecyclerListener(mRecycleListener);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700222
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700223 return view;
224 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700225
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700226 @Override
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700227 public void onDestroyView() {
228 super.onDestroyView();
229
230 // Cancel any outstanding thumbnail requests
231 final ViewGroup target = (mListView.getAdapter() != null) ? mListView : mGridView;
232 final int count = target.getChildCount();
233 for (int i = 0; i < count; i++) {
234 final View view = target.getChildAt(i);
235 mRecycleListener.onMovedToScrapHeap(view);
236 }
Jeff Sharkeyfaaeb392013-10-04 14:44:56 -0700237
238 // Tear down any selection in progress
239 mListView.setChoiceMode(AbsListView.CHOICE_MODE_NONE);
240 mGridView.setChoiceMode(AbsListView.CHOICE_MODE_NONE);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700241 }
242
243 @Override
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700244 public void onActivityCreated(Bundle savedInstanceState) {
245 super.onActivityCreated(savedInstanceState);
246
247 final Context context = getActivity();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700248 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700249
Jeff Sharkey9656a532013-09-13 13:42:19 -0700250 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
251 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
252
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700253 mAdapter = new DocumentsAdapter();
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700254 mType = getArguments().getInt(EXTRA_TYPE);
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700255 mStateKey = buildStateKey(root, doc);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700256
Jeff Sharkey9656a532013-09-13 13:42:19 -0700257 if (mType == TYPE_RECENT_OPEN) {
258 // Hide titles when showing recents for picking images/videos
259 mHideGridTitles = MimePredicate.mimeMatches(
260 MimePredicate.VISUAL_MIMES, state.acceptMimes);
261 } else {
262 mHideGridTitles = (doc != null) && doc.isGridTitlesHidden();
263 }
264
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700265 final ActivityManager am = (ActivityManager) context.getSystemService(
266 Context.ACTIVITY_SERVICE);
267 mSvelteRecents = am.isLowRamDevice() && (mType == TYPE_RECENT_OPEN);
268
Jeff Sharkey46899c82013-08-18 22:26:48 -0700269 mCallbacks = new LoaderCallbacks<DirectoryResult>() {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700270 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700271 public Loader<DirectoryResult> onCreateLoader(int id, Bundle args) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700272 final String query = getArguments().getString(EXTRA_QUERY);
Jeff Sharkey46165b52013-07-31 20:53:22 -0700273
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700274 Uri contentsUri;
275 switch (mType) {
276 case TYPE_NORMAL:
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700277 contentsUri = DocumentsContract.buildChildDocumentsUri(
278 doc.authority, doc.documentId);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700279 if (state.action == ACTION_MANAGE) {
280 contentsUri = DocumentsContract.setManageMode(contentsUri);
281 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700282 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700283 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700284 case TYPE_SEARCH:
285 contentsUri = DocumentsContract.buildSearchDocumentsUri(
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700286 root.authority, root.rootId, query);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700287 if (state.action == ACTION_MANAGE) {
288 contentsUri = DocumentsContract.setManageMode(contentsUri);
289 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700290 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700291 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700292 case TYPE_RECENT_OPEN:
Jeff Sharkey1c903cc2013-09-02 17:19:40 -0700293 final RootsCache roots = DocumentsApplication.getRootsCache(context);
Jeff Sharkey8b997042013-09-19 15:25:56 -0700294 return new RecentLoader(context, roots, state);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700295 default:
296 throw new IllegalStateException("Unknown type " + mType);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700297 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700298 }
299
300 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700301 public void onLoadFinished(Loader<DirectoryResult> loader, DirectoryResult result) {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700302 if (!isAdded()) return;
303
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700304 mAdapter.swapResult(result);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700305
306 // Push latest state up to UI
307 // TODO: if mode change was racing with us, don't overwrite it
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700308 if (result.mode != MODE_UNKNOWN) {
309 state.derivedMode = result.mode;
310 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700311 state.derivedSortOrder = result.sortOrder;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700312 ((BaseActivity) context).onStateChanged();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700313
314 updateDisplayState();
315
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700316 // When launched into empty recents, show drawer
317 if (mType == TYPE_RECENT_OPEN && mAdapter.isEmpty() && !state.stackTouched) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700318 ((BaseActivity) context).setRootsDrawerOpen(true);
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700319 }
320
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700321 // Restore any previous instance state
322 final SparseArray<Parcelable> container = state.dirState.remove(mStateKey);
323 if (container != null && !getArguments().getBoolean(EXTRA_IGNORE_STATE, false)) {
324 getView().restoreHierarchyState(container);
325 } else if (mLastSortOrder != state.derivedSortOrder) {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700326 mListView.smoothScrollToPosition(0);
327 mGridView.smoothScrollToPosition(0);
328 }
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700329
330 mLastSortOrder = state.derivedSortOrder;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700331 }
332
333 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700334 public void onLoaderReset(Loader<DirectoryResult> loader) {
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700335 mAdapter.swapResult(null);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700336 }
337 };
338
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700339 // Kick off loader at least once
340 getLoaderManager().restartLoader(mLoaderId, null, mCallbacks);
341
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700342 updateDisplayState();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700343 }
344
Jeff Sharkey42d26792013-09-06 13:22:09 -0700345 @Override
Ben Kwaf5858932015-04-07 15:43:39 -0700346 public void onActivityResult(int requestCode, int resultCode, Intent data) {
347 final Context context = getActivity();
348 final Resources res = context.getResources();
349
350 // There's only one request code right now. Replace this with a switch statement or
351 // something more scalable when more codes are added.
352 if (requestCode != REQUEST_COPY_DESTINATION) {
353 return;
354 }
355 if (resultCode == Activity.RESULT_CANCELED || data == null) {
356 // User pressed the back button or otherwise cancelled the destination pick. Don't
357 // proceed with the copy.
358 return;
359 }
360
Tomasz Mikolajewski2023fcf2015-04-10 10:30:33 +0900361 final List<DocumentInfo> docs = mSelectedDocumentsForCopy;
362 final Intent copyIntent = new Intent(context, CopyService.class);
363 copyIntent.putParcelableArrayListExtra(CopyService.EXTRA_SRC_LIST, new ArrayList<DocumentInfo>(docs));
364 copyIntent.putExtra(CopyService.EXTRA_STACK, data.getParcelableExtra(CopyService.EXTRA_STACK));
Ben Kwaf5858932015-04-07 15:43:39 -0700365
366 Toast.makeText(context,
367 res.getQuantityString(R.plurals.copy_begin, docs.size(), docs.size()),
368 Toast.LENGTH_SHORT).show();
369 context.startService(copyIntent);
370 }
371
372 @Override
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700373 public void onStop() {
374 super.onStop();
375
376 // Remember last scroll location
377 final SparseArray<Parcelable> container = new SparseArray<Parcelable>();
378 getView().saveHierarchyState(container);
379 final State state = getDisplayState(this);
380 state.dirState.put(mStateKey, container);
381 }
382
383 @Override
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700384 public void onResume() {
385 super.onResume();
Jeff Sharkey42d26792013-09-06 13:22:09 -0700386 updateDisplayState();
387 }
388
Jeff Sharkeye8d13ea2014-08-08 15:10:03 -0700389 public void onDisplayStateChanged() {
390 updateDisplayState();
391 }
392
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700393 public void onUserSortOrderChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700394 // Sort order change always triggers reload; we'll trigger state change
395 // on the flip side.
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700396 getLoaderManager().restartLoader(mLoaderId, null, mCallbacks);
397 }
398
399 public void onUserModeChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700400 final ContentResolver resolver = getActivity().getContentResolver();
401 final State state = getDisplayState(this);
402
403 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
404 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
405
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700406 if (root != null && doc != null) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700407 final Uri stateUri = RecentsProvider.buildState(
408 root.authority, root.rootId, doc.documentId);
409 final ContentValues values = new ContentValues();
410 values.put(StateColumns.MODE, state.userMode);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700411
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700412 new AsyncTask<Void, Void, Void>() {
413 @Override
414 protected Void doInBackground(Void... params) {
415 resolver.insert(stateUri, values);
416 return null;
417 }
418 }.execute();
419 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700420
421 // Mode change is just visual change; no need to kick loader, and
422 // deliver change event immediately.
423 state.derivedMode = state.userMode;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700424 ((BaseActivity) getActivity()).onStateChanged();
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700425
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700426 updateDisplayState();
427 }
428
429 private void updateDisplayState() {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700430 final State state = getDisplayState(this);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700431
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700432 if (mLastMode == state.derivedMode && mLastShowSize == state.showSize) return;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700433 mLastMode = state.derivedMode;
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700434 mLastShowSize = state.showSize;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700435
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700436 mListView.setVisibility(state.derivedMode == MODE_LIST ? View.VISIBLE : View.GONE);
437 mGridView.setVisibility(state.derivedMode == MODE_GRID ? View.VISIBLE : View.GONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700438
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700439 final int choiceMode;
Jeff Sharkey3c28b792013-07-01 17:22:02 -0700440 if (state.allowMultiple) {
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700441 choiceMode = ListView.CHOICE_MODE_MULTIPLE_MODAL;
442 } else {
443 choiceMode = ListView.CHOICE_MODE_NONE;
444 }
445
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700446 final int thumbSize;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700447 if (state.derivedMode == MODE_GRID) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700448 thumbSize = getResources().getDimensionPixelSize(R.dimen.grid_width);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700449 mListView.setAdapter(null);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700450 mListView.setChoiceMode(ListView.CHOICE_MODE_NONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700451 mGridView.setAdapter(mAdapter);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700452 mGridView.setColumnWidth(getResources().getDimensionPixelSize(R.dimen.grid_width));
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700453 mGridView.setNumColumns(GridView.AUTO_FIT);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700454 mGridView.setChoiceMode(choiceMode);
455 mCurrentView = mGridView;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700456 } else if (state.derivedMode == MODE_LIST) {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700457 thumbSize = getResources().getDimensionPixelSize(R.dimen.icon_size);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700458 mGridView.setAdapter(null);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700459 mGridView.setChoiceMode(ListView.CHOICE_MODE_NONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700460 mListView.setAdapter(mAdapter);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700461 mListView.setChoiceMode(choiceMode);
462 mCurrentView = mListView;
Jeff Sharkey3c28b792013-07-01 17:22:02 -0700463 } else {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700464 throw new IllegalStateException("Unknown state " + state.derivedMode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700465 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700466
467 mThumbSize = new Point(thumbSize, thumbSize);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700468 }
469
470 private OnItemClickListener mItemListener = new OnItemClickListener() {
471 @Override
472 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700473 final Cursor cursor = mAdapter.getItem(position);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700474 if (cursor != null) {
Jeff Sharkey7cf49032013-09-26 10:54:16 -0700475 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
476 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
477 if (isDocumentEnabled(docMimeType, docFlags)) {
478 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700479 ((BaseActivity) getActivity()).onDocumentPicked(doc);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700480 }
Jeff Sharkeyf339f252013-08-15 16:17:41 -0700481 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700482 }
483 };
484
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700485 private MultiChoiceModeListener mMultiListener = new MultiChoiceModeListener() {
486 @Override
487 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
488 mode.getMenuInflater().inflate(R.menu.mode_directory, menu);
Stefan Wysocki43c97ea2014-03-04 11:27:55 +0100489 mode.setTitle(getResources()
490 .getString(R.string.mode_selected_count, mCurrentView.getCheckedItemCount()));
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700491 return true;
492 }
493
494 @Override
495 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700496 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700497
498 final MenuItem open = menu.findItem(R.id.menu_open);
499 final MenuItem share = menu.findItem(R.id.menu_share);
500 final MenuItem delete = menu.findItem(R.id.menu_delete);
Ben Kwa41b26c12015-03-31 10:11:43 -0700501 final MenuItem copy = menu.findItem(R.id.menu_copy);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700502
Jeff Sharkey311a7d82015-04-11 21:27:21 -0700503 final boolean manageOrBrowse = (state.action == ACTION_MANAGE
504 || state.action == ACTION_BROWSE || state.action == ACTION_BROWSE_ALL);
505
506 open.setVisible(!manageOrBrowse);
507 share.setVisible(manageOrBrowse);
508 delete.setVisible(manageOrBrowse);
509
510 // TODO: unhide copying when ready
511 copy.setVisible(manageOrBrowse &&
Ben Kwaf527c632015-04-08 15:03:35 -0700512 SystemProperties.getBoolean("debug.documentsui.enable_copy", false));
Jeff Sharkey873daa32013-08-18 17:38:20 -0700513
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700514 return true;
515 }
516
517 @Override
518 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
Jeff Sharkey873daa32013-08-18 17:38:20 -0700519 final SparseBooleanArray checked = mCurrentView.getCheckedItemPositions();
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700520 final ArrayList<DocumentInfo> docs = Lists.newArrayList();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700521 final int size = checked.size();
522 for (int i = 0; i < size; i++) {
523 if (checked.valueAt(i)) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700524 final Cursor cursor = mAdapter.getItem(checked.keyAt(i));
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700525 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700526 docs.add(doc);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700527 }
Jeff Sharkey873daa32013-08-18 17:38:20 -0700528 }
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700529
Jeff Sharkey873daa32013-08-18 17:38:20 -0700530 final int id = item.getItemId();
531 if (id == R.id.menu_open) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700532 BaseActivity.get(DirectoryFragment.this).onDocumentsPicked(docs);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700533 mode.finish();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700534 return true;
Jeff Sharkey873daa32013-08-18 17:38:20 -0700535
536 } else if (id == R.id.menu_share) {
537 onShareDocuments(docs);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700538 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700539 return true;
540
541 } else if (id == R.id.menu_delete) {
542 onDeleteDocuments(docs);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700543 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700544 return true;
545
Ben Kwa41b26c12015-03-31 10:11:43 -0700546 } else if (id == R.id.menu_copy) {
547 onCopyDocuments(docs);
548 mode.finish();
549 return true;
550
Ben Kwa512a6ba2015-03-31 08:15:21 -0700551 } else if (id == R.id.menu_select_all) {
552 int count = mCurrentView.getCount();
553 for (int i = 0; i < count; i++) {
554 mCurrentView.setItemChecked(i, true);
555 }
556 updateDisplayState();
557 return true;
558
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700559 } else {
560 return false;
561 }
562 }
563
564 @Override
565 public void onDestroyActionMode(ActionMode mode) {
566 // ignored
567 }
568
569 @Override
570 public void onItemCheckedStateChanged(
571 ActionMode mode, int position, long id, boolean checked) {
572 if (checked) {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700573 // Directories and footer items cannot be checked
574 boolean valid = false;
575
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700576 final Cursor cursor = mAdapter.getItem(position);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700577 if (cursor != null) {
578 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
Jeff Sharkey7cf49032013-09-26 10:54:16 -0700579 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
Ben Kwaf527c632015-04-08 15:03:35 -0700580 valid = isDocumentEnabled(docMimeType, docFlags);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700581 }
582
583 if (!valid) {
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700584 mCurrentView.setItemChecked(position, false);
585 }
586 }
587
588 mode.setTitle(getResources()
589 .getString(R.string.mode_selected_count, mCurrentView.getCheckedItemCount()));
590 }
591 };
592
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700593 private RecyclerListener mRecycleListener = new RecyclerListener() {
594 @Override
595 public void onMovedToScrapHeap(View view) {
596 final ImageView iconThumb = (ImageView) view.findViewById(R.id.icon_thumb);
597 if (iconThumb != null) {
598 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
599 if (oldTask != null) {
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700600 oldTask.preempt();
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700601 iconThumb.setTag(null);
602 }
603 }
604 }
605 };
606
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700607 private void onShareDocuments(List<DocumentInfo> docs) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700608 Intent intent;
Ben Kwaf527c632015-04-08 15:03:35 -0700609
610 // Filter out directories - those can't be shared.
611 List<DocumentInfo> docsForSend = Lists.newArrayList();
612 for (DocumentInfo doc: docs) {
613 if (!Document.MIME_TYPE_DIR.equals(doc.mimeType)) {
614 docsForSend.add(doc);
615 }
616 }
617
618 if (docsForSend.size() == 1) {
619 final DocumentInfo doc = docsForSend.get(0);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700620
Jeff Sharkey873daa32013-08-18 17:38:20 -0700621 intent = new Intent(Intent.ACTION_SEND);
622 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
623 intent.addCategory(Intent.CATEGORY_DEFAULT);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700624 intent.setType(doc.mimeType);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700625 intent.putExtra(Intent.EXTRA_STREAM, doc.derivedUri);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700626
Ben Kwaf527c632015-04-08 15:03:35 -0700627 } else if (docsForSend.size() > 1) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700628 intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
629 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
630 intent.addCategory(Intent.CATEGORY_DEFAULT);
631
632 final ArrayList<String> mimeTypes = Lists.newArrayList();
633 final ArrayList<Uri> uris = Lists.newArrayList();
Ben Kwaf527c632015-04-08 15:03:35 -0700634 for (DocumentInfo doc : docsForSend) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700635 mimeTypes.add(doc.mimeType);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700636 uris.add(doc.derivedUri);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700637 }
638
639 intent.setType(findCommonMimeType(mimeTypes));
640 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
641
642 } else {
643 return;
Jeff Sharkey873daa32013-08-18 17:38:20 -0700644 }
645
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700646 intent = Intent.createChooser(intent, getActivity().getText(R.string.share_via));
Jeff Sharkey873daa32013-08-18 17:38:20 -0700647 startActivity(intent);
648 }
649
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700650 private void onDeleteDocuments(List<DocumentInfo> docs) {
Jeff Sharkey873daa32013-08-18 17:38:20 -0700651 final Context context = getActivity();
652 final ContentResolver resolver = context.getContentResolver();
653
654 boolean hadTrouble = false;
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700655 for (DocumentInfo doc : docs) {
Jeff Sharkey873daa32013-08-18 17:38:20 -0700656 if (!doc.isDeleteSupported()) {
657 Log.w(TAG, "Skipping " + doc);
658 hadTrouble = true;
659 continue;
660 }
661
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700662 ContentProviderClient client = null;
663 try {
664 client = DocumentsApplication.acquireUnstableProviderOrThrow(
665 resolver, doc.derivedUri.getAuthority());
666 DocumentsContract.deleteDocument(client, doc.derivedUri);
667 } catch (Exception e) {
Jeff Sharkey4c5fe522013-09-03 14:17:06 -0700668 Log.w(TAG, "Failed to delete " + doc);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700669 hadTrouble = true;
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700670 } finally {
671 ContentProviderClient.releaseQuietly(client);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700672 }
673 }
674
675 if (hadTrouble) {
676 Toast.makeText(context, R.string.toast_failed_delete, Toast.LENGTH_SHORT).show();
677 }
678 }
679
Ben Kwa41b26c12015-03-31 10:11:43 -0700680 private void onCopyDocuments(List<DocumentInfo> docs) {
Ben Kwaf5858932015-04-07 15:43:39 -0700681 mSelectedDocumentsForCopy = docs;
Ben Kwa41b26c12015-03-31 10:11:43 -0700682
Ben Kwaf5858932015-04-07 15:43:39 -0700683 // Pop up a dialog to pick a destination. This is inadequate but works for now.
684 // TODO: Implement a picker that is to spec.
Daichi Hironocaadd412015-04-10 15:50:38 +0900685 final Intent intent = new Intent(
Daichi Hirono22574ed2015-04-15 13:41:18 +0900686 BaseActivity.DocumentsIntent.ACTION_OPEN_COPY_DESTINATION,
Daichi Hironocaadd412015-04-10 15:50:38 +0900687 Uri.EMPTY,
688 getActivity(),
689 DocumentsActivity.class);
Daichi Hironof2a822d2015-04-14 17:12:54 +0900690 boolean directoryCopy = false;
691 for (DocumentInfo info : docs) {
692 if (Document.MIME_TYPE_DIR.equals(info.mimeType)) {
693 directoryCopy = true;
694 break;
695 }
696 }
Daichi Hirono22574ed2015-04-15 13:41:18 +0900697 intent.putExtra(BaseActivity.DocumentsIntent.EXTRA_DIRECTORY_COPY, directoryCopy);
Ben Kwaf5858932015-04-07 15:43:39 -0700698 startActivityForResult(intent, REQUEST_COPY_DESTINATION);
Ben Kwa41b26c12015-03-31 10:11:43 -0700699 }
700
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700701 private static State getDisplayState(Fragment fragment) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700702 return ((BaseActivity) fragment.getActivity()).getDisplayState();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700703 }
704
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700705 private static abstract class Footer {
706 private final int mItemViewType;
707
708 public Footer(int itemViewType) {
709 mItemViewType = itemViewType;
710 }
711
712 public abstract View getView(View convertView, ViewGroup parent);
713
714 public int getItemViewType() {
715 return mItemViewType;
716 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700717 }
718
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700719 private class LoadingFooter extends Footer {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700720 public LoadingFooter() {
721 super(1);
722 }
723
Jeff Sharkey20b32272013-09-03 15:25:52 -0700724 @Override
725 public View getView(View convertView, ViewGroup parent) {
726 final Context context = parent.getContext();
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700727 final State state = getDisplayState(DirectoryFragment.this);
728
Jeff Sharkey20b32272013-09-03 15:25:52 -0700729 if (convertView == null) {
730 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700731 if (state.derivedMode == MODE_LIST) {
732 convertView = inflater.inflate(R.layout.item_loading_list, parent, false);
733 } else if (state.derivedMode == MODE_GRID) {
734 convertView = inflater.inflate(R.layout.item_loading_grid, parent, false);
735 } else {
736 throw new IllegalStateException();
737 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700738 }
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700739
Jeff Sharkey20b32272013-09-03 15:25:52 -0700740 return convertView;
741 }
742 }
743
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700744 private class MessageFooter extends Footer {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700745 private final int mIcon;
746 private final String mMessage;
747
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700748 public MessageFooter(int itemViewType, int icon, String message) {
749 super(itemViewType);
Jeff Sharkey20b32272013-09-03 15:25:52 -0700750 mIcon = icon;
751 mMessage = message;
752 }
753
754 @Override
755 public View getView(View convertView, ViewGroup parent) {
756 final Context context = parent.getContext();
757 final State state = getDisplayState(DirectoryFragment.this);
758
759 if (convertView == null) {
760 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700761 if (state.derivedMode == MODE_LIST) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700762 convertView = inflater.inflate(R.layout.item_message_list, parent, false);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700763 } else if (state.derivedMode == MODE_GRID) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700764 convertView = inflater.inflate(R.layout.item_message_grid, parent, false);
765 } else {
766 throw new IllegalStateException();
767 }
768 }
769
770 final ImageView icon = (ImageView) convertView.findViewById(android.R.id.icon);
771 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
772 icon.setImageResource(mIcon);
773 title.setText(mMessage);
774 return convertView;
775 }
776 }
777
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700778 private class DocumentsAdapter extends BaseAdapter {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700779 private Cursor mCursor;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700780 private int mCursorCount;
781
782 private List<Footer> mFooters = Lists.newArrayList();
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700783
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700784 public void swapResult(DirectoryResult result) {
785 mCursor = result != null ? result.cursor : null;
786 mCursorCount = mCursor != null ? mCursor.getCount() : 0;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700787
788 mFooters.clear();
789
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700790 final Bundle extras = mCursor != null ? mCursor.getExtras() : null;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700791 if (extras != null) {
792 final String info = extras.getString(DocumentsContract.EXTRA_INFO);
793 if (info != null) {
Jeff Sharkey34c54092014-08-08 13:08:56 -0700794 mFooters.add(new MessageFooter(2, R.drawable.ic_dialog_info, info));
Jeff Sharkey20b32272013-09-03 15:25:52 -0700795 }
796 final String error = extras.getString(DocumentsContract.EXTRA_ERROR);
797 if (error != null) {
Jeff Sharkey34c54092014-08-08 13:08:56 -0700798 mFooters.add(new MessageFooter(3, R.drawable.ic_dialog_alert, error));
Jeff Sharkey20b32272013-09-03 15:25:52 -0700799 }
800 if (extras.getBoolean(DocumentsContract.EXTRA_LOADING, false)) {
801 mFooters.add(new LoadingFooter());
802 }
803 }
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700804
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700805 if (result != null && result.exception != null) {
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700806 mFooters.add(new MessageFooter(
Jeff Sharkey34c54092014-08-08 13:08:56 -0700807 3, R.drawable.ic_dialog_alert, getString(R.string.query_error)));
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700808 }
809
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700810 if (isEmpty()) {
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700811 mEmptyView.setVisibility(View.VISIBLE);
812 } else {
813 mEmptyView.setVisibility(View.GONE);
814 }
815
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700816 notifyDataSetChanged();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700817 }
818
819 @Override
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700820 public View getView(int position, View convertView, ViewGroup parent) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700821 if (position < mCursorCount) {
822 return getDocumentView(position, convertView, parent);
823 } else {
824 position -= mCursorCount;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700825 convertView = mFooters.get(position).getView(convertView, parent);
826 // Only the view itself is disabled; contents inside shouldn't
827 // be dimmed.
828 convertView.setEnabled(false);
829 return convertView;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700830 }
831 }
832
833 private View getDocumentView(int position, View convertView, ViewGroup parent) {
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700834 final Context context = parent.getContext();
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700835 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700836
Jeff Sharkey9656a532013-09-13 13:42:19 -0700837 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
838
Jeff Sharkey873daa32013-08-18 17:38:20 -0700839 final RootsCache roots = DocumentsApplication.getRootsCache(context);
840 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
841 context, mThumbSize);
842
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700843 if (convertView == null) {
844 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700845 if (state.derivedMode == MODE_LIST) {
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700846 convertView = inflater.inflate(R.layout.item_doc_list, parent, false);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700847 } else if (state.derivedMode == MODE_GRID) {
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700848 convertView = inflater.inflate(R.layout.item_doc_grid, parent, false);
849 } else {
850 throw new IllegalStateException();
851 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700852 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700853
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700854 final Cursor cursor = getItem(position);
855
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700856 final String docAuthority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY);
857 final String docRootId = getCursorString(cursor, RootCursorWrapper.COLUMN_ROOT_ID);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700858 final String docId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
859 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
860 final String docDisplayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
861 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
862 final int docIcon = getCursorInt(cursor, Document.COLUMN_ICON);
863 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
864 final String docSummary = getCursorString(cursor, Document.COLUMN_SUMMARY);
865 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700866
Jeff Sharkey9656a532013-09-13 13:42:19 -0700867 final View line1 = convertView.findViewById(R.id.line1);
868 final View line2 = convertView.findViewById(R.id.line2);
869
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700870 final ImageView iconMime = (ImageView) convertView.findViewById(R.id.icon_mime);
871 final ImageView iconThumb = (ImageView) convertView.findViewById(R.id.icon_thumb);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700872 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
873 final ImageView icon1 = (ImageView) convertView.findViewById(android.R.id.icon1);
Jeff Sharkey9656a532013-09-13 13:42:19 -0700874 final ImageView icon2 = (ImageView) convertView.findViewById(android.R.id.icon2);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700875 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
876 final TextView date = (TextView) convertView.findViewById(R.id.date);
877 final TextView size = (TextView) convertView.findViewById(R.id.size);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700878
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700879 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700880 if (oldTask != null) {
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700881 oldTask.preempt();
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700882 iconThumb.setTag(null);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700883 }
884
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700885 iconMime.animate().cancel();
886 iconThumb.animate().cancel();
887
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700888 final boolean supportsThumbnail = (docFlags & Document.FLAG_SUPPORTS_THUMBNAIL) != 0;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700889 final boolean allowThumbnail = (state.derivedMode == MODE_GRID)
Jeff Sharkey9656a532013-09-13 13:42:19 -0700890 || MimePredicate.mimeMatches(MimePredicate.VISUAL_MIMES, docMimeType);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700891 final boolean showThumbnail = supportsThumbnail && allowThumbnail && !mSvelteRecents;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700892
Jeff Sharkey7e544612014-08-29 15:38:27 -0700893 final boolean enabled = isDocumentEnabled(docMimeType, docFlags);
894 final float iconAlpha = (state.derivedMode == MODE_LIST && !enabled) ? 0.5f : 1f;
895
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700896 boolean cacheHit = false;
Jeff Sharkey9656a532013-09-13 13:42:19 -0700897 if (showThumbnail) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700898 final Uri uri = DocumentsContract.buildDocumentUri(docAuthority, docId);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700899 final Bitmap cachedResult = thumbs.get(uri);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700900 if (cachedResult != null) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700901 iconThumb.setImageBitmap(cachedResult);
902 cacheHit = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700903 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700904 iconThumb.setImageDrawable(null);
905 final ThumbnailAsyncTask task = new ThumbnailAsyncTask(
Jeff Sharkey7e544612014-08-29 15:38:27 -0700906 uri, iconMime, iconThumb, mThumbSize, iconAlpha);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700907 iconThumb.setTag(task);
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700908 ProviderExecutor.forAuthority(docAuthority).execute(task);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700909 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700910 }
911
912 // Always throw MIME icon into place, even when a thumbnail is being
913 // loaded in background.
914 if (cacheHit) {
915 iconMime.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700916 iconMime.setImageDrawable(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700917 iconThumb.setAlpha(1f);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700918 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700919 iconMime.setAlpha(1f);
920 iconThumb.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700921 iconThumb.setImageDrawable(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700922 if (docIcon != 0) {
923 iconMime.setImageDrawable(
924 IconUtils.loadPackageIcon(context, docAuthority, docIcon));
925 } else {
Jeff Sharkey2ceff512013-09-18 18:03:49 -0700926 iconMime.setImageDrawable(IconUtils.loadMimeIcon(
927 context, docMimeType, docAuthority, docId, state.derivedMode));
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700928 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700929 }
930
Jeff Sharkey9656a532013-09-13 13:42:19 -0700931 boolean hasLine1 = false;
Jeff Sharkey42d26792013-09-06 13:22:09 -0700932 boolean hasLine2 = false;
933
Jeff Sharkey9656a532013-09-13 13:42:19 -0700934 final boolean hideTitle = (state.derivedMode == MODE_GRID) && mHideGridTitles;
935 if (!hideTitle) {
936 title.setText(docDisplayName);
937 hasLine1 = true;
938 }
939
940 Drawable iconDrawable = null;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700941 if (mType == TYPE_RECENT_OPEN) {
Jeff Sharkey8b997042013-09-19 15:25:56 -0700942 // We've already had to enumerate roots before any results can
943 // be shown, so this will never block.
944 final RootInfo root = roots.getRootBlocking(docAuthority, docRootId);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -0700945 if (state.derivedMode == MODE_GRID) {
Jeff Sharkey34c54092014-08-08 13:08:56 -0700946 iconDrawable = root.loadGridIcon(context);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -0700947 } else {
948 iconDrawable = root.loadIcon(context);
949 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700950
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700951 if (summary != null) {
952 final boolean alwaysShowSummary = getResources()
953 .getBoolean(R.bool.always_show_summary);
954 if (alwaysShowSummary) {
955 summary.setText(root.getDirectoryString());
956 summary.setVisibility(View.VISIBLE);
957 hasLine2 = true;
958 } else {
Jeff Sharkey8b997042013-09-19 15:25:56 -0700959 if (iconDrawable != null && roots.isIconUniqueBlocking(root)) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700960 // No summary needed if icon speaks for itself
961 summary.setVisibility(View.INVISIBLE);
962 } else {
963 summary.setText(root.getDirectoryString());
964 summary.setVisibility(View.VISIBLE);
965 summary.setTextAlignment(TextView.TEXT_ALIGNMENT_TEXT_END);
966 hasLine2 = true;
967 }
968 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700969 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700970 } else {
Jeff Sharkey9656a532013-09-13 13:42:19 -0700971 // Directories showing thumbnails in grid mode get a little icon
972 // hint to remind user they're a directory.
973 if (Document.MIME_TYPE_DIR.equals(docMimeType) && state.derivedMode == MODE_GRID
974 && showThumbnail) {
Jeff Sharkey7e544612014-08-29 15:38:27 -0700975 iconDrawable = IconUtils.applyTintAttr(context, R.drawable.ic_doc_folder,
Jeff Sharkey34c54092014-08-08 13:08:56 -0700976 android.R.attr.textColorPrimaryInverse);
Jeff Sharkey9656a532013-09-13 13:42:19 -0700977 }
978
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700979 if (summary != null) {
980 if (docSummary != null) {
981 summary.setText(docSummary);
982 summary.setVisibility(View.VISIBLE);
983 hasLine2 = true;
984 } else {
985 summary.setVisibility(View.INVISIBLE);
986 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700987 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700988 }
989
Jeff Sharkey9656a532013-09-13 13:42:19 -0700990 if (icon1 != null) icon1.setVisibility(View.GONE);
991 if (icon2 != null) icon2.setVisibility(View.GONE);
992
993 if (iconDrawable != null) {
994 if (hasLine1) {
995 icon1.setVisibility(View.VISIBLE);
996 icon1.setImageDrawable(iconDrawable);
997 } else {
998 icon2.setVisibility(View.VISIBLE);
999 icon2.setImageDrawable(iconDrawable);
1000 }
1001 }
1002
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001003 if (docLastModified == -1) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001004 date.setText(null);
1005 } else {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001006 date.setText(formatTime(context, docLastModified));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001007 hasLine2 = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001008 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001009
1010 if (state.showSize) {
1011 size.setVisibility(View.VISIBLE);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001012 if (Document.MIME_TYPE_DIR.equals(docMimeType) || docSize == -1) {
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001013 size.setText(null);
1014 } else {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001015 size.setText(Formatter.formatFileSize(context, docSize));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001016 hasLine2 = true;
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001017 }
1018 } else {
1019 size.setVisibility(View.GONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001020 }
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001021
Jeff Sharkey9656a532013-09-13 13:42:19 -07001022 if (line1 != null) {
1023 line1.setVisibility(hasLine1 ? View.VISIBLE : View.GONE);
1024 }
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001025 if (line2 != null) {
1026 line2.setVisibility(hasLine2 ? View.VISIBLE : View.GONE);
1027 }
Jeff Sharkey42d26792013-09-06 13:22:09 -07001028
Jeff Sharkey7e544612014-08-29 15:38:27 -07001029 setEnabledRecursive(convertView, enabled);
1030
1031 iconMime.setAlpha(iconAlpha);
1032 iconThumb.setAlpha(iconAlpha);
1033 if (icon1 != null) icon1.setAlpha(iconAlpha);
1034 if (icon2 != null) icon2.setAlpha(iconAlpha);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001035
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001036 return convertView;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001037 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001038
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001039 @Override
1040 public int getCount() {
Jeff Sharkey20b32272013-09-03 15:25:52 -07001041 return mCursorCount + mFooters.size();
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001042 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001043
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001044 @Override
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001045 public Cursor getItem(int position) {
Jeff Sharkey20b32272013-09-03 15:25:52 -07001046 if (position < mCursorCount) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001047 mCursor.moveToPosition(position);
Jeff Sharkey20b32272013-09-03 15:25:52 -07001048 return mCursor;
1049 } else {
1050 return null;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001051 }
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001052 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001053
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001054 @Override
1055 public long getItemId(int position) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001056 return position;
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001057 }
Jeff Sharkey20b32272013-09-03 15:25:52 -07001058
1059 @Override
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001060 public int getViewTypeCount() {
1061 return 4;
1062 }
1063
1064 @Override
Jeff Sharkey20b32272013-09-03 15:25:52 -07001065 public int getItemViewType(int position) {
1066 if (position < mCursorCount) {
1067 return 0;
1068 } else {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001069 position -= mCursorCount;
1070 return mFooters.get(position).getItemViewType();
Jeff Sharkey20b32272013-09-03 15:25:52 -07001071 }
1072 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001073 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001074
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001075 private static class ThumbnailAsyncTask extends AsyncTask<Uri, Void, Bitmap>
1076 implements Preemptable {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001077 private final Uri mUri;
1078 private final ImageView mIconMime;
1079 private final ImageView mIconThumb;
Jeff Sharkey873daa32013-08-18 17:38:20 -07001080 private final Point mThumbSize;
Jeff Sharkey7e544612014-08-29 15:38:27 -07001081 private final float mTargetAlpha;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001082 private final CancellationSignal mSignal;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001083
Jeff Sharkey7e544612014-08-29 15:38:27 -07001084 public ThumbnailAsyncTask(Uri uri, ImageView iconMime, ImageView iconThumb, Point thumbSize,
1085 float targetAlpha) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001086 mUri = uri;
1087 mIconMime = iconMime;
1088 mIconThumb = iconThumb;
Jeff Sharkey873daa32013-08-18 17:38:20 -07001089 mThumbSize = thumbSize;
Jeff Sharkey7e544612014-08-29 15:38:27 -07001090 mTargetAlpha = targetAlpha;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001091 mSignal = new CancellationSignal();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001092 }
1093
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001094 @Override
1095 public void preempt() {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001096 cancel(false);
1097 mSignal.cancel();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001098 }
1099
1100 @Override
1101 protected Bitmap doInBackground(Uri... params) {
Jeff Sharkeyf63b7772013-10-01 17:57:41 -07001102 if (isCancelled()) return null;
1103
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001104 final Context context = mIconThumb.getContext();
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001105 final ContentResolver resolver = context.getContentResolver();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001106
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001107 ContentProviderClient client = null;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001108 Bitmap result = null;
1109 try {
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001110 client = DocumentsApplication.acquireUnstableProviderOrThrow(
1111 resolver, mUri.getAuthority());
1112 result = DocumentsContract.getDocumentThumbnail(client, mUri, mThumbSize, mSignal);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001113 if (result != null) {
Jeff Sharkey873daa32013-08-18 17:38:20 -07001114 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
1115 context, mThumbSize);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001116 thumbs.put(mUri, result);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001117 }
1118 } catch (Exception e) {
Jeff Sharkeye39a89b2013-10-29 11:56:37 -07001119 if (!(e instanceof OperationCanceledException)) {
1120 Log.w(TAG, "Failed to load thumbnail for " + mUri + ": " + e);
1121 }
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001122 } finally {
1123 ContentProviderClient.releaseQuietly(client);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001124 }
1125 return result;
1126 }
1127
1128 @Override
1129 protected void onPostExecute(Bitmap result) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001130 if (mIconThumb.getTag() == this && result != null) {
1131 mIconThumb.setTag(null);
1132 mIconThumb.setImageBitmap(result);
1133
Jeff Sharkey7e544612014-08-29 15:38:27 -07001134 mIconMime.setAlpha(mTargetAlpha);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001135 mIconMime.animate().alpha(0f).start();
1136 mIconThumb.setAlpha(0f);
Jeff Sharkey7e544612014-08-29 15:38:27 -07001137 mIconThumb.animate().alpha(mTargetAlpha).start();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001138 }
1139 }
1140 }
1141
1142 private static String formatTime(Context context, long when) {
1143 // TODO: DateUtils should make this easier
1144 Time then = new Time();
1145 then.set(when);
1146 Time now = new Time();
1147 now.setToNow();
1148
1149 int flags = DateUtils.FORMAT_NO_NOON | DateUtils.FORMAT_NO_MIDNIGHT
1150 | DateUtils.FORMAT_ABBREV_ALL;
1151
1152 if (then.year != now.year) {
1153 flags |= DateUtils.FORMAT_SHOW_YEAR | DateUtils.FORMAT_SHOW_DATE;
1154 } else if (then.yearDay != now.yearDay) {
1155 flags |= DateUtils.FORMAT_SHOW_DATE;
1156 } else {
1157 flags |= DateUtils.FORMAT_SHOW_TIME;
1158 }
1159
1160 return DateUtils.formatDateTime(context, when, flags);
1161 }
Jeff Sharkeyb3620442013-09-01 18:41:04 -07001162
1163 private String findCommonMimeType(List<String> mimeTypes) {
1164 String[] commonType = mimeTypes.get(0).split("/");
1165 if (commonType.length != 2) {
1166 return "*/*";
1167 }
1168
1169 for (int i = 1; i < mimeTypes.size(); i++) {
1170 String[] type = mimeTypes.get(i).split("/");
1171 if (type.length != 2) continue;
1172
1173 if (!commonType[1].equals(type[1])) {
1174 commonType[1] = "*";
1175 }
1176
1177 if (!commonType[0].equals(type[0])) {
1178 commonType[0] = "*";
1179 commonType[1] = "*";
1180 break;
1181 }
1182 }
1183
1184 return commonType[0] + "/" + commonType[1];
1185 }
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001186
1187 private void setEnabledRecursive(View v, boolean enabled) {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001188 if (v == null) return;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001189 if (v.isEnabled() == enabled) return;
1190 v.setEnabled(enabled);
1191
1192 if (v instanceof ViewGroup) {
1193 final ViewGroup vg = (ViewGroup) v;
1194 for (int i = vg.getChildCount() - 1; i >= 0; i--) {
1195 setEnabledRecursive(vg.getChildAt(i), enabled);
1196 }
1197 }
1198 }
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001199
1200 private boolean isDocumentEnabled(String docMimeType, int docFlags) {
1201 final State state = getDisplayState(DirectoryFragment.this);
1202
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001203 // Directories are always enabled
1204 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1205 return true;
1206 }
1207
Jeff Sharkey783ebc22013-09-26 19:42:52 -07001208 // Read-only files are disabled when creating
1209 if (state.action == ACTION_CREATE && (docFlags & Document.FLAG_SUPPORTS_WRITE) == 0) {
1210 return false;
1211 }
1212
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001213 return MimePredicate.mimeMatches(state.acceptMimes, docMimeType);
1214 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001215}