1 /* ownCloud Android client application
2 * Copyright (C) 2012-2013 ownCloud Inc.
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package com
.owncloud
.android
.ui
.preview
;
19 import android
.annotation
.SuppressLint
;
20 import android
.content
.BroadcastReceiver
;
21 import android
.content
.ComponentName
;
22 import android
.content
.Context
;
23 import android
.content
.Intent
;
24 import android
.content
.IntentFilter
;
25 import android
.content
.ServiceConnection
;
26 import android
.content
.SharedPreferences
;
27 import android
.os
.Build
;
28 import android
.os
.Bundle
;
29 import android
.os
.Handler
;
30 import android
.os
.IBinder
;
31 import android
.os
.Message
;
32 import android
.preference
.PreferenceManager
;
33 import android
.support
.v4
.view
.ViewPager
;
34 import android
.view
.View
;
36 import com
.actionbarsherlock
.app
.ActionBar
;
37 import com
.actionbarsherlock
.view
.MenuItem
;
38 import com
.actionbarsherlock
.view
.Window
;
39 import com
.ortiz
.touch
.ExtendedViewPager
;
40 import com
.owncloud
.android
.R
;
41 import com
.owncloud
.android
.authentication
.AccountUtils
;
42 import com
.owncloud
.android
.datamodel
.FileDataStorageManager
;
43 import com
.owncloud
.android
.datamodel
.OCFile
;
44 import com
.owncloud
.android
.files
.services
.FileDownloader
;
45 import com
.owncloud
.android
.files
.services
.FileDownloader
.FileDownloaderBinder
;
46 import com
.owncloud
.android
.files
.services
.FileUploader
;
47 import com
.owncloud
.android
.files
.services
.FileUploader
.FileUploaderBinder
;
48 import com
.owncloud
.android
.lib
.common
.operations
.OnRemoteOperationListener
;
49 import com
.owncloud
.android
.lib
.common
.operations
.RemoteOperation
;
50 import com
.owncloud
.android
.lib
.common
.operations
.RemoteOperationResult
;
51 import com
.owncloud
.android
.lib
.common
.operations
.RemoteOperationResult
.ResultCode
;
52 import com
.owncloud
.android
.lib
.common
.utils
.Log_OC
;
53 import com
.owncloud
.android
.operations
.CreateShareOperation
;
54 import com
.owncloud
.android
.operations
.RemoveFileOperation
;
55 import com
.owncloud
.android
.operations
.UnshareLinkOperation
;
56 import com
.owncloud
.android
.ui
.activity
.FileActivity
;
57 import com
.owncloud
.android
.ui
.activity
.FileDisplayActivity
;
58 import com
.owncloud
.android
.ui
.activity
.PinCodeActivity
;
59 import com
.owncloud
.android
.ui
.fragment
.FileFragment
;
60 import com
.owncloud
.android
.utils
.DisplayUtils
;
64 * Holds a swiping galley where image files contained in an ownCloud directory are shown
66 * @author David A. Velasco
68 public class PreviewImageActivity
extends FileActivity
implements
69 FileFragment
.ContainerActivity
,
70 ViewPager
.OnPageChangeListener
, OnRemoteOperationListener
{
72 public static final int DIALOG_SHORT_WAIT
= 0;
74 public static final String TAG
= PreviewImageActivity
.class.getSimpleName();
76 public static final String KEY_WAITING_TO_PREVIEW
= "WAITING_TO_PREVIEW";
77 private static final String KEY_WAITING_FOR_BINDER
= "WAITING_FOR_BINDER";
79 private static final int INITIAL_HIDE_DELAY
= 0; // immediate hide
81 private ExtendedViewPager mViewPager
;
82 private PreviewImagePagerAdapter mPreviewImagePagerAdapter
;
83 private int mSavedPosition
= 0;
84 private boolean mHasSavedPosition
= false
;
86 private boolean mRequestWaitingForBinder
;
88 private DownloadFinishReceiver mDownloadFinishReceiver
;
90 private View mFullScreenAnchorView
;
94 protected void onCreate(Bundle savedInstanceState
) {
95 super.onCreate(savedInstanceState
);
97 requestWindowFeature(Window
.FEATURE_ACTION_BAR_OVERLAY
);
98 setContentView(R
.layout
.preview_image_activity
);
100 ActionBar actionBar
= getSupportActionBar();
101 actionBar
.setIcon(DisplayUtils
.getSeasonalIconId());
102 actionBar
.setDisplayHomeAsUpEnabled(true
);
106 if (getIntent().getExtras() != null
&& savedInstanceState
== null
&& fromNotification()) {
110 // Make sure we're running on Honeycomb or higher to use FullScreen and
112 if (isHoneycombOrHigher()) {
114 mFullScreenAnchorView
= getWindow().getDecorView();
115 // to keep our UI controls visibility in line with system bars
117 mFullScreenAnchorView
.setOnSystemUiVisibilityChangeListener(new View
.OnSystemUiVisibilityChangeListener() {
118 @SuppressLint("InlinedApi")
120 public void onSystemUiVisibilityChange(int flags
) {
121 boolean visible
= (flags
& View
.SYSTEM_UI_FLAG_HIDE_NAVIGATION
) == 0;
122 ActionBar actionBar
= getSupportActionBar();
133 if (savedInstanceState
!= null
) {
134 mRequestWaitingForBinder
= savedInstanceState
.getBoolean(KEY_WAITING_FOR_BINDER
);
136 mRequestWaitingForBinder
= false
;
141 private void initViewPager() {
142 // get parent from path
143 String parentPath
= getFile().getRemotePath().substring(0, getFile().getRemotePath().lastIndexOf(getFile().getFileName()));
144 OCFile parentFolder
= getStorageManager().getFileByPath(parentPath
);
145 if (parentFolder
== null
) {
146 // should not be necessary
147 parentFolder
= getStorageManager().getFileByPath(OCFile
.ROOT_PATH
);
149 mPreviewImagePagerAdapter
= new PreviewImagePagerAdapter(getSupportFragmentManager(), parentFolder
, getAccount(), getStorageManager());
150 mViewPager
= (ExtendedViewPager
) findViewById(R
.id
.fragmentPager
);
151 int position
= mHasSavedPosition ? mSavedPosition
: mPreviewImagePagerAdapter
.getFilePosition(getFile());
152 position
= (position
>= 0) ? position
: 0;
153 mViewPager
.setAdapter(mPreviewImagePagerAdapter
);
154 mViewPager
.setOnPageChangeListener(this);
155 mViewPager
.setCurrentItem(position
);
156 if (position
== 0 && !getFile().isDown()) {
157 // this is necessary because mViewPager.setCurrentItem(0) just after setting the adapter does not result in a call to #onPageSelected(0)
158 mRequestWaitingForBinder
= true
;
163 protected void onPostCreate(Bundle savedInstanceState
) {
164 super.onPostCreate(savedInstanceState
);
166 // Trigger the initial hide() shortly after the activity has been
167 // created, to briefly hint to the user that UI controls
169 delayedHide(INITIAL_HIDE_DELAY
);
173 Handler mHideSystemUiHandler
= new Handler() {
175 public void handleMessage(Message msg
) {
176 if (isHoneycombOrHigher()) {
177 hideSystemUI(mFullScreenAnchorView
);
179 getSupportActionBar().hide();
183 private void delayedHide(int delayMillis
) {
184 mHideSystemUiHandler
.removeMessages(0);
185 mHideSystemUiHandler
.sendEmptyMessageDelayed(0, delayMillis
);
189 /// handle Window Focus changes
191 public void onWindowFocusChanged(boolean hasFocus
) {
192 super.onWindowFocusChanged(hasFocus
);
194 // When the window loses focus (e.g. the action overflow is shown),
195 // cancel any pending hide action.
197 mHideSystemUiHandler
.removeMessages(0);
204 public void onStart() {
209 protected void onSaveInstanceState(Bundle outState
) {
210 super.onSaveInstanceState(outState
);
211 outState
.putBoolean(KEY_WAITING_FOR_BINDER
, mRequestWaitingForBinder
);
215 public void onRemoteOperationFinish(RemoteOperation operation
, RemoteOperationResult result
) {
216 super.onRemoteOperationFinish(operation
, result
);
218 if (operation
instanceof CreateShareOperation
) {
219 onCreateShareOperationFinish((CreateShareOperation
) operation
, result
);
221 } else if (operation
instanceof UnshareLinkOperation
) {
222 onUnshareLinkOperationFinish((UnshareLinkOperation
) operation
, result
);
224 } else if (operation
instanceof RemoveFileOperation
) {
230 private void onUnshareLinkOperationFinish(UnshareLinkOperation operation
, RemoteOperationResult result
) {
231 if (result
.isSuccess()) {
232 OCFile file
= getStorageManager().getFileByPath(getFile().getRemotePath());
236 invalidateOptionsMenu();
237 } else if (result
.getCode() == ResultCode
.SHARE_NOT_FOUND
) {
238 backToDisplayActivity();
243 private void onCreateShareOperationFinish(CreateShareOperation operation
, RemoteOperationResult result
) {
244 if (result
.isSuccess()) {
245 OCFile file
= getStorageManager().getFileByPath(getFile().getRemotePath());
249 invalidateOptionsMenu();
254 protected ServiceConnection
newTransferenceServiceConnection() {
255 return new PreviewImageServiceConnection();
258 /** Defines callbacks for service binding, passed to bindService() */
259 private class PreviewImageServiceConnection
implements ServiceConnection
{
262 public void onServiceConnected(ComponentName component
, IBinder service
) {
264 if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileDownloader
.class))) {
265 mDownloaderBinder
= (FileDownloaderBinder
) service
;
266 if (mRequestWaitingForBinder
) {
267 mRequestWaitingForBinder
= false
;
268 Log_OC
.d(TAG
, "Simulating reselection of current page after connection of download binder");
269 onPageSelected(mViewPager
.getCurrentItem());
272 } else if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileUploader
.class))) {
273 Log_OC
.d(TAG
, "Upload service connected");
274 mUploaderBinder
= (FileUploaderBinder
) service
;
282 public void onServiceDisconnected(ComponentName component
) {
283 if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileDownloader
.class))) {
284 Log_OC
.d(TAG
, "Download service suddenly disconnected");
285 mDownloaderBinder
= null
;
286 } else if (component
.equals(new ComponentName(PreviewImageActivity
.this, FileUploader
.class))) {
287 Log_OC
.d(TAG
, "Upload service suddenly disconnected");
288 mUploaderBinder
= null
;
295 public void onStop() {
301 public void onDestroy() {
306 public boolean onOptionsItemSelected(MenuItem item
) {
307 boolean returnValue
= false
;
309 switch(item
.getItemId()){
310 case android
.R
.id
.home
:
311 backToDisplayActivity();
315 returnValue
= super.onOptionsItemSelected(item
);
323 protected void onResume() {
325 //Log_OC.e(TAG, "ACTIVITY, ONRESUME");
326 mDownloadFinishReceiver
= new DownloadFinishReceiver();
328 IntentFilter filter
= new IntentFilter(FileDownloader
.getDownloadFinishMessage());
329 filter
.addAction(FileDownloader
.getDownloadAddedMessage());
330 registerReceiver(mDownloadFinishReceiver
, filter
);
334 protected void onPostResume() {
335 //Log_OC.e(TAG, "ACTIVITY, ONPOSTRESUME");
336 super.onPostResume();
340 public void onPause() {
341 unregisterReceiver(mDownloadFinishReceiver
);
342 mDownloadFinishReceiver
= null
;
347 private void backToDisplayActivity() {
352 public void showDetails(OCFile file
) {
353 Intent showDetailsIntent
= new Intent(this, FileDisplayActivity
.class);
354 showDetailsIntent
.setAction(FileDisplayActivity
.ACTION_DETAILS
);
355 showDetailsIntent
.putExtra(FileActivity
.EXTRA_FILE
, file
);
356 showDetailsIntent
.putExtra(FileActivity
.EXTRA_ACCOUNT
, AccountUtils
.getCurrentOwnCloudAccount(this));
357 startActivity(showDetailsIntent
);
358 int pos
= mPreviewImagePagerAdapter
.getFilePosition(file
);
359 file
= mPreviewImagePagerAdapter
.getFileAt(pos
);
364 private void requestForDownload(OCFile file
) {
365 if (mDownloaderBinder
== null
) {
366 Log_OC
.d(TAG
, "requestForDownload called without binder to download service");
368 } else if (!mDownloaderBinder
.isDownloading(getAccount(), file
)) {
369 Intent i
= new Intent(this, FileDownloader
.class);
370 i
.putExtra(FileDownloader
.EXTRA_ACCOUNT
, getAccount());
371 i
.putExtra(FileDownloader
.EXTRA_FILE
, file
);
377 * This method will be invoked when a new page becomes selected. Animation is not necessarily complete.
379 * @param Position Position index of the new selected page
382 public void onPageSelected(int position
) {
383 mSavedPosition
= position
;
384 mHasSavedPosition
= true
;
385 if (mDownloaderBinder
== null
) {
386 mRequestWaitingForBinder
= true
;
389 OCFile currentFile
= mPreviewImagePagerAdapter
.getFileAt(position
);
390 getSupportActionBar().setTitle(currentFile
.getFileName());
391 if (!currentFile
.isDown()) {
392 if (!mPreviewImagePagerAdapter
.pendingErrorAt(position
)) {
393 requestForDownload(currentFile
);
397 // Call to reset image zoom to initial state
398 ((PreviewImagePagerAdapter
) mViewPager
.getAdapter()).resetZoom();
404 * Called when the scroll state changes. Useful for discovering when the user begins dragging,
405 * when the pager is automatically settling to the current page. when it is fully stopped/idle.
407 * @param State The new scroll state (SCROLL_STATE_IDLE, _DRAGGING, _SETTLING
410 public void onPageScrollStateChanged(int state
) {
414 * This method will be invoked when the current page is scrolled, either as part of a programmatically
415 * initiated smooth scroll or a user initiated touch scroll.
417 * @param position Position index of the first page currently being displayed.
418 * Page position+1 will be visible if positionOffset is nonzero.
420 * @param positionOffset Value from [0, 1) indicating the offset from the page at position.
421 * @param positionOffsetPixels Value in pixels indicating the offset from position.
424 public void onPageScrolled(int position
, float positionOffset
, int positionOffsetPixels
) {
429 * Class waiting for broadcast events from the {@link FielDownloader} service.
431 * Updates the UI when a download is started or finished, provided that it is relevant for the
432 * folder displayed in the gallery.
434 private class DownloadFinishReceiver
extends BroadcastReceiver
{
436 public void onReceive(Context context
, Intent intent
) {
437 String accountName
= intent
.getStringExtra(FileDownloader
.ACCOUNT_NAME
);
438 String downloadedRemotePath
= intent
.getStringExtra(FileDownloader
.EXTRA_REMOTE_PATH
);
439 if (getAccount().name
.equals(accountName
) &&
440 downloadedRemotePath
!= null
) {
442 OCFile file
= getStorageManager().getFileByPath(downloadedRemotePath
);
443 int position
= mPreviewImagePagerAdapter
.getFilePosition(file
);
444 boolean downloadWasFine
= intent
.getBooleanExtra(FileDownloader
.EXTRA_DOWNLOAD_RESULT
, false
);
445 //boolean isOffscreen = Math.abs((mViewPager.getCurrentItem() - position)) <= mViewPager.getOffscreenPageLimit();
447 if (position
>= 0 && intent
.getAction().equals(FileDownloader
.getDownloadFinishMessage())) {
448 if (downloadWasFine
) {
449 mPreviewImagePagerAdapter
.updateFile(position
, file
);
452 mPreviewImagePagerAdapter
.updateWithDownloadError(position
);
454 mPreviewImagePagerAdapter
.notifyDataSetChanged(); // will trigger the creation of new fragments
457 Log_OC
.d(TAG
, "Download finished, but the fragment is offscreen");
461 removeStickyBroadcast(intent
);
466 @SuppressLint("InlinedApi")
467 public void toggleFullScreen() {
469 if (isHoneycombOrHigher()) {
471 boolean visible
= (mFullScreenAnchorView
.getSystemUiVisibility()
472 & View
.SYSTEM_UI_FLAG_HIDE_NAVIGATION
) == 0;
475 hideSystemUI(mFullScreenAnchorView
);
476 // actionBar.hide(); // propagated through
477 // OnSystemUiVisibilityChangeListener()
479 showSystemUI(mFullScreenAnchorView
);
480 // actionBar.show(); // propagated through
481 // OnSystemUiVisibilityChangeListener()
486 ActionBar actionBar
= getSupportActionBar();
487 if (!actionBar
.isShowing()) {
499 protected void onAccountSet(boolean stateWasRecovered
) {
500 super.onAccountSet(stateWasRecovered
);
501 if (getAccount() != null
) {
502 OCFile file
= getFile();
503 /// Validate handled file (first image to preview)
505 throw new IllegalStateException("Instanced with a NULL OCFile");
507 if (!file
.isImage()) {
508 throw new IllegalArgumentException("Non-image file passed as argument");
511 // Update file according to DB file, if it is possible
512 if (file
.getFileId() > FileDataStorageManager
.ROOT_PARENT_ID
)
513 file
= getStorageManager().getFileById(file
.getFileId());
516 /// Refresh the activity according to the Account and OCFile set
517 setFile(file
); // reset after getting it fresh from storageManager
518 getSupportActionBar().setTitle(getFile().getFileName());
519 //if (!stateWasRecovered) {
524 // handled file not in the current Account
532 * Launch an intent to request the PIN code to the user before letting him use the app
534 private void requestPinCode() {
535 boolean pinStart
= false
;
536 SharedPreferences appPrefs
= PreferenceManager
.getDefaultSharedPreferences(getApplicationContext());
537 pinStart
= appPrefs
.getBoolean("set_pincode", false
);
539 Intent i
= new Intent(getApplicationContext(), PinCodeActivity
.class);
540 i
.putExtra(PinCodeActivity
.EXTRA_ACTIVITY
, "PreviewImageActivity");
546 public void onBrowsedDownTo(OCFile folder
) {
547 // TODO Auto-generated method stub
552 public void onTransferStateChanged(OCFile file
, boolean downloading
, boolean uploading
) {
553 // TODO Auto-generated method stub
558 @SuppressLint("InlinedApi")
559 private void hideSystemUI(View anchorView
) {
560 anchorView
.setSystemUiVisibility(
561 View
.SYSTEM_UI_FLAG_HIDE_NAVIGATION
// hides NAVIGATION BAR; Android >= 4.0
562 | View
.SYSTEM_UI_FLAG_FULLSCREEN
// hides STATUS BAR; Android >= 4.1
563 | View
.SYSTEM_UI_FLAG_IMMERSIVE
// stays interactive; Android >= 4.4
564 | View
.SYSTEM_UI_FLAG_LAYOUT_STABLE
// draw full window; Android >= 4.1
565 | View
.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
// draw full window; Android >= 4.1
566 | View
.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
// draw full window; Android >= 4.1
570 @SuppressLint("InlinedApi")
571 private void showSystemUI(View anchorView
) {
572 anchorView
.setSystemUiVisibility(
573 View
.SYSTEM_UI_FLAG_LAYOUT_STABLE
// draw full window; Android >= 4.1
574 | View
.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
// draw full window; Android >= 4.1
575 | View
.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
// draw full window; Android >= 4.1
580 * Checks if OS version is Honeycomb one or higher
584 private boolean isHoneycombOrHigher() {
585 if (Build
.VERSION
.SDK_INT
>= Build
.VERSION_CODES
.HONEYCOMB
) {