PreviewImageActivity.java 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2015 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hd that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. package com.owncloud.android.ui.preview;
  21. import android.annotation.SuppressLint;
  22. import android.content.BroadcastReceiver;
  23. import android.content.ComponentName;
  24. import android.content.Context;
  25. import android.content.Intent;
  26. import android.content.IntentFilter;
  27. import android.content.ServiceConnection;
  28. import android.os.Build;
  29. import android.os.Bundle;
  30. import android.os.Handler;
  31. import android.os.IBinder;
  32. import android.os.Message;
  33. import android.support.v4.view.GravityCompat;
  34. import android.support.v4.view.ViewPager;
  35. import android.support.v4.widget.DrawerLayout;
  36. import android.support.v7.app.ActionBar;
  37. import android.view.MenuItem;
  38. import android.view.View;
  39. import android.view.Window;
  40. import com.ortiz.touch.ExtendedViewPager;
  41. import com.owncloud.android.R;
  42. import com.owncloud.android.authentication.AccountUtils;
  43. import com.owncloud.android.datamodel.FileDataStorageManager;
  44. import com.owncloud.android.datamodel.OCFile;
  45. import com.owncloud.android.files.services.FileDownloader;
  46. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  47. import com.owncloud.android.files.services.FileUploader;
  48. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  49. import com.owncloud.android.lib.common.operations.OnRemoteOperationListener;
  50. import com.owncloud.android.lib.common.operations.RemoteOperation;
  51. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  52. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  53. import com.owncloud.android.lib.common.utils.Log_OC;
  54. import com.owncloud.android.operations.CreateShareOperation;
  55. import com.owncloud.android.operations.RemoveFileOperation;
  56. import com.owncloud.android.operations.SynchronizeFileOperation;
  57. import com.owncloud.android.operations.UnshareLinkOperation;
  58. import com.owncloud.android.ui.activity.FileActivity;
  59. import com.owncloud.android.ui.activity.FileDisplayActivity;
  60. import com.owncloud.android.ui.dialog.ShareFileDialogFragment;
  61. import com.owncloud.android.ui.fragment.FileFragment;
  62. /**
  63. * Holds a swiping galley where image files contained in an ownCloud directory are shown
  64. */
  65. public class PreviewImageActivity extends FileActivity implements
  66. FileFragment.ContainerActivity,
  67. ViewPager.OnPageChangeListener, OnRemoteOperationListener {
  68. public static final int DIALOG_SHORT_WAIT = 0;
  69. public static final String TAG = PreviewImageActivity.class.getSimpleName();
  70. public static final String KEY_WAITING_TO_PREVIEW = "WAITING_TO_PREVIEW";
  71. private static final String KEY_WAITING_FOR_BINDER = "WAITING_FOR_BINDER";
  72. private static final int INITIAL_HIDE_DELAY = 0; // immediate hide
  73. private ExtendedViewPager mViewPager;
  74. private PreviewImagePagerAdapter mPreviewImagePagerAdapter;
  75. private int mSavedPosition = 0;
  76. private boolean mHasSavedPosition = false;
  77. private boolean mRequestWaitingForBinder;
  78. private DownloadFinishReceiver mDownloadFinishReceiver;
  79. private View mFullScreenAnchorView;
  80. @Override
  81. protected void onCreate(Bundle savedInstanceState) {
  82. requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
  83. super.onCreate(savedInstanceState);
  84. setContentView(R.layout.preview_image_activity);
  85. // Navigation Drawer
  86. initDrawer();
  87. // ActionBar
  88. ActionBar actionBar = getSupportActionBar();
  89. updateActionBarTitleAndHomeButton(null);
  90. actionBar.hide();
  91. // Make sure we're running on Honeycomb or higher to use FullScreen and
  92. // Immersive Mode
  93. if (isHoneycombOrHigher()) {
  94. mFullScreenAnchorView = getWindow().getDecorView();
  95. // to keep our UI controls visibility in line with system bars
  96. // visibility
  97. mFullScreenAnchorView.setOnSystemUiVisibilityChangeListener
  98. (new View.OnSystemUiVisibilityChangeListener() {
  99. @SuppressLint("InlinedApi")
  100. @Override
  101. public void onSystemUiVisibilityChange(int flags) {
  102. boolean visible = (flags & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
  103. ActionBar actionBar = getSupportActionBar();
  104. if (visible) {
  105. actionBar.show();
  106. mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
  107. } else {
  108. actionBar.hide();
  109. mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
  110. }
  111. }
  112. });
  113. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  114. getWindow().setStatusBarColor(getResources().getColor(R.color.owncloud_blue_dark_transparent));
  115. }
  116. }
  117. if (savedInstanceState != null) {
  118. mRequestWaitingForBinder = savedInstanceState.getBoolean(KEY_WAITING_FOR_BINDER);
  119. } else {
  120. mRequestWaitingForBinder = false;
  121. }
  122. }
  123. private void initViewPager() {
  124. // get parent from path
  125. String parentPath = getFile().getRemotePath().substring(0,
  126. getFile().getRemotePath().lastIndexOf(getFile().getFileName()));
  127. OCFile parentFolder = getStorageManager().getFileByPath(parentPath);
  128. if (parentFolder == null) {
  129. // should not be necessary
  130. parentFolder = getStorageManager().getFileByPath(OCFile.ROOT_PATH);
  131. }
  132. // TODO Enable when "On Device" is recovered ?
  133. mPreviewImagePagerAdapter = new PreviewImagePagerAdapter(getSupportFragmentManager(),
  134. parentFolder, getAccount(), getStorageManager()/*, MainApp.getOnlyOnDevice()*/);
  135. mViewPager = (ExtendedViewPager) findViewById(R.id.fragmentPager);
  136. int position = mHasSavedPosition ? mSavedPosition :
  137. mPreviewImagePagerAdapter.getFilePosition(getFile());
  138. position = (position >= 0) ? position : 0;
  139. mViewPager.setAdapter(mPreviewImagePagerAdapter);
  140. mViewPager.setOnPageChangeListener(this);
  141. mViewPager.setCurrentItem(position);
  142. if (position == 0 && !getFile().isDown()) {
  143. // this is necessary because mViewPager.setCurrentItem(0) just after setting the
  144. // adapter does not result in a call to #onPageSelected(0)
  145. mRequestWaitingForBinder = true;
  146. }
  147. }
  148. protected void onPostCreate(Bundle savedInstanceState) {
  149. super.onPostCreate(savedInstanceState);
  150. // Trigger the initial hide() shortly after the activity has been
  151. // created, to briefly hint to the user that UI controls
  152. // are available
  153. delayedHide(INITIAL_HIDE_DELAY);
  154. }
  155. Handler mHideSystemUiHandler = new Handler() {
  156. @Override
  157. public void handleMessage(Message msg) {
  158. if (isHoneycombOrHigher()) {
  159. hideSystemUI(mFullScreenAnchorView);
  160. }
  161. getSupportActionBar().hide();
  162. }
  163. };
  164. private void delayedHide(int delayMillis) {
  165. mHideSystemUiHandler.removeMessages(0);
  166. mHideSystemUiHandler.sendEmptyMessageDelayed(0, delayMillis);
  167. }
  168. /// handle Window Focus changes
  169. @Override
  170. public void onWindowFocusChanged(boolean hasFocus) {
  171. super.onWindowFocusChanged(hasFocus);
  172. // When the window loses focus (e.g. the action overflow is shown),
  173. // cancel any pending hide action.
  174. if (!hasFocus) {
  175. mHideSystemUiHandler.removeMessages(0);
  176. }
  177. }
  178. @Override
  179. public void onStart() {
  180. super.onStart();
  181. }
  182. @Override
  183. protected void onSaveInstanceState(Bundle outState) {
  184. super.onSaveInstanceState(outState);
  185. outState.putBoolean(KEY_WAITING_FOR_BINDER, mRequestWaitingForBinder);
  186. }
  187. @Override
  188. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  189. super.onRemoteOperationFinish(operation, result);
  190. if (operation instanceof CreateShareOperation) {
  191. onCreateShareOperationFinish((CreateShareOperation) operation, result);
  192. } else if (operation instanceof UnshareLinkOperation) {
  193. onUnshareLinkOperationFinish((UnshareLinkOperation) operation, result);
  194. } else if (operation instanceof RemoveFileOperation) {
  195. finish();
  196. } else if (operation instanceof SynchronizeFileOperation) {
  197. onSynchronizeFileOperationFinish((SynchronizeFileOperation) operation, result);
  198. }
  199. }
  200. private void onUnshareLinkOperationFinish(UnshareLinkOperation operation,
  201. RemoteOperationResult result) {
  202. if (result.isSuccess()) {
  203. OCFile file = getStorageManager().getFileByPath(getFile().getRemotePath());
  204. if (file != null) {
  205. setFile(file);
  206. }
  207. invalidateOptionsMenu();
  208. } else if (result.getCode() == ResultCode.SHARE_NOT_FOUND) {
  209. backToDisplayActivity();
  210. }
  211. }
  212. private void onCreateShareOperationFinish(CreateShareOperation operation,
  213. RemoteOperationResult result) {
  214. if (result.isSuccess()) {
  215. OCFile file = getStorageManager().getFileByPath(getFile().getRemotePath());
  216. if (file != null) {
  217. setFile(file);
  218. }
  219. invalidateOptionsMenu();
  220. }
  221. }
  222. private void onSynchronizeFileOperationFinish(SynchronizeFileOperation operation,
  223. RemoteOperationResult result) {
  224. if (result.isSuccess()) {
  225. invalidateOptionsMenu();
  226. }
  227. }
  228. @Override
  229. protected ServiceConnection newTransferenceServiceConnection() {
  230. return new PreviewImageServiceConnection();
  231. }
  232. /** Defines callbacks for service binding, passed to bindService() */
  233. private class PreviewImageServiceConnection implements ServiceConnection {
  234. @Override
  235. public void onServiceConnected(ComponentName component, IBinder service) {
  236. if (component.equals(new ComponentName(PreviewImageActivity.this,
  237. FileDownloader.class))) {
  238. mDownloaderBinder = (FileDownloaderBinder) service;
  239. if (mRequestWaitingForBinder) {
  240. mRequestWaitingForBinder = false;
  241. Log_OC.d(TAG, "Simulating reselection of current page after connection " +
  242. "of download binder");
  243. onPageSelected(mViewPager.getCurrentItem());
  244. }
  245. } else if (component.equals(new ComponentName(PreviewImageActivity.this,
  246. FileUploader.class))) {
  247. Log_OC.d(TAG, "Upload service connected");
  248. mUploaderBinder = (FileUploaderBinder) service;
  249. } else {
  250. return;
  251. }
  252. }
  253. @Override
  254. public void onServiceDisconnected(ComponentName component) {
  255. if (component.equals(new ComponentName(PreviewImageActivity.this,
  256. FileDownloader.class))) {
  257. Log_OC.d(TAG, "Download service suddenly disconnected");
  258. mDownloaderBinder = null;
  259. } else if (component.equals(new ComponentName(PreviewImageActivity.this,
  260. FileUploader.class))) {
  261. Log_OC.d(TAG, "Upload service suddenly disconnected");
  262. mUploaderBinder = null;
  263. }
  264. }
  265. };
  266. @Override
  267. public void onStop() {
  268. super.onStop();
  269. }
  270. @Override
  271. public void onDestroy() {
  272. super.onDestroy();
  273. }
  274. @Override
  275. public boolean onOptionsItemSelected(MenuItem item) {
  276. boolean returnValue = false;
  277. switch(item.getItemId()){
  278. case android.R.id.home:
  279. if (mDrawerLayout.isDrawerOpen(GravityCompat.START)) {
  280. mDrawerLayout.closeDrawer(GravityCompat.START);
  281. } else {
  282. backToDisplayActivity();
  283. }
  284. returnValue = true;
  285. break;
  286. default:
  287. returnValue = super.onOptionsItemSelected(item);
  288. }
  289. return returnValue;
  290. }
  291. @Override
  292. protected void onResume() {
  293. super.onResume();
  294. mDownloadFinishReceiver = new DownloadFinishReceiver();
  295. IntentFilter filter = new IntentFilter(FileDownloader.getDownloadFinishMessage());
  296. filter.addAction(FileDownloader.getDownloadAddedMessage());
  297. registerReceiver(mDownloadFinishReceiver, filter);
  298. }
  299. @Override
  300. protected void onPostResume() {
  301. super.onPostResume();
  302. }
  303. @Override
  304. public void onPause() {
  305. if (mDownloadFinishReceiver != null){
  306. unregisterReceiver(mDownloadFinishReceiver);
  307. mDownloadFinishReceiver = null;
  308. }
  309. super.onPause();
  310. }
  311. private void backToDisplayActivity() {
  312. finish();
  313. }
  314. @Override
  315. public void showDetails(OCFile file) {
  316. Intent showDetailsIntent = new Intent(this, FileDisplayActivity.class);
  317. showDetailsIntent.setAction(FileDisplayActivity.ACTION_DETAILS);
  318. showDetailsIntent.putExtra(FileActivity.EXTRA_FILE, file);
  319. showDetailsIntent.putExtra(FileActivity.EXTRA_ACCOUNT,
  320. AccountUtils.getCurrentOwnCloudAccount(this));
  321. startActivity(showDetailsIntent);
  322. int pos = mPreviewImagePagerAdapter.getFilePosition(file);
  323. file = mPreviewImagePagerAdapter.getFileAt(pos);
  324. }
  325. /**
  326. * Shows the share view for sharing {@link OCFile} received as a
  327. * parameter in the second fragment.
  328. *
  329. * @param file {@link OCFile} File to share with
  330. */
  331. @Override
  332. public void showShareFile(OCFile file) {
  333. ShareFileDialogFragment dialog =
  334. ShareFileDialogFragment.newInstance(file, getAccount());
  335. dialog.show(getSupportFragmentManager(), DIALOG_SHARE_FILE);
  336. }
  337. private void requestForDownload(OCFile file) {
  338. if (mDownloaderBinder == null) {
  339. Log_OC.d(TAG, "requestForDownload called without binder to download service");
  340. } else if (!mDownloaderBinder.isDownloading(getAccount(), file)) {
  341. Intent i = new Intent(this, FileDownloader.class);
  342. i.putExtra(FileDownloader.EXTRA_ACCOUNT, getAccount());
  343. i.putExtra(FileDownloader.EXTRA_FILE, file);
  344. startService(i);
  345. }
  346. }
  347. /**
  348. * This method will be invoked when a new page becomes selected. Animation is not necessarily
  349. * complete.
  350. *
  351. * @param position Position index of the new selected page
  352. */
  353. @Override
  354. public void onPageSelected(int position) {
  355. mSavedPosition = position;
  356. mHasSavedPosition = true;
  357. if (mDownloaderBinder == null) {
  358. mRequestWaitingForBinder = true;
  359. } else {
  360. OCFile currentFile = mPreviewImagePagerAdapter.getFileAt(position);
  361. getSupportActionBar().setTitle(currentFile.getFileName());
  362. mDrawerToggle.setDrawerIndicatorEnabled(false);
  363. if (!currentFile.isDown()) {
  364. if (!mPreviewImagePagerAdapter.pendingErrorAt(position)) {
  365. requestForDownload(currentFile);
  366. }
  367. }
  368. // Call to reset image zoom to initial state
  369. ((PreviewImagePagerAdapter) mViewPager.getAdapter()).resetZoom();
  370. }
  371. }
  372. /**
  373. * Called when the scroll state changes. Useful for discovering when the user begins dragging,
  374. * when the pager is automatically settling to the current page. when it is fully stopped/idle.
  375. *
  376. * @param state The new scroll state (SCROLL_STATE_IDLE, _DRAGGING, _SETTLING
  377. */
  378. @Override
  379. public void onPageScrollStateChanged(int state) {
  380. }
  381. /**
  382. * This method will be invoked when the current page is scrolled, either as part of a
  383. * programmatically initiated smooth scroll or a user initiated touch scroll.
  384. *
  385. * @param position Position index of the first page currently being displayed.
  386. * Page position+1 will be visible if positionOffset is
  387. * nonzero.
  388. *
  389. * @param positionOffset Value from [0, 1) indicating the offset from the page
  390. * at position.
  391. * @param positionOffsetPixels Value in pixels indicating the offset from position.
  392. */
  393. @Override
  394. public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  395. }
  396. /**
  397. * Class waiting for broadcast events from the {@link FileDownloader} service.
  398. *
  399. * Updates the UI when a download is started or finished, provided that it is relevant for the
  400. * folder displayed in the gallery.
  401. */
  402. private class DownloadFinishReceiver extends BroadcastReceiver {
  403. @Override
  404. public void onReceive(Context context, Intent intent) {
  405. String accountName = intent.getStringExtra(FileDownloader.ACCOUNT_NAME);
  406. String downloadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
  407. if (getAccount().name.equals(accountName) &&
  408. downloadedRemotePath != null) {
  409. OCFile file = getStorageManager().getFileByPath(downloadedRemotePath);
  410. int position = mPreviewImagePagerAdapter.getFilePosition(file);
  411. boolean downloadWasFine = intent.getBooleanExtra(
  412. FileDownloader.EXTRA_DOWNLOAD_RESULT, false);
  413. //boolean isOffscreen = Math.abs((mViewPager.getCurrentItem() - position))
  414. // <= mViewPager.getOffscreenPageLimit();
  415. if (position >= 0 &&
  416. intent.getAction().equals(FileDownloader.getDownloadFinishMessage())) {
  417. if (downloadWasFine) {
  418. mPreviewImagePagerAdapter.updateFile(position, file);
  419. } else {
  420. mPreviewImagePagerAdapter.updateWithDownloadError(position);
  421. }
  422. mPreviewImagePagerAdapter.notifyDataSetChanged(); // will trigger the creation
  423. // of new fragments
  424. } else {
  425. Log_OC.d(TAG, "Download finished, but the fragment is offscreen");
  426. }
  427. }
  428. removeStickyBroadcast(intent);
  429. }
  430. }
  431. @SuppressLint("InlinedApi")
  432. public void toggleFullScreen() {
  433. if (isHoneycombOrHigher()) {
  434. boolean visible = (mFullScreenAnchorView.getSystemUiVisibility()
  435. & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
  436. if (visible) {
  437. hideSystemUI(mFullScreenAnchorView);
  438. // actionBar.hide(); // propagated through
  439. // OnSystemUiVisibilityChangeListener()
  440. } else {
  441. showSystemUI(mFullScreenAnchorView);
  442. // actionBar.show(); // propagated through
  443. // OnSystemUiVisibilityChangeListener()
  444. }
  445. } else {
  446. ActionBar actionBar = getSupportActionBar();
  447. if (!actionBar.isShowing()) {
  448. actionBar.show();
  449. mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
  450. } else {
  451. actionBar.hide();
  452. mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
  453. }
  454. }
  455. }
  456. @Override
  457. protected void onAccountSet(boolean stateWasRecovered) {
  458. super.onAccountSet(stateWasRecovered);
  459. if (getAccount() != null) {
  460. OCFile file = getFile();
  461. /// Validate handled file (first image to preview)
  462. if (file == null) {
  463. throw new IllegalStateException("Instanced with a NULL OCFile");
  464. }
  465. if (!file.isImage()) {
  466. throw new IllegalArgumentException("Non-image file passed as argument");
  467. }
  468. // Update file according to DB file, if it is possible
  469. if (file.getFileId() > FileDataStorageManager.ROOT_PARENT_ID)
  470. file = getStorageManager().getFileById(file.getFileId());
  471. if (file != null) {
  472. /// Refresh the activity according to the Account and OCFile set
  473. setFile(file); // reset after getting it fresh from storageManager
  474. getSupportActionBar().setTitle(getFile().getFileName());
  475. //if (!stateWasRecovered) {
  476. initViewPager();
  477. //}
  478. } else {
  479. // handled file not in the current Account
  480. finish();
  481. }
  482. }
  483. }
  484. @Override
  485. public void onBrowsedDownTo(OCFile folder) {
  486. // TODO Auto-generated method stub
  487. }
  488. @Override
  489. public void onTransferStateChanged(OCFile file, boolean downloading, boolean uploading) {
  490. // TODO Auto-generated method stub
  491. }
  492. @SuppressLint("InlinedApi")
  493. private void hideSystemUI(View anchorView) {
  494. anchorView.setSystemUiVisibility(
  495. View.SYSTEM_UI_FLAG_HIDE_NAVIGATION // hides NAVIGATION BAR; Android >= 4.0
  496. | View.SYSTEM_UI_FLAG_FULLSCREEN // hides STATUS BAR; Android >= 4.1
  497. | View.SYSTEM_UI_FLAG_IMMERSIVE // stays interactive; Android >= 4.4
  498. | View.SYSTEM_UI_FLAG_LAYOUT_STABLE // draw full window; Android >= 4.1
  499. | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN // draw full window; Android >= 4.1
  500. | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION // draw full window; Android >= 4.1
  501. );
  502. }
  503. @SuppressLint("InlinedApi")
  504. private void showSystemUI(View anchorView) {
  505. anchorView.setSystemUiVisibility(
  506. View.SYSTEM_UI_FLAG_LAYOUT_STABLE // draw full window; Android >= 4.1
  507. | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN // draw full window; Android >= 4.1
  508. | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION // draw full window; Android >= 4.1
  509. );
  510. }
  511. /**
  512. * Checks if OS version is Honeycomb one or higher
  513. *
  514. * @return boolean
  515. */
  516. private boolean isHoneycombOrHigher() {
  517. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
  518. return true;
  519. }
  520. return false;
  521. }
  522. @Override
  523. public void allFilesOption(){
  524. backToDisplayActivity();
  525. super.allFilesOption();
  526. }
  527. }