123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779 |
- /*
- * ownCloud Android client application
- *
- * @author David A. Velasco
- * Copyright (C) 2015 ownCloud Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui.preview;
- import android.accounts.Account;
- import android.app.Activity;
- import android.content.Context;
- import android.content.res.Resources;
- import android.graphics.Bitmap;
- import android.graphics.Color;
- import android.graphics.Point;
- import android.graphics.drawable.BitmapDrawable;
- import android.graphics.drawable.Drawable;
- import android.graphics.drawable.LayerDrawable;
- import android.graphics.drawable.PictureDrawable;
- import android.os.AsyncTask;
- import android.os.Build;
- import android.os.Bundle;
- import android.os.Process;
- import android.support.annotation.DrawableRes;
- import android.support.annotation.NonNull;
- import android.support.annotation.StringRes;
- import android.support.design.widget.Snackbar;
- import android.support.v4.app.FragmentStatePagerAdapter;
- import android.util.DisplayMetrics;
- import android.view.LayoutInflater;
- import android.view.Menu;
- import android.view.MenuInflater;
- import android.view.MenuItem;
- import android.view.View;
- import android.view.ViewGroup;
- import android.widget.ImageView;
- import android.widget.LinearLayout;
- import android.widget.ProgressBar;
- import android.widget.RelativeLayout;
- import android.widget.TextView;
- import com.caverock.androidsvg.SVG;
- import com.caverock.androidsvg.SVGParseException;
- import com.github.chrisbanes.photoview.PhotoView;
- import com.owncloud.android.MainApp;
- import com.owncloud.android.R;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.datamodel.ThumbnailsCacheManager;
- import com.owncloud.android.files.FileMenuFilter;
- import com.owncloud.android.lib.common.utils.Log_OC;
- import com.owncloud.android.ui.dialog.ConfirmationDialogFragment;
- import com.owncloud.android.ui.dialog.RemoveFilesDialogFragment;
- import com.owncloud.android.ui.fragment.FileFragment;
- import com.owncloud.android.utils.BitmapUtils;
- import com.owncloud.android.utils.DisplayUtils;
- import com.owncloud.android.utils.MimeTypeUtil;
- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.IOException;
- import java.lang.ref.WeakReference;
- import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
- import pl.droidsonroids.gif.GifDrawable;
- /**
- * This fragment shows a preview of a downloaded image.
- *
- * Trying to get an instance with a NULL {@link OCFile} will produce an
- * {@link IllegalStateException}.
- *
- * If the {@link OCFile} passed is not downloaded, an {@link IllegalStateException} is generated on
- * instantiation too.
- */
- public class PreviewImageFragment extends FileFragment {
- private static final String EXTRA_FILE = "FILE";
- private static final String ARG_FILE = "FILE";
- private static final String ARG_IGNORE_FIRST = "IGNORE_FIRST";
- private static final String ARG_SHOW_RESIZED_IMAGE = "SHOW_RESIZED_IMAGE";
- private static final String MIME_TYPE_PNG = "image/png";
- private static final String MIME_TYPE_GIF = "image/gif";
- private static final String MIME_TYPE_SVG = "image/svg+xml";
- private PhotoView mImageView;
- private RelativeLayout mMultiView;
- private LinearLayout mMultiListContainer;
- private TextView mMultiListMessage;
- private TextView mMultiListHeadline;
- private ImageView mMultiListIcon;
- private ProgressBar mMultiListProgress;
- private Boolean mShowResizedImage = false;
- private Bitmap mBitmap = null;
- private static final String TAG = PreviewImageFragment.class.getSimpleName();
- private boolean mIgnoreFirstSavedState;
- private LoadBitmapTask mLoadBitmapTask = null;
- /**
- * Public factory method to create a new fragment that previews an image.
- *
- * Android strongly recommends keep the empty constructor of fragments as the only public
- * constructor, and
- * use {@link #setArguments(Bundle)} to set the needed arguments.
- *
- * This method hides to client objects the need of doing the construction in two steps.
- *
- * @param imageFile An {@link OCFile} to preview as an image in the fragment
- * @param ignoreFirstSavedState Flag to work around an unexpected behaviour of
- * {@link FragmentStatePagerAdapter}
- * ; TODO better solution
- */
- public static PreviewImageFragment newInstance(@NonNull OCFile imageFile, boolean ignoreFirstSavedState,
- boolean showResizedImage) {
- PreviewImageFragment frag = new PreviewImageFragment();
- frag.mShowResizedImage = showResizedImage;
- Bundle args = new Bundle();
- args.putParcelable(ARG_FILE, imageFile);
- args.putBoolean(ARG_IGNORE_FIRST, ignoreFirstSavedState);
- args.putBoolean(ARG_SHOW_RESIZED_IMAGE, showResizedImage);
- frag.setArguments(args);
- return frag;
- }
- /**
- * Creates an empty fragment for image previews.
- *
- * MUST BE KEPT: the system uses it when tries to reinstantiate a fragment automatically
- * (for instance, when the device is turned a aside).
- *
- * DO NOT CALL IT: an {@link OCFile} and {@link Account} must be provided for a successful
- * construction
- */
- public PreviewImageFragment() {
- mIgnoreFirstSavedState = false;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- Bundle args = getArguments();
- setFile(args.getParcelable(ARG_FILE));
- // TODO better in super, but needs to check ALL the class extending FileFragment;
- // not right now
- mIgnoreFirstSavedState = args.getBoolean(ARG_IGNORE_FIRST);
- mShowResizedImage = args.getBoolean(ARG_SHOW_RESIZED_IMAGE);
- setHasOptionsMenu(true);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
- super.onCreateView(inflater, container, savedInstanceState);
- View view = inflater.inflate(R.layout.preview_image_fragment, container, false);
- mImageView = view.findViewById(R.id.image);
- mImageView.setVisibility(View.GONE);
- view.setOnClickListener(v -> togglePreviewImageFullScreen());
- mImageView.setOnClickListener(v -> togglePreviewImageFullScreen());
- mMultiView = view.findViewById(R.id.multi_view);
- setupMultiView(view);
- setMultiListLoadingMessage();
- return view;
- }
- private void setupMultiView(View view) {
- mMultiListContainer = view.findViewById(R.id.empty_list_view);
- mMultiListMessage = view.findViewById(R.id.empty_list_view_text);
- mMultiListHeadline = view.findViewById(R.id.empty_list_view_headline);
- mMultiListIcon = view.findViewById(R.id.empty_list_icon);
- mMultiListProgress = view.findViewById(R.id.empty_list_progress);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public void onActivityCreated(Bundle savedInstanceState) {
- super.onActivityCreated(savedInstanceState);
- if (savedInstanceState != null) {
- if (!mIgnoreFirstSavedState) {
- OCFile file = savedInstanceState.getParcelable(PreviewImageFragment.EXTRA_FILE);
- setFile(file);
- } else {
- mIgnoreFirstSavedState = false;
- }
- }
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public void onSaveInstanceState(@NonNull Bundle outState) {
- super.onSaveInstanceState(outState);
- outState.putParcelable(PreviewImageFragment.EXTRA_FILE, getFile());
- }
- @Override
- public void onStart() {
- super.onStart();
- if (getFile() != null) {
- mImageView.setTag(getFile().getFileId());
- if (mShowResizedImage) {
- Bitmap resizedImage = ThumbnailsCacheManager.getBitmapFromDiskCache(
- String.valueOf(ThumbnailsCacheManager.PREFIX_RESIZED_IMAGE + getFile().getRemoteId()));
- if (resizedImage != null && !getFile().needsUpdateThumbnail()) {
- mImageView.setImageBitmap(resizedImage);
- mImageView.setVisibility(View.VISIBLE);
- mBitmap = resizedImage;
- } else {
- // show thumbnail while loading resized image
- Bitmap thumbnail = ThumbnailsCacheManager.getBitmapFromDiskCache(
- String.valueOf(ThumbnailsCacheManager.PREFIX_THUMBNAIL + getFile().getRemoteId()));
- if (thumbnail != null) {
- mImageView.setImageBitmap(thumbnail);
- mImageView.setVisibility(View.VISIBLE);
- mBitmap = thumbnail;
- } else {
- thumbnail = ThumbnailsCacheManager.mDefaultImg;
- }
- // generate new resized image
- if (ThumbnailsCacheManager.cancelPotentialThumbnailWork(getFile(), mImageView) &&
- mContainerActivity.getStorageManager() != null) {
- final ThumbnailsCacheManager.ResizedImageGenerationTask task =
- new ThumbnailsCacheManager.ResizedImageGenerationTask(PreviewImageFragment.this,
- mImageView,
- mContainerActivity.getStorageManager(),
- mContainerActivity.getStorageManager().getAccount());
- if (resizedImage == null) {
- resizedImage = thumbnail;
- }
- final ThumbnailsCacheManager.AsyncResizedImageDrawable asyncDrawable =
- new ThumbnailsCacheManager.AsyncResizedImageDrawable(
- MainApp.getAppContext().getResources(),
- resizedImage,
- task
- );
- mImageView.setImageDrawable(asyncDrawable);
- task.execute(getFile());
- }
- }
- mMultiView.setVisibility(View.GONE);
- if (getResources() != null) {
- mImageView.setBackgroundColor(getResources().getColor(R.color.black));
- }
- mImageView.setVisibility(View.VISIBLE);
- } else {
- mLoadBitmapTask = new LoadBitmapTask(mImageView);
- mLoadBitmapTask.execute(getFile());
- }
- } else {
- showErrorMessage(R.string.preview_image_error_no_local_file);
- }
- }
- @Override
- public void onStop() {
- Log_OC.d(TAG, "onStop starts");
- if (mLoadBitmapTask != null) {
- mLoadBitmapTask.cancel(true);
- mLoadBitmapTask = null;
- }
- super.onStop();
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
- super.onCreateOptionsMenu(menu, inflater);
- inflater.inflate(R.menu.file_actions_menu, menu);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public void onPrepareOptionsMenu(Menu menu) {
- super.onPrepareOptionsMenu(menu);
- if (mContainerActivity.getStorageManager() != null && getFile() != null) {
- // Update the file
- setFile(mContainerActivity.getStorageManager().getFileById(getFile().getFileId()));
- FileMenuFilter mf = new FileMenuFilter(
- getFile(),
- mContainerActivity.getStorageManager().getAccount(),
- mContainerActivity,
- getActivity(),
- false
- );
- mf.filter(menu, true);
- }
- // additional restriction for this fragment
- // TODO allow renaming in PreviewImageFragment
- // TODO allow refresh file in PreviewImageFragment
- FileMenuFilter.hideMenuItems(
- menu.findItem(R.id.action_rename_file),
- menu.findItem(R.id.action_sync_file),
- menu.findItem(R.id.action_select_all),
- menu.findItem(R.id.action_move),
- menu.findItem(R.id.action_copy),
- menu.findItem(R.id.action_favorite),
- menu.findItem(R.id.action_unset_favorite)
- );
- if (getFile().isSharedWithMe() && !getFile().canReshare()) {
- FileMenuFilter.hideMenuItem(menu.findItem(R.id.action_send_share_file));
- }
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- switch (item.getItemId()) {
- case R.id.action_send_share_file:
- if (getFile().isSharedWithMe() && !getFile().canReshare()) {
- Snackbar.make(getView(),
- R.string.resharing_is_not_allowed,
- Snackbar.LENGTH_LONG
- )
- .show();
- } else {
- mContainerActivity.getFileOperationsHelper().sendShareFile(getFile());
- }
- return true;
- case R.id.action_open_file_with:
- openFile();
- return true;
- case R.id.action_remove_file:
- RemoveFilesDialogFragment dialog = RemoveFilesDialogFragment.newInstance(getFile());
- dialog.show(getFragmentManager(), ConfirmationDialogFragment.FTAG_CONFIRMATION);
- return true;
- case R.id.action_see_details:
- seeDetails();
- return true;
- case R.id.action_download_file:
- case R.id.action_sync_file:
- mContainerActivity.getFileOperationsHelper().syncFile(getFile());
- return true;
- case R.id.action_set_as_wallpaper:
- mContainerActivity.getFileOperationsHelper().setPictureAs(getFile(), getImageView());
- return true;
- default:
- return super.onOptionsItemSelected(item);
- }
- }
- private void seeDetails() {
- mContainerActivity.showDetails(getFile());
- }
- @SuppressFBWarnings("Dm")
- @Override
- public void onDestroy() {
- if (mBitmap != null) {
- mBitmap.recycle();
- // putting this in onStop() is just the same; the fragment is always destroyed by
- // {@link FragmentStatePagerAdapter} when the fragment in swiped further than the
- // valid offscreen distance, and onStop() is never called before than that
- }
- super.onDestroy();
- }
- /**
- * Opens the previewed image with an external application.
- */
- private void openFile() {
- mContainerActivity.getFileOperationsHelper().openFile(getFile());
- finish();
- }
- private class LoadBitmapTask extends AsyncTask<OCFile, Void, LoadImage> {
- /**
- * Weak reference to the target {@link ImageView} where the bitmap will be loaded into.
- *
- * Using a weak reference will avoid memory leaks if the target ImageView is retired from
- * memory before the load finishes.
- */
- private final WeakReference<PhotoView> mImageViewRef;
- /**
- * Error message to show when a load fails
- */
- private int mErrorMessageId;
- /**
- * Constructor.
- *
- * @param imageView Target {@link ImageView} where the bitmap will be loaded into.
- */
- LoadBitmapTask(PhotoView imageView) {
- mImageViewRef = new WeakReference<>(imageView);
- }
- @Override
- protected LoadImage doInBackground(OCFile... params) {
- Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND + Process.THREAD_PRIORITY_MORE_FAVORABLE);
- Bitmap bitmapResult = null;
- Drawable drawableResult = null;
- if (params.length != 1) {
- return null;
- }
- OCFile ocFile = params[0];
- String storagePath = ocFile.getStoragePath();
- try {
- int maxDownScale = 3; // could be a parameter passed to doInBackground(...)
- Point screenSize = DisplayUtils.getScreenSize(getActivity());
- int minWidth = screenSize.x;
- int minHeight = screenSize.y;
- for (int i = 0; i < maxDownScale && bitmapResult == null && drawableResult == null; i++) {
- if (ocFile.getMimeType().equalsIgnoreCase(MIME_TYPE_SVG)) {
- if (isCancelled()) {
- return null;
- }
- try {
- SVG svg = SVG.getFromInputStream(new FileInputStream(storagePath));
- drawableResult = new PictureDrawable(svg.renderToPicture());
- if (isCancelled()) {
- return new LoadImage(null, drawableResult, ocFile);
- }
- } catch (FileNotFoundException e) {
- mErrorMessageId = R.string.common_error_unknown;
- Log_OC.e(TAG, "File not found trying to load " + getFile().getStoragePath(), e);
- } catch (SVGParseException e) {
- mErrorMessageId = R.string.common_error_unknown;
- Log_OC.e(TAG, "Couldn't parse SVG " + getFile().getStoragePath(), e);
- }
- } else {
- if (isCancelled()) {
- return null;
- }
- try {
- bitmapResult = BitmapUtils.decodeSampledBitmapFromFile(storagePath, minWidth,
- minHeight);
- if (isCancelled()) {
- return new LoadImage(bitmapResult, null, ocFile);
- }
- if (bitmapResult == null) {
- mErrorMessageId = R.string.preview_image_error_unknown_format;
- Log_OC.e(TAG, "File could not be loaded as a bitmap: " + storagePath);
- break;
- } else {
- if (ocFile.getMimeType().equalsIgnoreCase("image/jpeg")) {
- // Rotate image, obeying exif tag.
- bitmapResult = BitmapUtils.rotateImage(bitmapResult, storagePath);
- }
- }
- } catch (OutOfMemoryError e) {
- mErrorMessageId = R.string.common_error_out_memory;
- if (i < maxDownScale - 1) {
- Log_OC.w(TAG, "Out of memory rendering file " + storagePath + " ; scaling down");
- minWidth = minWidth / 2;
- minHeight = minHeight / 2;
- } else {
- Log_OC.w(TAG, "Out of memory rendering file " + storagePath + " ; failing");
- }
- if (bitmapResult != null) {
- bitmapResult.recycle();
- }
- bitmapResult = null;
- }
- }
- }
- } catch (NoSuchFieldError e) {
- mErrorMessageId = R.string.common_error_unknown;
- Log_OC.e(TAG, "Error from access to non-existing field despite protection; file "
- + storagePath, e);
- } catch (Throwable t) {
- mErrorMessageId = R.string.common_error_unknown;
- Log_OC.e(TAG, "Unexpected error loading " + getFile().getStoragePath(), t);
- }
- return new LoadImage(bitmapResult, drawableResult, ocFile);
- }
- @Override
- protected void onCancelled(LoadImage result) {
- if (result != null && result.bitmap != null) {
- result.bitmap.recycle();
- }
- }
- @Override
- protected void onPostExecute(LoadImage result) {
- if (result.bitmap != null || result.drawable != null) {
- showLoadedImage(result);
- } else {
- showErrorMessage(mErrorMessageId);
- }
- if (result.bitmap != null && mBitmap != result.bitmap) {
- // unused bitmap, release it! (just in case)
- result.bitmap.recycle();
- }
- }
- private void showLoadedImage(LoadImage result) {
- final PhotoView imageView = mImageViewRef.get();
- Bitmap bitmap = result.bitmap;
- if (imageView != null && bitmap != null) {
- Log_OC.d(TAG, "Showing image with resolution " + bitmap.getWidth() + "x" +
- bitmap.getHeight());
- if (result.ocFile.getMimeType().equalsIgnoreCase(MIME_TYPE_PNG) ||
- result.ocFile.getMimeType().equalsIgnoreCase(MIME_TYPE_SVG) ||
- result.ocFile.getMimeType().equalsIgnoreCase(MIME_TYPE_GIF)) {
- if (getResources() != null) {
- imageView.setImageDrawable(generateCheckerboardLayeredDrawable(result, bitmap));
- } else {
- imageView.setImageBitmap(bitmap);
- }
- } else {
- imageView.setImageBitmap(bitmap);
- }
- imageView.setVisibility(View.VISIBLE);
- mBitmap = bitmap; // needs to be kept for recycling when not useful
- }
- mMultiView.setVisibility(View.GONE);
- if (getResources() != null) {
- mImageView.setBackgroundColor(getResources().getColor(R.color.black));
- }
- mImageView.setVisibility(View.VISIBLE);
- }
- }
- private LayerDrawable generateCheckerboardLayeredDrawable(LoadImage result, Bitmap bitmap) {
- Resources r = getResources();
- Drawable[] layers = new Drawable[2];
- layers[0] = r.getDrawable(R.color.white);
- Drawable bitmapDrawable;
- if (result.ocFile.getMimetype().equalsIgnoreCase(MIME_TYPE_PNG)) {
- bitmapDrawable = new BitmapDrawable(getResources(), bitmap);
- } else if (result.ocFile.getMimetype().equalsIgnoreCase(MIME_TYPE_SVG)) {
- bitmapDrawable = result.drawable;
- } else if (result.ocFile.getMimetype().equalsIgnoreCase(MIME_TYPE_GIF)) {
- try {
- bitmapDrawable = new GifDrawable(result.ocFile.getStoragePath());
- } catch (IOException exception) {
- bitmapDrawable = result.drawable;
- }
- } else {
- bitmapDrawable = new BitmapDrawable(getResources(), bitmap);
- }
- layers[1] = bitmapDrawable;
- LayerDrawable layerDrawable = new LayerDrawable(layers);
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
- Activity activity = getActivity();
- if (activity != null) {
- int bitmapWidth;
- int bitmapHeight;
- if (result.ocFile.getMimetype().equalsIgnoreCase(MIME_TYPE_PNG)) {
- bitmapWidth = convertDpToPixel(bitmap.getWidth(),
- getActivity());
- bitmapHeight = convertDpToPixel(bitmap.getHeight(),
- getActivity());
- layerDrawable.setLayerSize(0, bitmapWidth, bitmapHeight);
- layerDrawable.setLayerSize(1, bitmapWidth, bitmapHeight);
- } else {
- bitmapWidth = convertDpToPixel(bitmapDrawable.getIntrinsicWidth(),
- getActivity());
- bitmapHeight = convertDpToPixel(bitmapDrawable.getIntrinsicHeight(),
- getActivity());
- layerDrawable.setLayerSize(0, bitmapWidth,
- bitmapHeight);
- layerDrawable.setLayerSize(1, bitmapWidth,
- bitmapHeight);
- }
- }
- }
- return layerDrawable;
- }
- private void showErrorMessage(@StringRes int errorMessageId) {
- mImageView.setBackgroundColor(Color.TRANSPARENT);
- setMessageForMultiList(R.string.preview_sorry, errorMessageId, R.drawable.file_image);
- }
- private void setMultiListLoadingMessage() {
- if (mMultiView != null) {
- mMultiListHeadline.setText(R.string.file_list_loading);
- mMultiListMessage.setText("");
- mMultiListIcon.setVisibility(View.GONE);
- mMultiListProgress.setVisibility(View.VISIBLE);
- }
- }
- private void setMessageForMultiList(@StringRes int headline, @StringRes int message, @DrawableRes int icon) {
- if (mMultiListContainer != null && mMultiListMessage != null) {
- mMultiListHeadline.setText(headline);
- mMultiListMessage.setText(message);
- mMultiListIcon.setImageResource(icon);
- mMultiView.setBackgroundColor(Color.BLACK);
- mMultiListHeadline.setTextColor(getResources().getColor(R.color.standard_grey));
- mMultiListMessage.setTextColor(getResources().getColor(R.color.standard_grey));
- mMultiListMessage.setVisibility(View.VISIBLE);
- mMultiListIcon.setVisibility(View.VISIBLE);
- mMultiListProgress.setVisibility(View.GONE);
- }
- }
- public void setErrorPreviewMessage() {
- try {
- if (getActivity() != null) {
- Snackbar.make(mMultiView, R.string.resized_image_not_possible_download, Snackbar.LENGTH_INDEFINITE)
- .setAction(R.string.common_yes, v ->
- ((PreviewImageActivity) getActivity())
- .requestForDownload(getFile())).show();
- } else {
- Snackbar.make(mMultiView, R.string.resized_image_not_possible, Snackbar.LENGTH_INDEFINITE).show();
- }
- } catch (IllegalArgumentException e) {
- Log_OC.d(TAG, e.getMessage());
- }
- }
- public void setNoConnectionErrorMessage() {
- try {
- Snackbar.make(mMultiView, R.string.auth_no_net_conn_title, Snackbar.LENGTH_LONG).show();
- } catch (IllegalArgumentException e) {
- Log_OC.d(TAG, e.getMessage());
- }
- }
- /**
- * Helper method to test if an {@link OCFile} can be passed to a {@link PreviewImageFragment}
- * to be previewed.
- *
- * @param file File to test if can be previewed.
- * @return 'True' if the file can be handled by the fragment.
- */
- public static boolean canBePreviewed(OCFile file) {
- return (file != null && MimeTypeUtil.isImage(file));
- }
- /**
- * Finishes the preview
- */
- private void finish() {
- Activity container = getActivity();
- container.finish();
- }
- private void togglePreviewImageFullScreen() {
- ((PreviewImageActivity) getActivity()).toggleFullScreen();
- toggleImageBackground();
- }
- private void toggleImageBackground() {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && getFile() != null
- && (getFile().getMimeType().equalsIgnoreCase(MIME_TYPE_PNG) ||
- getFile().getMimeType().equalsIgnoreCase(MIME_TYPE_SVG)) && getActivity() != null
- && getActivity() instanceof PreviewImageActivity && getResources() != null) {
- PreviewImageActivity previewImageActivity = (PreviewImageActivity) getActivity();
- if (mImageView.getDrawable() instanceof LayerDrawable) {
- LayerDrawable layerDrawable = (LayerDrawable) mImageView.getDrawable();
- Drawable layerOne;
- if (previewImageActivity.getSystemUIVisible()) {
- layerOne = getResources().getDrawable(R.color.white);
- } else {
- layerOne = getResources().getDrawable(R.drawable.backrepeat);
- }
- layerDrawable.setDrawableByLayerId(layerDrawable.getId(0), layerOne);
- mImageView.setImageDrawable(layerDrawable);
- mImageView.invalidate();
- }
- }
- }
- private static int convertDpToPixel(float dp, Context context) {
- Resources resources = context.getResources();
- DisplayMetrics metrics = resources.getDisplayMetrics();
- return (int) (dp * ((float) metrics.densityDpi / DisplayMetrics.DENSITY_DEFAULT));
- }
- public PhotoView getImageView() {
- return mImageView;
- }
- private class LoadImage {
- private final Bitmap bitmap;
- private final Drawable drawable;
- private final OCFile ocFile;
- LoadImage(Bitmap bitmap, Drawable drawable, OCFile ocFile) {
- this.bitmap = bitmap;
- this.drawable = drawable;
- this.ocFile = ocFile;
- }
- }
- }
|