NekoX/TMessagesProj/src/main/java/org/telegram/ui/PhotoViewer.java

8952 lines
426 KiB
Java
Raw Normal View History

/*
2019-01-23 18:03:33 +01:00
* This is the source code of Telegram for Android v. 5.x.x.
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
2019-01-23 18:03:33 +01:00
* Copyright Nikolai Kudashov, 2013-2018.
*/
package org.telegram.ui;
2015-10-29 18:10:07 +01:00
import android.Manifest;
import android.animation.Animator;
2017-03-31 01:58:05 +02:00
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
2014-06-12 03:13:15 +02:00
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.content.Intent;
2017-03-31 01:58:05 +02:00
import android.content.SharedPreferences;
2015-10-29 18:10:07 +01:00
import android.content.pm.PackageManager;
2018-07-30 04:07:02 +02:00
import android.content.res.Configuration;
import android.graphics.Bitmap;
2017-12-08 18:35:59 +01:00
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
2014-10-28 18:07:44 +01:00
import android.graphics.Paint;
import android.graphics.PixelFormat;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
import android.graphics.Rect;
2014-10-28 18:07:44 +01:00
import android.graphics.RectF;
import android.graphics.SurfaceTexture;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.ColorDrawable;
2014-10-24 15:43:45 +02:00
import android.graphics.drawable.Drawable;
2017-03-31 01:58:05 +02:00
import android.media.MediaCodecInfo;
2019-03-03 21:40:48 +01:00
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
2018-07-30 04:07:02 +02:00
import android.os.SystemClock;
import android.provider.Settings;
import android.support.annotation.Keep;
import android.support.annotation.NonNull;
2017-12-08 18:35:59 +01:00
import android.support.v4.content.FileProvider;
import android.text.Layout;
2018-07-30 04:07:02 +02:00
import android.text.Selection;
import android.text.Spannable;
import android.text.SpannableString;
2016-03-06 02:49:31 +01:00
import android.text.SpannableStringBuilder;
2018-07-30 04:07:02 +02:00
import android.text.Spanned;
import android.text.StaticLayout;
2017-03-31 01:58:05 +02:00
import android.text.TextPaint;
import android.text.TextUtils;
2018-07-30 04:07:02 +02:00
import android.text.method.LinkMovementMethod;
import android.util.SparseArray;
import android.util.TypedValue;
2016-04-22 15:49:00 +02:00
import android.view.ActionMode;
import android.view.ContextThemeWrapper;
import android.view.GestureDetector;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.MotionEvent;
2014-06-12 03:13:15 +02:00
import android.view.Surface;
import android.view.TextureView;
import android.view.VelocityTracker;
import android.view.View;
import android.view.ViewGroup;
2018-07-30 04:07:02 +02:00
import android.view.ViewTreeObserver;
2016-10-11 13:57:01 +02:00
import android.view.WindowInsets;
import android.view.WindowManager;
2017-03-31 01:58:05 +02:00
import android.view.animation.AccelerateInterpolator;
import android.view.animation.DecelerateInterpolator;
import android.view.animation.OvershootInterpolator;
import android.widget.FrameLayout;
import android.widget.ImageView;
2016-10-11 13:57:01 +02:00
import android.widget.LinearLayout;
import android.widget.Scroller;
import android.widget.TextView;
2018-07-30 04:07:02 +02:00
import android.widget.Toast;
2018-08-27 10:33:11 +02:00
import com.google.android.exoplayer2.C;
import com.google.android.exoplayer2.ExoPlayer;
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
2017-03-31 01:58:05 +02:00
import com.coremedia.iso.IsoFile;
import com.coremedia.iso.boxes.Box;
import com.coremedia.iso.boxes.MediaBox;
import com.coremedia.iso.boxes.MediaHeaderBox;
import com.coremedia.iso.boxes.SampleSizeBox;
2018-07-30 04:07:02 +02:00
import com.coremedia.iso.boxes.TimeToSampleBox;
2017-03-31 01:58:05 +02:00
import com.coremedia.iso.boxes.TrackBox;
import com.coremedia.iso.boxes.TrackHeaderBox;
import com.googlecode.mp4parser.util.Matrix;
import com.googlecode.mp4parser.util.Path;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.AndroidUtilities;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.Bitmaps;
import org.telegram.messenger.BringAppForegroundService;
2017-12-08 18:35:59 +01:00
import org.telegram.messenger.BuildConfig;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.BuildVars;
2017-03-31 01:58:05 +02:00
import org.telegram.messenger.ChatObject;
import org.telegram.messenger.ContactsController;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.DataQuery;
2016-03-06 02:49:31 +01:00
import org.telegram.messenger.Emoji;
2017-12-08 18:35:59 +01:00
import org.telegram.messenger.EmojiSuggestion;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.ImageLoader;
import org.telegram.messenger.MessagesStorage;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.SecureDocument;
2017-12-08 18:35:59 +01:00
import org.telegram.messenger.SendMessagesHelper;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.SharedConfig;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.UserObject;
2017-03-31 01:58:05 +02:00
import org.telegram.messenger.VideoEditedInfo;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.WebFile;
import org.telegram.messenger.ApplicationLoader;
import org.telegram.messenger.FileLoader;
import org.telegram.messenger.FileLog;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.LocaleController;
import org.telegram.messenger.MediaController;
import org.telegram.messenger.MessagesController;
import org.telegram.messenger.NotificationCenter;
import org.telegram.messenger.R;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.support.widget.DefaultItemAnimator;
import org.telegram.messenger.support.widget.LinearLayoutManager;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.support.widget.LinearSmoothScrollerEnd;
2017-12-08 18:35:59 +01:00
import org.telegram.messenger.support.widget.RecyclerView;
2015-09-24 22:52:02 +02:00
import org.telegram.tgnet.ConnectionsManager;
2017-03-31 01:58:05 +02:00
import org.telegram.tgnet.TLObject;
2015-09-24 22:52:02 +02:00
import org.telegram.tgnet.TLRPC;
import org.telegram.messenger.UserConfig;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.MessageObject;
2014-10-28 18:07:44 +01:00
import org.telegram.messenger.Utilities;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.ActionBar.AlertDialog;
import org.telegram.ui.ActionBar.BottomSheet;
2018-07-30 04:07:02 +02:00
import org.telegram.ui.ActionBar.SimpleTextView;
2016-04-22 15:49:00 +02:00
import org.telegram.ui.ActionBar.Theme;
import org.telegram.ui.Adapters.MentionsAdapter;
2014-11-13 21:10:14 +01:00
import org.telegram.ui.ActionBar.ActionBar;
import org.telegram.ui.ActionBar.ActionBarMenu;
import org.telegram.ui.ActionBar.ActionBarMenuItem;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Cells.CheckBoxCell;
2017-12-08 18:35:59 +01:00
import org.telegram.ui.Cells.PhotoPickerPhotoCell;
import org.telegram.ui.Components.AnimatedFileDrawable;
2019-01-23 18:03:33 +01:00
import org.telegram.ui.Components.AnimationProperties;
2017-12-08 18:35:59 +01:00
import org.telegram.ui.Components.BackupImageView;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Components.ChatAttachAlert;
2015-01-02 23:15:07 +01:00
import org.telegram.ui.Components.CheckBox;
import org.telegram.ui.Components.ClippingImageView;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.ImageReceiver;
2019-01-23 18:03:33 +01:00
import org.telegram.ui.Components.GroupedPhotosListView;
import org.telegram.ui.Components.LayoutHelper;
import org.telegram.ui.Components.NumberPicker;
2019-01-23 18:03:33 +01:00
import org.telegram.ui.Components.OtherDocumentPlaceholderDrawable;
import org.telegram.ui.Components.PhotoCropView;
import org.telegram.ui.Components.PhotoFilterView;
2016-10-11 13:57:01 +02:00
import org.telegram.ui.Components.PhotoPaintView;
import org.telegram.ui.Components.PhotoViewerCaptionEnterView;
2016-10-11 13:57:01 +02:00
import org.telegram.ui.Components.PickerBottomLayoutViewer;
2018-07-30 04:07:02 +02:00
import org.telegram.ui.Components.PipVideoView;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Components.RadialProgressView;
import org.telegram.ui.Components.RecyclerListView;
import org.telegram.ui.Components.SeekBar;
2015-06-29 19:12:11 +02:00
import org.telegram.ui.Components.SizeNotifierFrameLayoutPhoto;
2016-10-11 13:57:01 +02:00
import org.telegram.ui.Components.StickersAlert;
2018-07-30 04:07:02 +02:00
import org.telegram.ui.Components.URLSpanUserMentionPhotoViewer;
2019-01-23 18:03:33 +01:00
import org.telegram.ui.Components.VideoForwardDrawable;
import org.telegram.ui.Components.VideoPlayer;
import org.telegram.ui.Components.VideoTimelinePlayView;
2018-07-30 04:07:02 +02:00
import java.io.ByteArrayInputStream;
import java.io.File;
2018-07-30 04:07:02 +02:00
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
2017-03-31 01:58:05 +02:00
import java.util.List;
2014-06-12 03:13:15 +02:00
import java.util.Locale;
2015-11-26 22:04:02 +01:00
@SuppressWarnings("unchecked")
public class PhotoViewer implements NotificationCenter.NotificationCenterDelegate, GestureDetector.OnGestureListener, GestureDetector.OnDoubleTapListener {
2014-11-17 03:44:57 +01:00
private int classGuid;
private PhotoViewerProvider placeProvider;
private boolean isVisible;
2018-07-30 04:07:02 +02:00
private int maxSelectedPhotos = -1;
2016-10-11 13:57:01 +02:00
private boolean muteVideo;
2017-12-08 18:35:59 +01:00
private int slideshowMessageId;
private String nameOverride;
private int dateOverride;
2018-07-30 04:07:02 +02:00
private AnimatorSet miniProgressAnimator;
2019-01-23 18:03:33 +01:00
private Runnable miniProgressShowRunnable = () -> toggleMiniProgressInternal(true);
2018-07-30 04:07:02 +02:00
private Activity parentActivity;
2016-04-22 15:49:00 +02:00
private Context actvityContext;
private ActionBar actionBar;
private boolean isActionBarVisible = true;
2017-12-08 18:35:59 +01:00
private boolean isPhotosListViewVisible;
2018-07-30 04:07:02 +02:00
private AnimatorSet actionBarAnimator;
private int currentAccount;
private static Drawable[] progressDrawables;
2014-10-24 15:43:45 +02:00
private WindowManager.LayoutParams windowLayoutParams;
private FrameLayoutDrawer containerView;
2016-10-11 13:57:01 +02:00
private FrameLayout windowView;
private ClippingImageView animatingImageView;
private FrameLayout bottomLayout;
private TextView nameTextView;
private TextView dateTextView;
private ActionBarMenuItem menuItem;
2019-01-23 18:03:33 +01:00
private TextView allMediaItem;
2017-12-08 18:35:59 +01:00
private ActionBarMenuItem sendItem;
2018-07-30 04:07:02 +02:00
private ActionBarMenuItem pipItem;
2016-10-11 13:57:01 +02:00
private ActionBarMenuItem masksItem;
private ImageView shareButton;
private BackgroundDrawable backgroundDrawable = new BackgroundDrawable(0xff000000);
2016-10-11 13:57:01 +02:00
private Paint blackPaint = new Paint();
2015-01-02 23:15:07 +01:00
private CheckBox checkImageView;
private CounterView photosCounterView;
private FrameLayout pickerView;
private ImageView pickerViewSendButton;
2016-10-11 13:57:01 +02:00
private PickerBottomLayoutViewer editorDoneLayout;
2017-03-31 01:58:05 +02:00
private TextView resetButton;
private PhotoProgressView photoProgressViews[] = new PhotoProgressView[3];
2018-07-30 04:07:02 +02:00
private RadialProgressView miniProgressView;
2016-10-11 13:57:01 +02:00
private ImageView paintItem;
private ImageView cropItem;
2019-01-23 18:03:33 +01:00
private ImageView rotateItem;
2018-07-30 04:07:02 +02:00
private ImageView cameraItem;
2016-10-11 13:57:01 +02:00
private ImageView tuneItem;
private ImageView timeItem;
2017-03-31 01:58:05 +02:00
private ImageView muteItem;
private ImageView compressItem;
2017-12-08 18:35:59 +01:00
private GroupedPhotosListView groupedPhotosListView;
private RecyclerListView selectedPhotosListView;
private ListAdapter selectedPhotosAdapter;
2017-07-08 18:32:04 +02:00
private AnimatorSet compressItemAnimation;
private boolean isCurrentVideo;
2017-03-31 01:58:05 +02:00
2019-01-23 18:03:33 +01:00
private VideoForwardDrawable videoForwardDrawable;
2017-12-08 18:35:59 +01:00
private AnimatorSet currentListViewAnimation;
private PhotoCropView photoCropView;
private PhotoFilterView photoFilterView;
2016-10-11 13:57:01 +02:00
private PhotoPaintView photoPaintView;
private AlertDialog visibleDialog;
private TextView captionTextView;
2018-07-30 04:07:02 +02:00
private TextView switchCaptionTextView;
private AnimatorSet currentCaptionAnimation;
2017-03-31 01:58:05 +02:00
private ChatAttachAlert parentAlert;
private PhotoViewerCaptionEnterView captionEditText;
2016-10-11 13:57:01 +02:00
private int sendPhotoType;
private boolean needCaptionLayout;
private AnimatedFileDrawable currentAnimation;
2016-10-11 13:57:01 +02:00
private boolean allowShare;
2018-07-30 04:07:02 +02:00
private boolean pipAvailable;
2017-12-08 18:35:59 +01:00
private TextView hintTextView;
private Runnable hintHideRunnable;
private AnimatorSet hintAnimation;
2016-10-11 13:57:01 +02:00
private Object lastInsets;
2019-01-23 18:03:33 +01:00
private boolean padImageForHorizontalInsets;
2017-03-31 01:58:05 +02:00
private boolean doneButtonPressed;
2019-03-03 21:40:48 +01:00
private Runnable setLoadingRunnable = new Runnable() {
@Override
public void run() {
if (currentMessageObject == null) {
return;
}
FileLoader.getInstance(currentMessageObject.currentAccount).setLoadingVideo(currentMessageObject.getDocument(), true, false);
}
};
private AspectRatioFrameLayout aspectRatioFrameLayout;
private TextureView videoTextureView;
private VideoPlayer videoPlayer;
2019-03-03 21:40:48 +01:00
private VideoPlayer injectingVideoPlayer;
private SurfaceTexture injectingVideoPlayerSurface;
private boolean playerInjected;
private boolean skipFirstBufferingProgress;
private boolean playerWasReady;
2018-07-30 04:07:02 +02:00
private float seekToProgressPending;
2019-03-03 21:40:48 +01:00
private float seekToProgressPending2;
2018-07-30 04:07:02 +02:00
private boolean streamingAlertShown;
private long startedPlayTime;
private boolean keepScreenOnFlagSet;
private FrameLayout videoPlayerControlFrameLayout;
private ImageView videoPlayButton;
2018-07-30 04:07:02 +02:00
private ImageView videoForwardButton;
private ImageView videoBackwardButton;
private SimpleTextView videoPlayerTime;
private SeekBar videoPlayerSeekbar;
2018-07-30 04:07:02 +02:00
private PipVideoView pipVideoView;
private int waitingForDraw;
private TextureView changedTextureView;
private ImageView textureImageView;
private int[] pipPosition = new int[2];
private boolean pipAnimationInProgress;
private Bitmap currentBitmap;
private boolean changingTextureView;
private int waitingForFirstTextureUpload;
private boolean textureUploaded;
2018-07-30 04:07:02 +02:00
private boolean isInline;
private boolean switchingInlineMode;
private boolean videoCrossfadeStarted;
private float videoCrossfadeAlpha;
private long videoCrossfadeAlphaLastTime;
private boolean isPlaying;
2018-07-30 04:07:02 +02:00
private boolean isStreaming;
private boolean firstAnimationDelay;
private long lastBufferedPositionCheck;
2019-01-23 18:03:33 +01:00
public final static int SELECT_TYPE_AVATAR = 1;
public final static int SELECT_TYPE_WALLPAPER = 3;
2018-07-30 04:07:02 +02:00
2019-01-23 18:03:33 +01:00
public static class LinkMovementMethodMy extends LinkMovementMethod {
2018-07-30 04:07:02 +02:00
@Override
public boolean onTouchEvent(@NonNull TextView widget, @NonNull Spannable buffer, @NonNull MotionEvent event) {
try {
boolean result = super.onTouchEvent(widget, buffer, event);
if (event.getAction() == MotionEvent.ACTION_UP || event.getAction() == MotionEvent.ACTION_CANCEL) {
Selection.removeSelection(buffer);
}
return result;
} catch (Exception e) {
FileLog.e(e);
}
return false;
}
}
private Runnable updateProgressRunnable = new Runnable() {
@Override
public void run() {
if (videoPlayer != null) {
if (isCurrentVideo) {
if (!videoTimelineView.isDragging()) {
float progress = videoPlayer.getCurrentPosition() / (float) videoPlayer.getDuration();
if (!inPreview && videoTimelineView.getVisibility() == View.VISIBLE) {
if (progress >= videoTimelineView.getRightProgress()) {
videoTimelineView.setProgress(0);
videoPlayer.seekTo((int) (videoTimelineView.getLeftProgress() * videoPlayer.getDuration()));
2019-01-23 18:03:33 +01:00
if (muteVideo) {
videoPlayer.play();
} else {
videoPlayer.pause();
}
containerView.invalidate();
} else {
progress -= videoTimelineView.getLeftProgress();
if (progress < 0) {
progress = 0;
}
progress /= (videoTimelineView.getRightProgress() - videoTimelineView.getLeftProgress());
if (progress > 1) {
progress = 1;
}
videoTimelineView.setProgress(progress);
2017-03-31 01:58:05 +02:00
}
} else {
videoTimelineView.setProgress(progress);
}
updateVideoPlayerTime();
}
} else {
if (!videoPlayerSeekbar.isDragging()) {
float progress = videoPlayer.getCurrentPosition() / (float) videoPlayer.getDuration();
2018-07-30 04:07:02 +02:00
float bufferedProgress;
if (currentVideoFinishedLoading) {
bufferedProgress = 1.0f;
} else {
long newTime = SystemClock.elapsedRealtime();
if (Math.abs(newTime - lastBufferedPositionCheck) >= 500) {
bufferedProgress = isStreaming ? FileLoader.getInstance(currentAccount).getBufferedProgressFromPosition(seekToProgressPending != 0 ? seekToProgressPending : progress, currentFileNames[0]) : 1.0f;
lastBufferedPositionCheck = newTime;
} else {
bufferedProgress = -1;
}
}
if (!inPreview && videoTimelineView.getVisibility() == View.VISIBLE) {
if (progress >= videoTimelineView.getRightProgress()) {
videoPlayer.pause();
videoPlayerSeekbar.setProgress(0);
videoPlayer.seekTo((int) (videoTimelineView.getLeftProgress() * videoPlayer.getDuration()));
containerView.invalidate();
} else {
progress -= videoTimelineView.getLeftProgress();
if (progress < 0) {
progress = 0;
}
progress /= (videoTimelineView.getRightProgress() - videoTimelineView.getLeftProgress());
if (progress > 1) {
progress = 1;
}
videoPlayerSeekbar.setProgress(progress);
2017-03-31 01:58:05 +02:00
}
} else {
2018-07-30 04:07:02 +02:00
if (seekToProgressPending == 0) {
videoPlayerSeekbar.setProgress(progress);
}
if (bufferedProgress != -1) {
videoPlayerSeekbar.setBufferedProgress(bufferedProgress);
if (pipVideoView != null) {
pipVideoView.setBufferedProgress(bufferedProgress);
}
}
2017-03-31 01:58:05 +02:00
}
videoPlayerControlFrameLayout.invalidate();
updateVideoPlayerTime();
2017-03-31 01:58:05 +02:00
}
}
}
if (isPlaying) {
2018-07-30 04:07:02 +02:00
AndroidUtilities.runOnUIThread(updateProgressRunnable, 17);
}
}
};
private Runnable switchToInlineRunnable = new Runnable() {
@Override
public void run() {
switchingInlineMode = false;
if (currentBitmap != null) {
currentBitmap.recycle();
currentBitmap = null;
}
changingTextureView = true;
if (textureImageView != null) {
try {
currentBitmap = Bitmaps.createBitmap(videoTextureView.getWidth(), videoTextureView.getHeight(), Bitmap.Config.ARGB_8888);
videoTextureView.getBitmap(currentBitmap);
} catch (Throwable e) {
if (currentBitmap != null) {
currentBitmap.recycle();
currentBitmap = null;
}
FileLog.e(e);
}
if (currentBitmap != null) {
textureImageView.setVisibility(View.VISIBLE);
textureImageView.setImageBitmap(currentBitmap);
} else {
textureImageView.setImageDrawable(null);
}
}
isInline = true;
pipVideoView = new PipVideoView();
changedTextureView = pipVideoView.show(parentActivity, PhotoViewer.this, aspectRatioFrameLayout.getAspectRatio(), aspectRatioFrameLayout.getVideoRotation());
changedTextureView.setVisibility(View.INVISIBLE);
aspectRatioFrameLayout.removeView(videoTextureView);
}
};
private TextureView.SurfaceTextureListener surfaceTextureListener = new TextureView.SurfaceTextureListener() {
@Override
public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
}
@Override
public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
}
@Override
public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
if (videoTextureView == null) {
return true;
}
if (changingTextureView) {
if (switchingInlineMode) {
waitingForFirstTextureUpload = 2;
}
videoTextureView.setSurfaceTexture(surface);
videoTextureView.setVisibility(View.VISIBLE);
changingTextureView = false;
containerView.invalidate();
return false;
}
return true;
}
@Override
public void onSurfaceTextureUpdated(SurfaceTexture surface) {
if (waitingForFirstTextureUpload == 1) {
changedTextureView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
changedTextureView.getViewTreeObserver().removeOnPreDrawListener(this);
if (textureImageView != null) {
textureImageView.setVisibility(View.INVISIBLE);
textureImageView.setImageDrawable(null);
if (currentBitmap != null) {
currentBitmap.recycle();
currentBitmap = null;
}
}
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(() -> {
if (isInline) {
dismissInternal();
2018-07-30 04:07:02 +02:00
}
});
waitingForFirstTextureUpload = 0;
return true;
}
});
changedTextureView.invalidate();
}
}
};
2019-03-03 21:40:48 +01:00
private float animationValues[][] = new float[2][10];
private ChatActivity parentChatActivity;
private MentionsAdapter mentionsAdapter;
private RecyclerListView mentionListView;
private LinearLayoutManager mentionLayoutManager;
private AnimatorSet mentionListAnimation;
private boolean allowMentions;
2017-03-31 01:58:05 +02:00
private int animationInProgress;
private long transitionAnimationStartTime;
private Runnable animationEndRunnable;
private PlaceProviderObject showAfterAnimation;
private PlaceProviderObject hideAfterAnimation;
2017-03-31 01:58:05 +02:00
private boolean disableShowCheck;
private String lastTitle;
private int currentEditMode;
private ImageReceiver leftImage = new ImageReceiver();
private ImageReceiver centerImage = new ImageReceiver();
private ImageReceiver rightImage = new ImageReceiver();
private int currentIndex;
2018-07-30 04:07:02 +02:00
private int switchingToIndex;
private MessageObject currentMessageObject;
2018-07-30 04:07:02 +02:00
private Uri currentPlayingVideoFile;
2016-10-11 13:57:01 +02:00
private TLRPC.BotInlineResult currentBotInlineResult;
private TLRPC.FileLocation currentFileLocation;
2018-07-30 04:07:02 +02:00
private SecureDocument currentSecureDocument;
2014-10-28 18:07:44 +01:00
private String currentFileNames[] = new String[3];
private PlaceProviderObject currentPlaceObject;
2014-06-12 03:13:15 +02:00
private String currentPathObject;
2018-07-30 04:07:02 +02:00
private boolean currentVideoFinishedLoading;
private ImageReceiver.BitmapHolder currentThumb;
2017-03-31 01:58:05 +02:00
private boolean ignoreDidSetImage;
2017-07-08 18:32:04 +02:00
boolean fromCamera;
private int avatarsDialogId;
2017-07-08 18:32:04 +02:00
private boolean isEvent;
2019-01-23 18:03:33 +01:00
private int sharedMediaType;
private long currentDialogId;
2015-11-26 22:04:02 +01:00
private long mergeDialogId;
private int totalImagesCount;
2015-11-26 22:04:02 +01:00
private int totalImagesCountMerge;
private boolean isFirstLoading;
private boolean needSearchImageInArr;
private boolean loadingMoreImages;
2015-11-26 22:04:02 +01:00
private boolean endReached[] = new boolean[] {false, true};
private boolean opennedFromMedia;
2016-10-11 13:57:01 +02:00
private boolean attachedToWindow;
private boolean wasLayout;
private boolean dontResetZoomOnFirstLayout;
2017-03-31 01:58:05 +02:00
private boolean draggingDown;
private float dragY;
2016-03-06 02:49:31 +01:00
private float translationX;
private float translationY;
private float scale = 1;
private float animateToX;
private float animateToY;
private float animateToScale;
private float animationValue;
2017-03-31 01:58:05 +02:00
private boolean applying;
private long animationStartTime;
private AnimatorSet imageMoveAnimation;
private AnimatorSet changeModeAnimation;
private GestureDetector gestureDetector;
2019-01-23 18:03:33 +01:00
private boolean doubleTapEnabled;
2014-11-19 02:23:46 +01:00
private DecelerateInterpolator interpolator = new DecelerateInterpolator(1.5f);
2016-03-06 02:49:31 +01:00
private float pinchStartDistance;
private float pinchStartScale = 1;
private float pinchCenterX;
private float pinchCenterY;
private float pinchStartX;
private float pinchStartY;
private float moveStartX;
private float moveStartY;
private float minX;
private float maxX;
private float minY;
private float maxY;
private boolean canZoom = true;
2017-03-31 01:58:05 +02:00
private boolean changingPage;
private boolean zooming;
private boolean moving;
private boolean doubleTap;
private boolean invalidCoords;
private boolean canDragDown = true;
2017-03-31 01:58:05 +02:00
private boolean zoomAnimation;
private boolean discardTap;
private int switchImageAfterAnimation;
private VelocityTracker velocityTracker;
private Scroller scroller;
private boolean bottomTouchEnabled = true;
2015-01-02 23:15:07 +01:00
private ArrayList<MessageObject> imagesArrTemp = new ArrayList<>();
2018-07-30 04:07:02 +02:00
private SparseArray<MessageObject>[] imagesByIdsTemp = new SparseArray[] {new SparseArray<>(), new SparseArray<>()};
2015-01-02 23:15:07 +01:00
private ArrayList<MessageObject> imagesArr = new ArrayList<>();
2018-07-30 04:07:02 +02:00
private SparseArray<MessageObject>[] imagesByIds = new SparseArray[] {new SparseArray<>(), new SparseArray<>()};
2015-01-02 23:15:07 +01:00
private ArrayList<TLRPC.FileLocation> imagesArrLocations = new ArrayList<>();
2018-07-30 04:07:02 +02:00
private ArrayList<SecureDocument> secureDocuments = new ArrayList<>();
2015-01-02 23:15:07 +01:00
private ArrayList<TLRPC.Photo> avatarsArr = new ArrayList<>();
private ArrayList<Integer> imagesArrLocationsSizes = new ArrayList<>();
private ArrayList<Object> imagesArrLocals = new ArrayList<>();
private TLRPC.FileLocation currentUserAvatarLocation = null;
private final static int gallery_menu_save = 1;
private final static int gallery_menu_showall = 2;
private final static int gallery_menu_send = 3;
2017-12-08 18:35:59 +01:00
private final static int gallery_menu_showinchat = 4;
2018-07-30 04:07:02 +02:00
private final static int gallery_menu_pip = 5;
private final static int gallery_menu_delete = 6;
2018-07-30 04:07:02 +02:00
private final static int gallery_menu_cancel_loading = 7;
private final static int gallery_menu_share = 10;
private final static int gallery_menu_openin = 11;
2016-10-11 13:57:01 +02:00
private final static int gallery_menu_masks = 13;
2017-03-31 01:58:05 +02:00
private static DecelerateInterpolator decelerateInterpolator;
private static Paint progressPaint;
private class BackgroundDrawable extends ColorDrawable {
private Runnable drawRunnable;
2017-03-31 01:58:05 +02:00
private boolean allowDrawContent;
public BackgroundDrawable(int color) {
super(color);
}
2018-07-30 04:07:02 +02:00
@Keep
@Override
public void setAlpha(int alpha) {
if (parentActivity instanceof LaunchActivity) {
2017-03-31 01:58:05 +02:00
allowDrawContent = !isVisible || alpha != 255;
((LaunchActivity) parentActivity).drawerLayoutContainer.setAllowDrawContent(allowDrawContent);
if (parentAlert != null) {
if (!allowDrawContent) {
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(() -> {
if (parentAlert != null) {
parentAlert.setAllowDrawContent(allowDrawContent);
2017-03-31 01:58:05 +02:00
}
}, 50);
} else {
if (parentAlert != null) {
parentAlert.setAllowDrawContent(allowDrawContent);
}
}
}
}
super.setAlpha(alpha);
}
@Override
public void draw(Canvas canvas) {
super.draw(canvas);
if (getAlpha() != 0) {
if (drawRunnable != null) {
2017-12-08 18:35:59 +01:00
AndroidUtilities.runOnUIThread(drawRunnable);
drawRunnable = null;
}
}
}
}
private class CounterView extends View {
private StaticLayout staticLayout;
private TextPaint textPaint;
private Paint paint;
private int width;
private int height;
private RectF rect;
private int currentCount = 0;
2017-12-08 18:35:59 +01:00
private float rotation;
public CounterView(Context context) {
super(context);
textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG);
textPaint.setTextSize(AndroidUtilities.dp(18));
textPaint.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
textPaint.setColor(0xffffffff);
paint = new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(0xffffffff);
paint.setStrokeWidth(AndroidUtilities.dp(2));
paint.setStyle(Paint.Style.STROKE);
2017-12-08 18:35:59 +01:00
paint.setStrokeJoin(Paint.Join.ROUND);
rect = new RectF();
setCount(0);
}
2018-07-30 04:07:02 +02:00
@Keep
@Override
public void setScaleX(float scaleX) {
super.setScaleX(scaleX);
invalidate();
}
2018-07-30 04:07:02 +02:00
@Keep
2017-12-08 18:35:59 +01:00
@Override
public void setRotationX(float rotationX) {
rotation = rotationX;
invalidate();
}
@Override
public float getRotationX() {
return rotation;
}
public void setCount(int value) {
staticLayout = new StaticLayout("" + Math.max(1, value), textPaint, AndroidUtilities.dp(100), Layout.Alignment.ALIGN_NORMAL, 1.0f, 0.0f, false);
width = (int) Math.ceil(staticLayout.getLineWidth(0));
height = staticLayout.getLineBottom(0);
AnimatorSet animatorSet = new AnimatorSet();
if (value == 0) {
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(this, View.SCALE_X, 0.0f),
ObjectAnimator.ofFloat(this, View.SCALE_Y, 0.0f),
ObjectAnimator.ofInt(paint, AnimationProperties.PAINT_ALPHA, 0),
ObjectAnimator.ofInt(textPaint, AnimationProperties.PAINT_ALPHA, 0));
animatorSet.setInterpolator(new DecelerateInterpolator());
} else if (currentCount == 0) {
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(this, View.SCALE_X, 0.0f, 1.0f),
ObjectAnimator.ofFloat(this, View.SCALE_Y, 0.0f, 1.0f),
ObjectAnimator.ofInt(paint, AnimationProperties.PAINT_ALPHA, 0, 255),
ObjectAnimator.ofInt(textPaint, AnimationProperties.PAINT_ALPHA, 0, 255));
animatorSet.setInterpolator(new DecelerateInterpolator());
} else if (value < currentCount) {
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(this, View.SCALE_X, 1.1f, 1.0f),
ObjectAnimator.ofFloat(this, View.SCALE_Y, 1.1f, 1.0f));
animatorSet.setInterpolator(new OvershootInterpolator());
} else {
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(this, View.SCALE_X, 0.9f, 1.0f),
ObjectAnimator.ofFloat(this, View.SCALE_Y, 0.9f, 1.0f));
animatorSet.setInterpolator(new OvershootInterpolator());
}
animatorSet.setDuration(180);
animatorSet.start();
requestLayout();
currentCount = value;
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(MeasureSpec.makeMeasureSpec(Math.max(width + AndroidUtilities.dp(20), AndroidUtilities.dp(30)), MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(40), MeasureSpec.EXACTLY));
}
@Override
protected void onDraw(Canvas canvas) {
int cy = getMeasuredHeight() / 2;
2017-12-08 18:35:59 +01:00
paint.setAlpha(255);
rect.set(AndroidUtilities.dp(1), cy - AndroidUtilities.dp(14), getMeasuredWidth() - AndroidUtilities.dp(1), cy + AndroidUtilities.dp(14));
canvas.drawRoundRect(rect, AndroidUtilities.dp(15), AndroidUtilities.dp(15), paint);
if (staticLayout != null) {
2017-12-08 18:35:59 +01:00
textPaint.setAlpha((int) ((1.0f - rotation) * 255));
canvas.save();
2017-12-08 18:35:59 +01:00
canvas.translate((getMeasuredWidth() - width) / 2, (getMeasuredHeight() - height) / 2 + AndroidUtilities.dpf2(0.2f) + rotation * AndroidUtilities.dp(5));
staticLayout.draw(canvas);
canvas.restore();
2017-12-08 18:35:59 +01:00
paint.setAlpha((int) (rotation * 255));
int cx = (int) rect.centerX();
cy = (int) rect.centerY();
cy -= AndroidUtilities.dp(5) * (1.0f - rotation) + AndroidUtilities.dp(3.0f);
canvas.drawLine(cx + AndroidUtilities.dp(0.5f), cy - AndroidUtilities.dp(0.5f), cx - AndroidUtilities.dp(6), cy + AndroidUtilities.dp(6), paint);
canvas.drawLine(cx - AndroidUtilities.dp(0.5f), cy - AndroidUtilities.dp(0.5f), cx + AndroidUtilities.dp(6), cy + AndroidUtilities.dp(6), paint);
}
}
}
2017-03-31 01:58:05 +02:00
private class PhotoProgressView {
2014-10-28 18:07:44 +01:00
private long lastUpdateTime = 0;
private float radOffset = 0;
private float currentProgress = 0;
private float animationProgressStart = 0;
private long currentProgressTime = 0;
private float animatedProgressValue = 0;
private RectF progressRect = new RectF();
private int backgroundState = -1;
2018-07-30 04:07:02 +02:00
private View parent;
2014-10-28 18:07:44 +01:00
private int size = AndroidUtilities.dp(64);
2014-10-30 22:27:41 +01:00
private int previousBackgroundState = -2;
private float animatedAlphaValue = 1.0f;
2015-01-02 23:15:07 +01:00
private float alpha = 1.0f;
private float scale = 1.0f;
2014-10-28 18:07:44 +01:00
2017-03-31 01:58:05 +02:00
public PhotoProgressView(Context context, View parentView) {
2014-10-28 18:07:44 +01:00
if (decelerateInterpolator == null) {
2015-01-02 23:15:07 +01:00
decelerateInterpolator = new DecelerateInterpolator(1.5f);
2014-10-28 18:07:44 +01:00
progressPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
progressPaint.setStyle(Paint.Style.STROKE);
progressPaint.setStrokeCap(Paint.Cap.ROUND);
2016-04-22 15:49:00 +02:00
progressPaint.setStrokeWidth(AndroidUtilities.dp(3));
2014-10-28 18:07:44 +01:00
progressPaint.setColor(0xffffffff);
}
parent = parentView;
}
private void updateAnimation() {
long newTime = System.currentTimeMillis();
long dt = newTime - lastUpdateTime;
2018-07-30 04:07:02 +02:00
if (dt > 18) {
dt = 18;
}
2014-10-28 18:07:44 +01:00
lastUpdateTime = newTime;
2014-10-30 22:27:41 +01:00
if (animatedProgressValue != 1) {
radOffset += 360 * dt / 3000.0f;
float progressDiff = currentProgress - animationProgressStart;
if (progressDiff > 0) {
currentProgressTime += dt;
if (currentProgressTime >= 300) {
animatedProgressValue = currentProgress;
animationProgressStart = currentProgress;
currentProgressTime = 0;
} else {
animatedProgressValue = animationProgressStart + progressDiff * decelerateInterpolator.getInterpolation(currentProgressTime / 300.0f);
}
2014-10-28 18:07:44 +01:00
}
2014-10-30 22:27:41 +01:00
parent.invalidate();
}
if (animatedProgressValue >= 1 && previousBackgroundState != -2) {
animatedAlphaValue -= dt / 200.0f;
if (animatedAlphaValue <= 0) {
animatedAlphaValue = 0.0f;
previousBackgroundState = -2;
}
parent.invalidate();
2014-10-28 18:07:44 +01:00
}
}
2014-10-28 18:07:44 +01:00
public void setProgress(float value, boolean animated) {
if (!animated) {
animatedProgressValue = value;
animationProgressStart = value;
} else {
animationProgressStart = animatedProgressValue;
}
currentProgress = value;
currentProgressTime = 0;
}
2014-10-30 22:27:41 +01:00
public void setBackgroundState(int state, boolean animated) {
2018-07-30 04:07:02 +02:00
if (backgroundState == state && animated) {
return;
}
2014-10-28 18:07:44 +01:00
lastUpdateTime = System.currentTimeMillis();
2014-10-30 22:27:41 +01:00
if (animated && backgroundState != state) {
previousBackgroundState = backgroundState;
animatedAlphaValue = 1.0f;
} else {
previousBackgroundState = -2;
}
2014-10-28 18:07:44 +01:00
backgroundState = state;
parent.invalidate();
}
2015-01-02 23:15:07 +01:00
public void setAlpha(float value) {
alpha = value;
}
public void setScale(float value) {
scale = value;
}
2014-10-28 18:07:44 +01:00
public void onDraw(Canvas canvas) {
2015-02-01 19:51:02 +01:00
int sizeScaled = (int) (size * scale);
int x = (getContainerViewWidth() - sizeScaled) / 2;
int y = (getContainerViewHeight() - sizeScaled) / 2;
2014-10-28 18:07:44 +01:00
2014-10-30 22:27:41 +01:00
if (previousBackgroundState >= 0 && previousBackgroundState < 4) {
Drawable drawable = progressDrawables[previousBackgroundState];
if (drawable != null) {
2015-02-01 19:51:02 +01:00
drawable.setAlpha((int) (255 * animatedAlphaValue * alpha));
2015-01-02 23:15:07 +01:00
drawable.setBounds(x, y, x + sizeScaled, y + sizeScaled);
2014-10-30 22:27:41 +01:00
drawable.draw(canvas);
}
2014-10-28 18:07:44 +01:00
}
2014-10-30 22:27:41 +01:00
if (backgroundState >= 0 && backgroundState < 4) {
Drawable drawable = progressDrawables[backgroundState];
if (drawable != null) {
if (previousBackgroundState != -2) {
2015-02-01 19:51:02 +01:00
drawable.setAlpha((int) (255 * (1.0f - animatedAlphaValue) * alpha));
2014-10-30 22:27:41 +01:00
} else {
2015-02-01 19:51:02 +01:00
drawable.setAlpha((int) (255 * alpha));
2014-10-30 22:27:41 +01:00
}
2015-01-02 23:15:07 +01:00
drawable.setBounds(x, y, x + sizeScaled, y + sizeScaled);
2014-10-30 22:27:41 +01:00
drawable.draw(canvas);
}
}
if (backgroundState == 0 || backgroundState == 1 || previousBackgroundState == 0 || previousBackgroundState == 1) {
2016-04-22 15:49:00 +02:00
int diff = AndroidUtilities.dp(4);
2014-10-30 22:27:41 +01:00
if (previousBackgroundState != -2) {
2015-02-01 19:51:02 +01:00
progressPaint.setAlpha((int) (255 * animatedAlphaValue * alpha));
2014-10-30 22:27:41 +01:00
} else {
2015-02-01 19:51:02 +01:00
progressPaint.setAlpha((int) (255 * alpha));
2014-10-30 22:27:41 +01:00
}
2015-01-02 23:15:07 +01:00
progressRect.set(x + diff, y + diff, x + sizeScaled - diff, y + sizeScaled - diff);
2014-10-28 18:07:44 +01:00
canvas.drawArc(progressRect, -90 + radOffset, Math.max(4, 360 * animatedProgressValue), false, progressPaint);
updateAnimation();
}
}
}
public static class PlaceProviderObject {
public ImageReceiver imageReceiver;
public int viewX;
public int viewY;
public View parentView;
2018-07-30 04:07:02 +02:00
public ImageReceiver.BitmapHolder thumb;
public int dialogId;
public int index;
public int size;
2014-11-17 03:44:57 +01:00
public int radius;
2015-10-29 18:10:07 +01:00
public int clipBottomAddition;
2015-11-26 22:04:02 +01:00
public int clipTopAddition;
2015-10-29 18:10:07 +01:00
public float scale = 1.0f;
2017-07-08 18:32:04 +02:00
public boolean isEvent;
}
public static class EmptyPhotoViewerProvider implements PhotoViewerProvider {
@Override
2019-03-03 21:40:48 +01:00
public PlaceProviderObject getPlaceForPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index, boolean needPreview) {
return null;
}
@Override
2018-07-30 04:07:02 +02:00
public ImageReceiver.BitmapHolder getThumbForPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index) {
return null;
}
@Override
public void willSwitchFromPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index) {
}
@Override
public void willHidePhotoViewer() {
}
2018-07-30 04:07:02 +02:00
@Override
public int setPhotoUnchecked(Object photoEntry) {
return -1;
}
@Override
public boolean isPhotoChecked(int index) {
return false;
}
@Override
2017-12-08 18:35:59 +01:00
public int setPhotoChecked(int index, VideoEditedInfo videoEditedInfo) {
return -1;
}
@Override
2015-10-29 18:10:07 +01:00
public boolean cancelButtonPressed() {
return true;
}
@Override
2017-03-31 01:58:05 +02:00
public void sendButtonPressed(int index, VideoEditedInfo videoEditedInfo) {
}
@Override
public int getSelectedCount() {
return 0;
}
@Override
public void updatePhotoAtIndex(int index) {
}
2016-10-11 13:57:01 +02:00
@Override
public boolean allowCaption() {
return true;
}
@Override
public boolean scaleToFill() {
return false;
}
2017-12-08 18:35:59 +01:00
@Override
public void toggleGroupPhotosEnabled() {
}
@Override
public ArrayList<Object> getSelectedPhotosOrder() {
return null;
}
@Override
public HashMap<Object, Object> getSelectedPhotos() {
return null;
}
@Override
public boolean canScrollAway() {
return true;
}
@Override
public boolean allowGroupPhotos() {
return true;
}
2018-07-30 04:07:02 +02:00
@Override
public void needAddMorePhotos() {
}
@Override
public int getPhotoIndex(int index) {
return -1;
}
@Override
public void deleteImageAtIndex(int index) {
}
@Override
public String getDeleteMessageString() {
return null;
}
@Override
public boolean canCaptureMorePhotos() {
return true;
}
}
public interface PhotoViewerProvider {
2019-03-03 21:40:48 +01:00
PlaceProviderObject getPlaceForPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index, boolean needPreview);
2015-02-01 19:51:02 +01:00
2018-07-30 04:07:02 +02:00
ImageReceiver.BitmapHolder getThumbForPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index);
2015-02-01 19:51:02 +01:00
void willSwitchFromPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index);
2015-02-01 19:51:02 +01:00
void willHidePhotoViewer();
2015-02-01 19:51:02 +01:00
boolean isPhotoChecked(int index);
2015-02-01 19:51:02 +01:00
2017-12-08 18:35:59 +01:00
int setPhotoChecked(int index, VideoEditedInfo videoEditedInfo);
2015-02-01 19:51:02 +01:00
2018-07-30 04:07:02 +02:00
int setPhotoUnchecked(Object photoEntry);
2015-10-29 18:10:07 +01:00
boolean cancelButtonPressed();
2015-02-01 19:51:02 +01:00
2018-07-30 04:07:02 +02:00
void needAddMorePhotos();
2017-03-31 01:58:05 +02:00
void sendButtonPressed(int index, VideoEditedInfo videoEditedInfo);
2015-02-01 19:51:02 +01:00
int getSelectedCount();
void updatePhotoAtIndex(int index);
2016-10-11 13:57:01 +02:00
boolean allowCaption();
2016-10-11 13:57:01 +02:00
boolean scaleToFill();
2017-12-08 18:35:59 +01:00
void toggleGroupPhotosEnabled();
ArrayList<Object> getSelectedPhotosOrder();
HashMap<Object, Object> getSelectedPhotos();
boolean canScrollAway();
boolean allowGroupPhotos();
2018-07-30 04:07:02 +02:00
int getPhotoIndex(int index);
void deleteImageAtIndex(int index);
String getDeleteMessageString();
boolean canCaptureMorePhotos();
}
2015-06-29 19:12:11 +02:00
private class FrameLayoutDrawer extends SizeNotifierFrameLayoutPhoto {
2016-10-11 13:57:01 +02:00
private Paint paint = new Paint();
public FrameLayoutDrawer(Context context) {
super(context);
setWillNotDraw(false);
2016-10-11 13:57:01 +02:00
paint.setColor(0x33000000);
}
@Override
2015-06-29 19:12:11 +02:00
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int widthSize = MeasureSpec.getSize(widthMeasureSpec);
int heightSize = MeasureSpec.getSize(heightMeasureSpec);
setMeasuredDimension(widthSize, heightSize);
2016-10-11 13:57:01 +02:00
measureChildWithMargins(captionEditText, widthMeasureSpec, 0, heightMeasureSpec, 0);
int inputFieldHeight = captionEditText.getMeasuredHeight();
2019-01-23 18:03:33 +01:00
widthSize-=(getPaddingRight()+getPaddingLeft());
heightSize-=getPaddingBottom();
2015-06-29 19:12:11 +02:00
int childCount = getChildCount();
for (int i = 0; i < childCount; i++) {
View child = getChildAt(i);
2016-10-11 13:57:01 +02:00
if (child.getVisibility() == GONE || child == captionEditText) {
2015-06-29 19:12:11 +02:00
continue;
}
2017-03-31 01:58:05 +02:00
if (child == aspectRatioFrameLayout) {
int heightSpec = MeasureSpec.makeMeasureSpec(AndroidUtilities.displaySize.y + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0), MeasureSpec.EXACTLY);
2019-01-23 18:03:33 +01:00
child.measure(widthMeasureSpec, heightSpec);
2017-03-31 01:58:05 +02:00
} else if (captionEditText.isPopupView(child)) {
2016-10-11 13:57:01 +02:00
if (AndroidUtilities.isInMultiwindow) {
if (AndroidUtilities.isTablet()) {
child.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(Math.min(AndroidUtilities.dp(320), heightSize - inputFieldHeight - AndroidUtilities.statusBarHeight), MeasureSpec.EXACTLY));
} else {
child.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(heightSize - inputFieldHeight - AndroidUtilities.statusBarHeight, MeasureSpec.EXACTLY));
}
} else {
child.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(child.getLayoutParams().height, MeasureSpec.EXACTLY));
}
2015-06-29 19:12:11 +02:00
} else {
measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
}
}
}
@Override
2019-01-23 18:03:33 +01:00
protected void onLayout(boolean changed, int _l, int t, int _r, int _b) {
2015-06-29 19:12:11 +02:00
final int count = getChildCount();
2016-10-11 13:57:01 +02:00
int paddingBottom = getKeyboardHeight() <= AndroidUtilities.dp(20) && !AndroidUtilities.isInMultiwindow ? captionEditText.getEmojiPadding() : 0;
2015-06-29 19:12:11 +02:00
for (int i = 0; i < count; i++) {
final View child = getChildAt(i);
if (child.getVisibility() == GONE) {
continue;
}
2019-01-23 18:03:33 +01:00
int l, r, b;
if (child == aspectRatioFrameLayout) {
l = _l;
r = _r;
b = _b;
} else {
l = _l + getPaddingLeft();
r = _r - getPaddingRight();
b = _b - getPaddingBottom();
}
2015-06-29 19:12:11 +02:00
final LayoutParams lp = (LayoutParams) child.getLayoutParams();
final int width = child.getMeasuredWidth();
final int height = child.getMeasuredHeight();
int childLeft;
int childTop;
int gravity = lp.gravity;
if (gravity == -1) {
gravity = Gravity.TOP | Gravity.LEFT;
}
final int absoluteGravity = gravity & Gravity.HORIZONTAL_GRAVITY_MASK;
final int verticalGravity = gravity & Gravity.VERTICAL_GRAVITY_MASK;
switch (absoluteGravity & Gravity.HORIZONTAL_GRAVITY_MASK) {
case Gravity.CENTER_HORIZONTAL:
childLeft = (r - l - width) / 2 + lp.leftMargin - lp.rightMargin;
break;
case Gravity.RIGHT:
2017-03-31 01:58:05 +02:00
childLeft = (r - l - width) - lp.rightMargin;
2015-06-29 19:12:11 +02:00
break;
case Gravity.LEFT:
default:
childLeft = lp.leftMargin;
}
switch (verticalGravity) {
case Gravity.TOP:
childTop = lp.topMargin;
break;
case Gravity.CENTER_VERTICAL:
childTop = ((b - paddingBottom) - t - height) / 2 + lp.topMargin - lp.bottomMargin;
break;
case Gravity.BOTTOM:
childTop = ((b - paddingBottom) - t) - height - lp.bottomMargin;
break;
default:
childTop = lp.topMargin;
}
if (child == mentionListView) {
2017-03-31 01:58:05 +02:00
childTop -= captionEditText.getMeasuredHeight();
2015-06-29 19:12:11 +02:00
} else if (captionEditText.isPopupView(child)) {
2016-10-11 13:57:01 +02:00
if (AndroidUtilities.isInMultiwindow) {
childTop = captionEditText.getTop() - child.getMeasuredHeight() + AndroidUtilities.dp(1);
} else {
childTop = captionEditText.getBottom();
}
2017-12-08 18:35:59 +01:00
} else if (child == selectedPhotosListView) {
childTop = actionBar.getMeasuredHeight();
2018-07-30 04:07:02 +02:00
} else if (child == captionTextView || child == switchCaptionTextView) {
2017-12-08 18:35:59 +01:00
if (!groupedPhotosListView.currentPhotos.isEmpty()) {
2019-01-23 18:03:33 +01:00
childTop -= groupedPhotosListView.getMeasuredHeight();
2017-12-08 18:35:59 +01:00
}
} else if (hintTextView != null && child == hintTextView) {
childTop = selectedPhotosListView.getBottom() + AndroidUtilities.dp(3);
2018-07-30 04:07:02 +02:00
} else if (child == cameraItem) {
childTop = pickerView.getTop() - AndroidUtilities.dp(sendPhotoType == 4 || sendPhotoType == 5 ? 40 : 15) - cameraItem.getMeasuredHeight();
}
2019-01-23 18:03:33 +01:00
child.layout(childLeft + l, childTop, childLeft + width + l, childTop + height);
}
2015-06-29 19:12:11 +02:00
notifyHeightChanged();
}
@Override
protected void onDraw(Canvas canvas) {
2017-03-31 01:58:05 +02:00
PhotoViewer.this.onDraw(canvas);
2016-10-11 13:57:01 +02:00
2018-07-30 04:07:02 +02:00
if (Build.VERSION.SDK_INT >= 21 && AndroidUtilities.statusBarHeight != 0 && actionBar != null) {
paint.setAlpha((int) (255 * actionBar.getAlpha() * 0.2f));
2016-10-11 13:57:01 +02:00
canvas.drawRect(0, 0, getMeasuredWidth(), AndroidUtilities.statusBarHeight, paint);
2019-01-23 18:03:33 +01:00
paint.setAlpha((int) (255 * actionBar.getAlpha() * 0.498f));
if(getPaddingRight()>0){
canvas.drawRect(getMeasuredWidth()-getPaddingRight(), 0, getMeasuredWidth(), getMeasuredHeight(), paint);
}
if(getPaddingLeft()>0){
canvas.drawRect(0, 0, getPaddingLeft(), getMeasuredHeight(), paint);
}
2016-10-11 13:57:01 +02:00
}
}
@Override
protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
2017-03-31 01:58:05 +02:00
if (child == mentionListView || child == captionEditText) {
2017-12-08 18:35:59 +01:00
if (!captionEditText.isPopupShowing() && captionEditText.getEmojiPadding() == 0 && (AndroidUtilities.usingHardwareInput && captionEditText.getTag() == null || getKeyboardHeight() == 0)) {
2017-03-31 01:58:05 +02:00
return false;
}
2018-07-30 04:07:02 +02:00
} else if (child == cameraItem || child == pickerView || child == pickerViewSendButton || child == captionTextView || muteItem.getVisibility() == VISIBLE && child == bottomLayout) {
2017-03-31 01:58:05 +02:00
int paddingBottom = getKeyboardHeight() <= AndroidUtilities.dp(20) && !AndroidUtilities.isInMultiwindow ? captionEditText.getEmojiPadding() : 0;
2017-12-08 18:35:59 +01:00
if (captionEditText.isPopupShowing() || AndroidUtilities.usingHardwareInput && captionEditText.getTag() != null || getKeyboardHeight() > 0 || paddingBottom != 0) {
bottomTouchEnabled = false;
return false;
} else {
bottomTouchEnabled = true;
}
} else if (child == checkImageView || child == photosCounterView) {
if (captionEditText.getTag() != null) {
2017-03-31 01:58:05 +02:00
bottomTouchEnabled = false;
return false;
} else {
bottomTouchEnabled = true;
}
2018-07-30 04:07:02 +02:00
} else if (child == miniProgressView) {
return false;
2017-03-31 01:58:05 +02:00
}
2017-07-08 18:32:04 +02:00
try {
return child != aspectRatioFrameLayout && super.drawChild(canvas, child, drawingTime);
} catch (Throwable ignore) {
return true;
}
}
}
2017-03-31 01:58:05 +02:00
@SuppressLint("StaticFieldLeak")
private static volatile PhotoViewer Instance = null;
2018-07-30 04:07:02 +02:00
private static volatile PhotoViewer PipInstance = null;
public static PhotoViewer getPipInstance() {
return PipInstance;
}
2015-02-01 19:51:02 +01:00
public static PhotoViewer getInstance() {
PhotoViewer localInstance = Instance;
if (localInstance == null) {
synchronized (PhotoViewer.class) {
localInstance = Instance;
if (localInstance == null) {
Instance = localInstance = new PhotoViewer();
}
}
}
return localInstance;
}
2018-07-30 04:07:02 +02:00
public static boolean hasInstance() {
return Instance != null;
}
2016-10-11 13:57:01 +02:00
public PhotoViewer() {
blackPaint.setColor(0xff000000);
}
@SuppressWarnings("unchecked")
@Override
2018-07-30 04:07:02 +02:00
public void didReceivedNotification(int id, int account, Object... args) {
2019-01-23 18:03:33 +01:00
if (id == NotificationCenter.fileDidFailedLoad) {
2015-02-01 19:51:02 +01:00
String location = (String) args[0];
2014-10-28 18:07:44 +01:00
for (int a = 0; a < 3; a++) {
if (currentFileNames[a] != null && currentFileNames[a].equals(location)) {
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setProgress(1.0f, true);
2014-10-30 22:27:41 +01:00
checkProgress(a, true);
2014-10-28 18:07:44 +01:00
break;
}
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.fileDidLoad) {
2015-02-01 19:51:02 +01:00
String location = (String) args[0];
2014-10-28 18:07:44 +01:00
for (int a = 0; a < 3; a++) {
if (currentFileNames[a] != null && currentFileNames[a].equals(location)) {
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setProgress(1.0f, true);
2014-10-30 22:27:41 +01:00
checkProgress(a, true);
2018-07-30 04:07:02 +02:00
if (videoPlayer == null && a == 0 && (currentMessageObject != null && currentMessageObject.isVideo() || currentBotInlineResult != null && (currentBotInlineResult.type.equals("video") || MessageObject.isVideoDocument(currentBotInlineResult.document)))) {
onActionClick(false);
}
2018-07-30 04:07:02 +02:00
if (a == 0 && videoPlayer != null) {
currentVideoFinishedLoading = true;
}
2014-10-28 18:07:44 +01:00
break;
}
}
} else if (id == NotificationCenter.FileLoadProgressChanged) {
2015-02-01 19:51:02 +01:00
String location = (String) args[0];
2014-10-28 18:07:44 +01:00
for (int a = 0; a < 3; a++) {
if (currentFileNames[a] != null && currentFileNames[a].equals(location)) {
2018-07-30 04:07:02 +02:00
Float loadProgress = (Float) args[1];
photoProgressViews[a].setProgress(loadProgress, true);
if (a == 0 && videoPlayer != null && videoPlayerSeekbar != null) {
float bufferedProgress;
if (currentVideoFinishedLoading) {
bufferedProgress = 1.0f;
} else {
long newTime = SystemClock.elapsedRealtime();
if (Math.abs(newTime - lastBufferedPositionCheck) >= 500) {
float progress;
if (seekToProgressPending == 0) {
long duration = videoPlayer.getDuration();
long position = videoPlayer.getCurrentPosition();
if (duration >= 0 && duration != C.TIME_UNSET && position >= 0) {
progress = position / (float) duration;
} else {
progress = 0.0f;
}
} else {
progress = seekToProgressPending;
}
bufferedProgress = isStreaming ? FileLoader.getInstance(currentAccount).getBufferedProgressFromPosition(progress, currentFileNames[0]) : 1.0f;
lastBufferedPositionCheck = newTime;
} else {
bufferedProgress = -1;
}
}
if (bufferedProgress != -1) {
videoPlayerSeekbar.setBufferedProgress(bufferedProgress);
if (pipVideoView != null) {
pipVideoView.setBufferedProgress(bufferedProgress);
}
videoPlayerControlFrameLayout.invalidate();
}
checkBufferedProgress(loadProgress);
}
}
}
} else if (id == NotificationCenter.dialogPhotosLoaded) {
2017-12-08 18:35:59 +01:00
int guid = (Integer) args[3];
int did = (Integer) args[0];
if (avatarsDialogId == did && classGuid == guid) {
2017-12-08 18:35:59 +01:00
boolean fromCache = (Boolean) args[2];
int setToImage = -1;
2017-12-08 18:35:59 +01:00
ArrayList<TLRPC.Photo> photos = (ArrayList<TLRPC.Photo>) args[4];
if (photos.isEmpty()) {
return;
}
imagesArrLocations.clear();
imagesArrLocationsSizes.clear();
avatarsArr.clear();
2016-05-25 23:49:47 +02:00
for (int a = 0; a < photos.size(); a++) {
TLRPC.Photo photo = photos.get(a);
2015-03-26 18:34:47 +01:00
if (photo == null || photo instanceof TLRPC.TL_photoEmpty || photo.sizes == null) {
continue;
}
2014-10-01 21:55:24 +02:00
TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(photo.sizes, 640);
if (sizeFull != null) {
2016-05-25 23:49:47 +02:00
if (setToImage == -1 && currentFileLocation != null) {
for (int b = 0; b < photo.sizes.size(); b++) {
TLRPC.PhotoSize size = photo.sizes.get(b);
if (size.location.local_id == currentFileLocation.local_id && size.location.volume_id == currentFileLocation.volume_id) {
setToImage = imagesArrLocations.size();
break;
}
}
}
imagesArrLocations.add(sizeFull.location);
imagesArrLocationsSizes.add(sizeFull.size);
avatarsArr.add(photo);
}
}
if (!avatarsArr.isEmpty()) {
menuItem.showSubItem(gallery_menu_delete);
} else {
menuItem.hideSubItem(gallery_menu_delete);
}
needSearchImageInArr = false;
currentIndex = -1;
if (setToImage != -1) {
setImageIndex(setToImage, true);
} else {
avatarsArr.add(0, new TLRPC.TL_photoEmpty());
imagesArrLocations.add(0, currentFileLocation);
imagesArrLocationsSizes.add(0, 0);
setImageIndex(0, true);
}
if (fromCache) {
2018-07-30 04:07:02 +02:00
MessagesController.getInstance(currentAccount).loadDialogPhotos(avatarsDialogId, 80, 0, false, classGuid);
}
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.mediaCountDidLoad) {
2015-02-01 19:51:02 +01:00
long uid = (Long) args[0];
2015-11-26 22:04:02 +01:00
if (uid == currentDialogId || uid == mergeDialogId) {
if (uid == currentDialogId) {
totalImagesCount = (Integer) args[1];
2015-12-09 19:27:52 +01:00
/*if ((Boolean) args[2]) {
2019-01-23 18:03:33 +01:00
SharedMediaQuery.getMediaCount(currentDialogId, sharedMediaType, classGuid, false);
2015-12-09 19:27:52 +01:00
}*/
2015-11-26 22:04:02 +01:00
} else if (uid == mergeDialogId) {
totalImagesCountMerge = (Integer) args[1];
2015-12-09 19:27:52 +01:00
/*if ((Boolean) args[2]) {
2019-01-23 18:03:33 +01:00
SharedMediaQuery.getMediaCount(mergeDialogId, sharedMediaType, classGuid, false);
2015-12-09 19:27:52 +01:00
}*/
}
if (needSearchImageInArr && isFirstLoading) {
isFirstLoading = false;
loadingMoreImages = true;
2019-01-23 18:03:33 +01:00
DataQuery.getInstance(currentAccount).loadMedia(currentDialogId, 80, 0, sharedMediaType, 1, classGuid);
} else if (!imagesArr.isEmpty()) {
if (opennedFromMedia) {
2015-11-26 22:04:02 +01:00
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, currentIndex + 1, totalImagesCount + totalImagesCountMerge));
} else {
2015-11-26 22:04:02 +01:00
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, (totalImagesCount + totalImagesCountMerge - imagesArr.size()) + currentIndex + 1, totalImagesCount + totalImagesCountMerge));
}
}
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.mediaDidLoad) {
2015-02-01 19:51:02 +01:00
long uid = (Long) args[0];
2015-09-24 22:52:02 +02:00
int guid = (Integer) args[3];
2015-11-26 22:04:02 +01:00
if ((uid == currentDialogId || uid == mergeDialogId) && guid == classGuid) {
loadingMoreImages = false;
2015-11-26 22:04:02 +01:00
int loadIndex = uid == currentDialogId ? 0 : 1;
2015-02-01 19:51:02 +01:00
ArrayList<MessageObject> arr = (ArrayList<MessageObject>) args[2];
2015-11-26 22:04:02 +01:00
endReached[loadIndex] = (Boolean) args[5];
if (needSearchImageInArr) {
2015-11-26 22:04:02 +01:00
if (arr.isEmpty() && (loadIndex != 0 || mergeDialogId == 0)) {
needSearchImageInArr = false;
return;
}
int foundIndex = -1;
MessageObject currentMessage = imagesArr.get(currentIndex);
int added = 0;
2015-11-26 22:04:02 +01:00
for (int a = 0; a < arr.size(); a++) {
MessageObject message = arr.get(a);
2018-07-30 04:07:02 +02:00
if (imagesByIdsTemp[loadIndex].indexOfKey(message.getId()) < 0) {
2015-11-26 22:04:02 +01:00
imagesByIdsTemp[loadIndex].put(message.getId(), message);
if (opennedFromMedia) {
imagesArrTemp.add(message);
if (message.getId() == currentMessage.getId()) {
foundIndex = added;
}
added++;
} else {
added++;
imagesArrTemp.add(0, message);
if (message.getId() == currentMessage.getId()) {
foundIndex = arr.size() - added;
}
}
}
}
2015-11-26 22:04:02 +01:00
if (added == 0 && (loadIndex != 0 || mergeDialogId == 0)) {
totalImagesCount = imagesArr.size();
2015-11-26 22:04:02 +01:00
totalImagesCountMerge = 0;
}
if (foundIndex != -1) {
imagesArr.clear();
imagesArr.addAll(imagesArrTemp);
2015-11-26 22:04:02 +01:00
for (int a = 0; a < 2; a++) {
2018-07-30 04:07:02 +02:00
imagesByIds[a] = imagesByIdsTemp[a].clone();
2015-11-26 22:04:02 +01:00
imagesByIdsTemp[a].clear();
}
imagesArrTemp.clear();
needSearchImageInArr = false;
currentIndex = -1;
2014-07-23 01:27:00 +02:00
if (foundIndex >= imagesArr.size()) {
foundIndex = imagesArr.size() - 1;
}
setImageIndex(foundIndex, true);
} else {
2015-11-26 22:04:02 +01:00
int loadFromMaxId;
if (opennedFromMedia) {
loadFromMaxId = imagesArrTemp.isEmpty() ? 0 : imagesArrTemp.get(imagesArrTemp.size() - 1).getId();
if (loadIndex == 0 && endReached[loadIndex] && mergeDialogId != 0) {
loadIndex = 1;
if (!imagesArrTemp.isEmpty() && imagesArrTemp.get(imagesArrTemp.size() - 1).getDialogId() != mergeDialogId) {
loadFromMaxId = 0;
}
}
} else {
loadFromMaxId = imagesArrTemp.isEmpty() ? 0 : imagesArrTemp.get(0).getId();
if (loadIndex == 0 && endReached[loadIndex] && mergeDialogId != 0) {
loadIndex = 1;
if (!imagesArrTemp.isEmpty() && imagesArrTemp.get(0).getDialogId() != mergeDialogId) {
loadFromMaxId = 0;
}
}
}
if (!endReached[loadIndex]) {
loadingMoreImages = true;
if (opennedFromMedia) {
2019-01-23 18:03:33 +01:00
DataQuery.getInstance(currentAccount).loadMedia(loadIndex == 0 ? currentDialogId : mergeDialogId, 80, loadFromMaxId, sharedMediaType, 1, classGuid);
} else {
2019-01-23 18:03:33 +01:00
DataQuery.getInstance(currentAccount).loadMedia(loadIndex == 0 ? currentDialogId : mergeDialogId, 80, loadFromMaxId, sharedMediaType, 1, classGuid);
}
}
}
} else {
int added = 0;
for (MessageObject message : arr) {
2018-07-30 04:07:02 +02:00
if (imagesByIds[loadIndex].indexOfKey(message.getId()) < 0) {
added++;
if (opennedFromMedia) {
imagesArr.add(message);
} else {
imagesArr.add(0, message);
}
2015-11-26 22:04:02 +01:00
imagesByIds[loadIndex].put(message.getId(), message);
}
}
if (opennedFromMedia) {
if (added == 0) {
totalImagesCount = imagesArr.size();
2015-11-26 22:04:02 +01:00
totalImagesCountMerge = 0;
}
} else {
if (added != 0) {
int index = currentIndex;
currentIndex = -1;
setImageIndex(index + added, true);
} else {
totalImagesCount = imagesArr.size();
2015-11-26 22:04:02 +01:00
totalImagesCountMerge = 0;
}
}
}
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.emojiDidLoad) {
if (captionTextView != null) {
captionTextView.invalidate();
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.filePreparingFailed) {
2017-03-31 01:58:05 +02:00
MessageObject messageObject = (MessageObject) args[0];
if (loadInitialVideo) {
loadInitialVideo = false;
progressView.setVisibility(View.INVISIBLE);
preparePlayer(currentPlayingVideoFile, false, false);
} else if (tryStartRequestPreviewOnFinish) {
releasePlayer();
tryStartRequestPreviewOnFinish = !MediaController.getInstance().scheduleVideoConvert(videoPreviewMessageObject, true);
} else if (messageObject == videoPreviewMessageObject) {
requestingPreview = false;
progressView.setVisibility(View.INVISIBLE);
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.fileNewChunkAvailable) {
2017-03-31 01:58:05 +02:00
MessageObject messageObject = (MessageObject) args[0];
if (messageObject == videoPreviewMessageObject) {
String finalPath = (String) args[1];
2018-07-30 04:07:02 +02:00
long finalSize = (Long) args[3];
2017-03-31 01:58:05 +02:00
if (finalSize != 0) {
requestingPreview = false;
progressView.setVisibility(View.INVISIBLE);
2018-07-30 04:07:02 +02:00
preparePlayer(Uri.fromFile(new File(finalPath)), false, true);
2017-03-31 01:58:05 +02:00
}
}
}
}
2018-07-30 04:07:02 +02:00
private void showDownloadAlert() {
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), null);
2019-01-23 18:03:33 +01:00
boolean alreadyDownloading = currentMessageObject != null && currentMessageObject.isVideo() && FileLoader.getInstance(currentMessageObject.currentAccount).isLoadingFile(currentFileNames[0]);
2018-07-30 04:07:02 +02:00
if (alreadyDownloading) {
builder.setMessage(LocaleController.getString("PleaseStreamDownload", R.string.PleaseStreamDownload));
} else {
builder.setMessage(LocaleController.getString("PleaseDownload", R.string.PleaseDownload));
}
showAlertDialog(builder);
}
private void onSharePressed() {
2016-10-11 13:57:01 +02:00
if (parentActivity == null || !allowShare) {
return;
}
try {
File f = null;
boolean isVideo = false;
if (currentMessageObject != null) {
isVideo = currentMessageObject.isVideo();
/*if (currentMessageObject.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage) {
AndroidUtilities.openUrl(parentActivity, currentMessageObject.messageOwner.media.webpage.url);
return;
}*/
2017-03-31 01:58:05 +02:00
if (!TextUtils.isEmpty(currentMessageObject.messageOwner.attachPath)) {
f = new File(currentMessageObject.messageOwner.attachPath);
if (!f.exists()) {
f = null;
}
}
if (f == null) {
f = FileLoader.getPathToMessage(currentMessageObject.messageOwner);
}
} else if (currentFileLocation != null) {
2017-07-08 18:32:04 +02:00
f = FileLoader.getPathToAttach(currentFileLocation, avatarsDialogId != 0 || isEvent);
}
if (f.exists()) {
Intent intent = new Intent(Intent.ACTION_SEND);
if (isVideo) {
intent.setType("video/mp4");
} else {
2017-03-31 01:58:05 +02:00
if (currentMessageObject != null) {
intent.setType(currentMessageObject.getMimeType());
} else {
intent.setType("image/jpeg");
}
}
2017-12-08 18:35:59 +01:00
if (Build.VERSION.SDK_INT >= 24) {
try {
intent.putExtra(Intent.EXTRA_STREAM, FileProvider.getUriForFile(parentActivity, BuildConfig.APPLICATION_ID + ".provider", f));
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
} catch (Exception ignore) {
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(f));
}
} else {
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(f));
}
parentActivity.startActivityForResult(Intent.createChooser(intent, LocaleController.getString("ShareFile", R.string.ShareFile)), 500);
} else {
2018-07-30 04:07:02 +02:00
showDownloadAlert();
}
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
}
2016-10-11 13:57:01 +02:00
private void setScaleToFill() {
float bitmapWidth = centerImage.getBitmapWidth();
float containerWidth = getContainerViewWidth();
float bitmapHeight = centerImage.getBitmapHeight();
float containerHeight = getContainerViewHeight();
float scaleFit = Math.min(containerHeight / bitmapHeight, containerWidth / bitmapWidth);
float width = (int) (bitmapWidth * scaleFit);
float height = (int) (bitmapHeight * scaleFit);
scale = Math.max(containerWidth / width, containerHeight / height);
updateMinMax(scale);
}
2017-03-31 01:58:05 +02:00
public void setParentAlert(ChatAttachAlert alert) {
parentAlert = alert;
}
public void setParentActivity(final Activity activity) {
2018-07-30 04:07:02 +02:00
currentAccount = UserConfig.selectedAccount;
centerImage.setCurrentAccount(currentAccount);
leftImage.setCurrentAccount(currentAccount);
rightImage.setCurrentAccount(currentAccount);
2014-07-03 16:55:04 +02:00
if (parentActivity == activity) {
return;
}
parentActivity = activity;
2016-04-22 15:49:00 +02:00
actvityContext = new ContextThemeWrapper(parentActivity, R.style.Theme_TMessages);
2014-10-24 15:43:45 +02:00
if (progressDrawables == null) {
progressDrawables = new Drawable[4];
2014-10-28 18:07:44 +01:00
progressDrawables[0] = parentActivity.getResources().getDrawable(R.drawable.circle_big);
progressDrawables[1] = parentActivity.getResources().getDrawable(R.drawable.cancel_big);
progressDrawables[2] = parentActivity.getResources().getDrawable(R.drawable.load_big);
progressDrawables[3] = parentActivity.getResources().getDrawable(R.drawable.play_big);
2014-10-24 15:43:45 +02:00
}
scroller = new Scroller(activity);
2016-10-11 13:57:01 +02:00
windowView = new FrameLayout(activity) {
private Runnable attachRunnable;
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
return isVisible && super.onInterceptTouchEvent(ev);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
return isVisible && PhotoViewer.this.onTouchEvent(event);
}
@Override
protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
2019-03-03 21:40:48 +01:00
boolean result;
try {
result = super.drawChild(canvas, child, drawingTime);
} catch (Throwable ignore) {
result = false;
}
2016-10-11 13:57:01 +02:00
if (Build.VERSION.SDK_INT >= 21 && child == animatingImageView && lastInsets != null) {
WindowInsets insets = (WindowInsets) lastInsets;
canvas.drawRect(0, getMeasuredHeight(), getMeasuredWidth(), getMeasuredHeight() + insets.getSystemWindowInsetBottom(), blackPaint);
}
return result;
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int widthSize = MeasureSpec.getSize(widthMeasureSpec);
int heightSize = MeasureSpec.getSize(heightMeasureSpec);
if (Build.VERSION.SDK_INT >= 21 && lastInsets != null) {
WindowInsets insets = (WindowInsets) lastInsets;
if (AndroidUtilities.incorrectDisplaySizeFix) {
if (heightSize > AndroidUtilities.displaySize.y) {
heightSize = AndroidUtilities.displaySize.y;
}
heightSize += AndroidUtilities.statusBarHeight;
}
heightSize -= insets.getSystemWindowInsetBottom();
2019-01-23 18:03:33 +01:00
//widthSize -= insets.getSystemWindowInsetRight();
2016-10-11 13:57:01 +02:00
} else {
if (heightSize > AndroidUtilities.displaySize.y) {
heightSize = AndroidUtilities.displaySize.y;
}
}
setMeasuredDimension(widthSize, heightSize);
2019-01-23 18:03:33 +01:00
/*if (Build.VERSION.SDK_INT >= 21 && lastInsets != null) {
2017-03-31 01:58:05 +02:00
widthSize -= ((WindowInsets) lastInsets).getSystemWindowInsetLeft();
2019-01-23 18:03:33 +01:00
}*/
2016-10-11 13:57:01 +02:00
ViewGroup.LayoutParams layoutParams = animatingImageView.getLayoutParams();
animatingImageView.measure(MeasureSpec.makeMeasureSpec(layoutParams.width, MeasureSpec.AT_MOST), MeasureSpec.makeMeasureSpec(layoutParams.height, MeasureSpec.AT_MOST));
containerView.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(heightSize, MeasureSpec.EXACTLY));
}
@SuppressWarnings("DrawAllocation")
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
2017-03-31 01:58:05 +02:00
int x = 0;
if (Build.VERSION.SDK_INT >= 21 && lastInsets != null) {
2019-01-23 18:03:33 +01:00
//x += ((WindowInsets) lastInsets).getSystemWindowInsetLeft();
//WindowInsets insets=(WindowInsets)lastInsets;
//containerView.setPadding(insets.getSystemWindowInsetLeft(), 0, insets.getSystemWindowInsetTop(), insets.getSystemWindowInsetBottom());
2017-03-31 01:58:05 +02:00
}
2019-01-23 18:03:33 +01:00
//animatingImageView.layout(x+containerView.getPaddingLeft(), 0, x + animatingImageView.getMeasuredWidth()+containerView.getPaddingLeft(), animatingImageView.getMeasuredHeight());
2017-03-31 01:58:05 +02:00
animatingImageView.layout(x, 0, x + animatingImageView.getMeasuredWidth(), animatingImageView.getMeasuredHeight());
containerView.layout(x, 0, x + containerView.getMeasuredWidth(), containerView.getMeasuredHeight());
2016-10-11 13:57:01 +02:00
wasLayout = true;
if (changed) {
if (!dontResetZoomOnFirstLayout) {
scale = 1;
translationX = 0;
translationY = 0;
updateMinMax(scale);
}
if (checkImageView != null) {
2019-01-23 18:03:33 +01:00
checkImageView.post(() -> {
LayoutParams layoutParams = (LayoutParams) checkImageView.getLayoutParams();
WindowManager manager = (WindowManager) ApplicationLoader.applicationContext.getSystemService(Activity.WINDOW_SERVICE);
int rotation = manager.getDefaultDisplay().getRotation();
layoutParams.topMargin = (ActionBar.getCurrentActionBarHeight() - AndroidUtilities.dp(40)) / 2 + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0);
checkImageView.setLayoutParams(layoutParams);
layoutParams = (LayoutParams) photosCounterView.getLayoutParams();
layoutParams.topMargin = (ActionBar.getCurrentActionBarHeight() - AndroidUtilities.dp(40)) / 2 + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0);
photosCounterView.setLayoutParams(layoutParams);
2016-10-11 13:57:01 +02:00
});
}
}
if (dontResetZoomOnFirstLayout) {
setScaleToFill();
dontResetZoomOnFirstLayout = false;
}
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
attachedToWindow = true;
}
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
attachedToWindow = false;
wasLayout = false;
}
2015-10-29 18:10:07 +01:00
@Override
public boolean dispatchKeyEventPreIme(KeyEvent event) {
if (event != null && event.getKeyCode() == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) {
2015-06-29 19:12:11 +02:00
if (captionEditText.isPopupShowing() || captionEditText.isKeyboardVisible()) {
closeCaptionEnter(false);
return false;
}
PhotoViewer.getInstance().closePhoto(true, false);
return true;
}
return super.dispatchKeyEventPreIme(event);
}
2016-04-22 15:49:00 +02:00
@Override
public ActionMode startActionModeForChild(View originalView, ActionMode.Callback callback, int type) {
if (Build.VERSION.SDK_INT >= 23) {
View view = parentActivity.findViewById(android.R.id.content);
if (view instanceof ViewGroup) {
try {
return ((ViewGroup) view).startActionModeForChild(originalView, callback, type);
} catch (Throwable e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
2016-04-22 15:49:00 +02:00
}
}
}
return super.startActionModeForChild(originalView, callback, type);
}
};
windowView.setBackgroundDrawable(backgroundDrawable);
2016-10-11 13:57:01 +02:00
windowView.setClipChildren(true);
windowView.setFocusable(false);
animatingImageView = new ClippingImageView(activity);
animatingImageView.setAnimationValues(animationValues);
windowView.addView(animatingImageView, LayoutHelper.createFrame(40, 40));
containerView = new FrameLayoutDrawer(activity);
containerView.setFocusable(false);
windowView.addView(containerView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT));
2016-10-11 13:57:01 +02:00
if (Build.VERSION.SDK_INT >= 21) {
2017-03-31 01:58:05 +02:00
containerView.setFitsSystemWindows(true);
2019-01-23 18:03:33 +01:00
containerView.setOnApplyWindowInsetsListener((v, insets) -> {
WindowInsets oldInsets = (WindowInsets) lastInsets;
lastInsets = insets;
if (oldInsets == null || !oldInsets.toString().equals(insets.toString())) {
if (animationInProgress == 1) {
animatingImageView.setTranslationX(animatingImageView.getTranslationX() - getLeftInset());
animationValues[0][2] = animatingImageView.getTranslationX();
}
windowView.requestLayout();
}
containerView.setPadding(insets.getSystemWindowInsetLeft(), 0, insets.getSystemWindowInsetRight(), 0);
return insets.consumeSystemWindowInsets();
2016-10-11 13:57:01 +02:00
});
2019-01-23 18:03:33 +01:00
//windowView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN /*| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION*/);
containerView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
2016-10-11 13:57:01 +02:00
}
windowLayoutParams = new WindowManager.LayoutParams();
windowLayoutParams.height = WindowManager.LayoutParams.MATCH_PARENT;
windowLayoutParams.format = PixelFormat.TRANSLUCENT;
windowLayoutParams.width = WindowManager.LayoutParams.MATCH_PARENT;
2016-10-11 13:57:01 +02:00
windowLayoutParams.gravity = Gravity.TOP | Gravity.LEFT;
2014-08-29 23:06:04 +02:00
windowLayoutParams.type = WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
2016-10-11 13:57:01 +02:00
if (Build.VERSION.SDK_INT >= 21) {
windowLayoutParams.flags = WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN |
WindowManager.LayoutParams.FLAG_LAYOUT_INSET_DECOR |
2019-01-23 18:03:33 +01:00
WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM |
//WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE |
2016-10-11 13:57:01 +02:00
WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS;
} else {
2019-01-23 18:03:33 +01:00
windowLayoutParams.flags = WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM;
2016-10-11 13:57:01 +02:00
}
2018-07-30 04:07:02 +02:00
actionBar = new ActionBar(activity) {
@Override
public void setAlpha(float alpha) {
super.setAlpha(alpha);
containerView.invalidate();
}
};
2017-03-31 01:58:05 +02:00
actionBar.setTitleColor(0xffffffff);
actionBar.setSubtitleColor(0xffffffff);
2016-04-22 15:49:00 +02:00
actionBar.setBackgroundColor(Theme.ACTION_BAR_PHOTO_VIEWER_COLOR);
2016-10-11 13:57:01 +02:00
actionBar.setOccupyStatusBar(Build.VERSION.SDK_INT >= 21);
2017-03-31 01:58:05 +02:00
actionBar.setItemsBackgroundColor(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR, false);
2014-11-11 23:16:17 +01:00
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, 1, 1));
2015-06-29 19:12:11 +02:00
containerView.addView(actionBar, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT));
2014-11-11 23:16:17 +01:00
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
@Override
public void onItemClick(int id) {
if (id == -1) {
2015-06-29 19:12:11 +02:00
if (needCaptionLayout && (captionEditText.isPopupShowing() || captionEditText.isKeyboardVisible())) {
closeCaptionEnter(false);
return;
}
closePhoto(true, false);
} else if (id == gallery_menu_save) {
2015-10-29 18:10:07 +01:00
if (Build.VERSION.SDK_INT >= 23 && parentActivity.checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
parentActivity.requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, 4);
return;
}
File f = null;
if (currentMessageObject != null) {
2018-07-30 04:07:02 +02:00
if (currentMessageObject.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage && currentMessageObject.messageOwner.media.webpage != null && currentMessageObject.messageOwner.media.webpage.document == null) {
TLObject fileLocation = getFileLocation(currentIndex, null);
f = FileLoader.getPathToAttach(fileLocation, true);
} else {
f = FileLoader.getPathToMessage(currentMessageObject.messageOwner);
}
} else if (currentFileLocation != null) {
2017-07-08 18:32:04 +02:00
f = FileLoader.getPathToAttach(currentFileLocation, avatarsDialogId != 0 || isEvent);
}
if (f != null && f.exists()) {
2016-04-22 15:49:00 +02:00
MediaController.saveFile(f.toString(), parentActivity, currentMessageObject != null && currentMessageObject.isVideo() ? 1 : 0, null, null);
2014-11-17 23:04:31 +01:00
} else {
2018-07-30 04:07:02 +02:00
showDownloadAlert();
}
} else if (id == gallery_menu_showall) {
2017-12-08 18:35:59 +01:00
if (currentDialogId != 0) {
2015-02-01 19:51:02 +01:00
disableShowCheck = true;
Bundle args2 = new Bundle();
args2.putLong("dialog_id", currentDialogId);
2019-01-23 18:03:33 +01:00
MediaActivity mediaActivity = new MediaActivity(args2, new int[]{-1, -1, -1, -1, -1}, null, sharedMediaType);
2016-10-11 13:57:01 +02:00
if (parentChatActivity != null) {
mediaActivity.setChatInfo(parentChatActivity.getCurrentChatInfo());
}
closePhoto(false, false);
((LaunchActivity) parentActivity).presentFragment(mediaActivity, false, true);
}
2017-12-08 18:35:59 +01:00
} else if (id == gallery_menu_showinchat) {
if (currentMessageObject == null) {
return;
}
Bundle args = new Bundle();
int lower_part = (int) currentDialogId;
int high_id = (int) (currentDialogId >> 32);
if (lower_part != 0) {
if (high_id == 1) {
args.putInt("chat_id", lower_part);
} else {
if (lower_part > 0) {
args.putInt("user_id", lower_part);
} else if (lower_part < 0) {
2018-07-30 04:07:02 +02:00
TLRPC.Chat chat = MessagesController.getInstance(currentAccount).getChat(-lower_part);
2017-12-08 18:35:59 +01:00
if (chat != null && chat.migrated_to != null) {
args.putInt("migrated_to", lower_part);
lower_part = -chat.migrated_to.channel_id;
}
args.putInt("chat_id", -lower_part);
}
2017-12-08 18:35:59 +01:00
}
} else {
args.putInt("enc_id", high_id);
}
args.putInt("message_id", currentMessageObject.getId());
2018-07-30 04:07:02 +02:00
NotificationCenter.getInstance(currentAccount).postNotificationName(NotificationCenter.closeChats);
LaunchActivity launchActivity = (LaunchActivity) parentActivity;
boolean remove = launchActivity.getMainFragmentsCount() > 1 || AndroidUtilities.isTablet();
launchActivity.presentFragment(new ChatActivity(args), remove, true);
2017-12-08 18:35:59 +01:00
currentMessageObject = null;
closePhoto(false, false);
} else if (id == gallery_menu_send) {
if (currentMessageObject == null || parentActivity == null) {
return;
}
2018-07-30 04:07:02 +02:00
((LaunchActivity) parentActivity).switchToAccount(currentMessageObject.currentAccount, true);
2017-12-08 18:35:59 +01:00
Bundle args = new Bundle();
args.putBoolean("onlySelect", true);
args.putInt("dialogsType", 3);
DialogsActivity fragment = new DialogsActivity(args);
final ArrayList<MessageObject> fmessages = new ArrayList<>();
fmessages.add(currentMessageObject);
2019-01-23 18:03:33 +01:00
fragment.setDelegate((fragment1, dids, message, param) -> {
if (dids.size() > 1 || dids.get(0) == UserConfig.getInstance(currentAccount).getClientUserId() || message != null) {
for (int a = 0; a < dids.size(); a++) {
long did = dids.get(a);
if (message != null) {
SendMessagesHelper.getInstance(currentAccount).sendMessage(message.toString(), did, null, null, true, null, null, null);
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
SendMessagesHelper.getInstance(currentAccount).sendMessage(fmessages, did);
}
fragment1.finishFragment();
} else {
long did = dids.get(0);
int lower_part = (int) did;
int high_part = (int) (did >> 32);
Bundle args1 = new Bundle();
args1.putBoolean("scrollToTopOnResume", true);
if (lower_part != 0) {
if (lower_part > 0) {
args1.putInt("user_id", lower_part);
} else if (lower_part < 0) {
args1.putInt("chat_id", -lower_part);
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
} else {
args1.putInt("enc_id", high_part);
}
NotificationCenter.getInstance(currentAccount).postNotificationName(NotificationCenter.closeChats);
ChatActivity chatActivity = new ChatActivity(args1);
if (((LaunchActivity) parentActivity).presentFragment(chatActivity, true, false)) {
chatActivity.showFieldPanelForForward(true, fmessages);
} else {
fragment1.finishFragment();
}
}
2017-12-08 18:35:59 +01:00
});
((LaunchActivity) parentActivity).presentFragment(fragment, false, true);
closePhoto(false, false);
} else if (id == gallery_menu_delete) {
2018-07-30 04:07:02 +02:00
if (parentActivity == null || placeProvider == null) {
return;
2015-02-01 19:51:02 +01:00
}
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
2018-07-30 04:07:02 +02:00
String text = placeProvider.getDeleteMessageString();
if (text != null) {
builder.setMessage(text);
} else if (currentMessageObject != null && currentMessageObject.isVideo()) {
builder.setMessage(LocaleController.formatString("AreYouSureDeleteVideo", R.string.AreYouSureDeleteVideo));
2016-10-11 13:57:01 +02:00
} else if (currentMessageObject != null && currentMessageObject.isGif()) {
2019-01-23 18:03:33 +01:00
builder.setMessage(LocaleController.formatString("AreYouSureDeleteGIF", R.string.AreYouSureDeleteGIF));
} else {
builder.setMessage(LocaleController.formatString("AreYouSureDeletePhoto", R.string.AreYouSureDeletePhoto));
}
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
2017-03-31 01:58:05 +02:00
final boolean deleteForAll[] = new boolean[1];
if (currentMessageObject != null) {
int lower_id = (int) currentMessageObject.getDialogId();
if (lower_id != 0) {
TLRPC.Chat currentChat;
TLRPC.User currentUser;
if (lower_id > 0) {
2018-07-30 04:07:02 +02:00
currentUser = MessagesController.getInstance(currentAccount).getUser(lower_id);
2017-03-31 01:58:05 +02:00
currentChat = null;
} else {
currentUser = null;
2018-07-30 04:07:02 +02:00
currentChat = MessagesController.getInstance(currentAccount).getChat(-lower_id);
2017-03-31 01:58:05 +02:00
}
if (currentUser != null || !ChatObject.isChannel(currentChat)) {
boolean hasOutgoing = false;
2018-07-30 04:07:02 +02:00
int currentDate = ConnectionsManager.getInstance(currentAccount).getCurrentTime();
if (currentUser != null && currentUser.id != UserConfig.getInstance(currentAccount).getClientUserId() || currentChat != null) {
2017-03-31 01:58:05 +02:00
if ((currentMessageObject.messageOwner.action == null || currentMessageObject.messageOwner.action instanceof TLRPC.TL_messageActionEmpty) && currentMessageObject.isOut() && (currentDate - currentMessageObject.messageOwner.date) <= 2 * 24 * 60 * 60) {
FrameLayout frameLayout = new FrameLayout(parentActivity);
2018-07-30 04:07:02 +02:00
CheckBoxCell cell = new CheckBoxCell(parentActivity, 1);
2017-03-31 01:58:05 +02:00
cell.setBackgroundDrawable(Theme.getSelectorDrawable(false));
if (currentChat != null) {
cell.setText(LocaleController.getString("DeleteForAll", R.string.DeleteForAll), "", false, false);
} else {
cell.setText(LocaleController.formatString("DeleteForUser", R.string.DeleteForUser, UserObject.getFirstName(currentUser)), "", false, false);
}
cell.setPadding(LocaleController.isRTL ? AndroidUtilities.dp(16) : AndroidUtilities.dp(8), 0, LocaleController.isRTL ? AndroidUtilities.dp(8) : AndroidUtilities.dp(16), 0);
frameLayout.addView(cell, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 48, Gravity.TOP | Gravity.LEFT, 0, 0, 0, 0));
2019-01-23 18:03:33 +01:00
cell.setOnClickListener(v -> {
CheckBoxCell cell1 = (CheckBoxCell) v;
deleteForAll[0] = !deleteForAll[0];
cell1.setChecked(deleteForAll[0], true);
2017-03-31 01:58:05 +02:00
});
builder.setView(frameLayout);
}
}
}
}
}
2019-01-23 18:03:33 +01:00
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), (dialogInterface, i) -> {
if (!imagesArr.isEmpty()) {
if (currentIndex < 0 || currentIndex >= imagesArr.size()) {
return;
}
MessageObject obj = imagesArr.get(currentIndex);
if (obj.isSent()) {
closePhoto(false, false);
ArrayList<Integer> arr = new ArrayList<>();
if (slideshowMessageId != 0) {
arr.add(slideshowMessageId);
} else {
arr.add(obj.getId());
}
2019-01-23 18:03:33 +01:00
ArrayList<Long> random_ids = null;
TLRPC.EncryptedChat encryptedChat = null;
if ((int) obj.getDialogId() == 0 && obj.messageOwner.random_id != 0) {
random_ids = new ArrayList<>();
random_ids.add(obj.messageOwner.random_id);
encryptedChat = MessagesController.getInstance(currentAccount).getEncryptedChat((int) (obj.getDialogId() >> 32));
}
2019-01-23 18:03:33 +01:00
MessagesController.getInstance(currentAccount).deleteMessages(arr, random_ids, encryptedChat, obj.messageOwner.to_id.channel_id, deleteForAll[0]);
}
} else if (!avatarsArr.isEmpty()) {
if (currentIndex < 0 || currentIndex >= avatarsArr.size()) {
return;
}
TLRPC.Photo photo = avatarsArr.get(currentIndex);
TLRPC.FileLocation currentLocation = imagesArrLocations.get(currentIndex);
if (photo instanceof TLRPC.TL_photoEmpty) {
photo = null;
}
boolean current = false;
if (currentUserAvatarLocation != null) {
if (photo != null) {
for (TLRPC.PhotoSize size : photo.sizes) {
if (size.location.local_id == currentUserAvatarLocation.local_id && size.location.volume_id == currentUserAvatarLocation.volume_id) {
current = true;
break;
}
}
2019-01-23 18:03:33 +01:00
} else if (currentLocation.local_id == currentUserAvatarLocation.local_id && currentLocation.volume_id == currentUserAvatarLocation.volume_id) {
current = true;
}
2019-01-23 18:03:33 +01:00
}
if (current) {
MessagesController.getInstance(currentAccount).deleteUserPhoto(null);
closePhoto(false, false);
} else if (photo != null) {
TLRPC.TL_inputPhoto inputPhoto = new TLRPC.TL_inputPhoto();
inputPhoto.id = photo.id;
inputPhoto.access_hash = photo.access_hash;
inputPhoto.file_reference = photo.file_reference;
if (inputPhoto.file_reference == null) {
inputPhoto.file_reference = new byte[0];
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
MessagesController.getInstance(currentAccount).deleteUserPhoto(inputPhoto);
MessagesStorage.getInstance(currentAccount).clearUserPhoto(avatarsDialogId, photo.id);
imagesArrLocations.remove(currentIndex);
imagesArrLocationsSizes.remove(currentIndex);
avatarsArr.remove(currentIndex);
if (imagesArrLocations.isEmpty()) {
2018-07-30 04:07:02 +02:00
closePhoto(false, false);
} else {
int index = currentIndex;
2019-01-23 18:03:33 +01:00
if (index >= avatarsArr.size()) {
index = avatarsArr.size() - 1;
2018-07-30 04:07:02 +02:00
}
currentIndex = -1;
setImageIndex(index, true);
}
}
2019-01-23 18:03:33 +01:00
} else if (!secureDocuments.isEmpty()) {
if (placeProvider == null) {
return;
}
secureDocuments.remove(currentIndex);
placeProvider.deleteImageAtIndex(currentIndex);
if (secureDocuments.isEmpty()) {
closePhoto(false, false);
} else {
int index = currentIndex;
if (index >= secureDocuments.size()) {
index = secureDocuments.size() - 1;
}
currentIndex = -1;
setImageIndex(index, true);
}
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showAlertDialog(builder);
} else if (id == gallery_menu_share) {
onSharePressed();
} else if (id == gallery_menu_openin) {
try {
AndroidUtilities.openForView(currentMessageObject, parentActivity);
closePhoto(false, false);
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
2016-10-11 13:57:01 +02:00
}
} else if (id == gallery_menu_masks) {
if (parentActivity == null || currentMessageObject == null || currentMessageObject.messageOwner.media == null || currentMessageObject.messageOwner.media.photo == null) {
return;
}
2019-01-23 18:03:33 +01:00
StickersAlert stickersAlert = new StickersAlert(parentActivity, currentMessageObject, currentMessageObject.messageOwner.media.photo);
2016-10-11 13:57:01 +02:00
stickersAlert.show();
2018-07-30 04:07:02 +02:00
} else if (id == gallery_menu_pip) {
if (pipItem.getAlpha() != 1.0f) {
return;
}
switchToPip();
} else if (id == gallery_menu_cancel_loading) {
if (currentMessageObject == null) {
return;
}
FileLoader.getInstance(currentAccount).cancelLoadFile(currentMessageObject.getDocument());
releasePlayer();
bottomLayout.setTag(1);
bottomLayout.setVisibility(View.VISIBLE);
}
}
@Override
public boolean canOpenMenu() {
if (currentMessageObject != null) {
File f = FileLoader.getPathToMessage(currentMessageObject.messageOwner);
2018-07-30 04:07:02 +02:00
return f.exists();
} else if (currentFileLocation != null) {
2017-07-08 18:32:04 +02:00
File f = FileLoader.getPathToAttach(currentFileLocation, avatarsDialogId != 0 || isEvent);
2018-07-30 04:07:02 +02:00
return f.exists();
}
return false;
}
});
2014-11-11 23:16:17 +01:00
ActionBarMenu menu = actionBar.createMenu();
2016-10-11 13:57:01 +02:00
masksItem = menu.addItem(gallery_menu_masks, R.drawable.ic_masks_msk1);
2018-07-30 04:07:02 +02:00
pipItem = menu.addItem(gallery_menu_pip, R.drawable.ic_goinline);
2017-12-08 18:35:59 +01:00
sendItem = menu.addItem(gallery_menu_send, R.drawable.msg_panel_reply);
menuItem = menu.addItem(0, R.drawable.ic_ab_other);
2017-12-08 18:35:59 +01:00
menuItem.addSubItem(gallery_menu_openin, LocaleController.getString("OpenInExternalApp", R.string.OpenInExternalApp)).setTextColor(0xfffafafa);
2019-01-23 18:03:33 +01:00
allMediaItem = menuItem.addSubItem(gallery_menu_showall, LocaleController.getString("ShowAllMedia", R.string.ShowAllMedia));
allMediaItem.setTextColor(0xfffafafa);
2017-12-08 18:35:59 +01:00
menuItem.addSubItem(gallery_menu_showinchat, LocaleController.getString("ShowInChat", R.string.ShowInChat)).setTextColor(0xfffafafa);
menuItem.addSubItem(gallery_menu_share, LocaleController.getString("ShareFile", R.string.ShareFile)).setTextColor(0xfffafafa);
menuItem.addSubItem(gallery_menu_save, LocaleController.getString("SaveToGallery", R.string.SaveToGallery)).setTextColor(0xfffafafa);
menuItem.addSubItem(gallery_menu_delete, LocaleController.getString("Delete", R.string.Delete)).setTextColor(0xfffafafa);
2018-07-30 04:07:02 +02:00
menuItem.addSubItem(gallery_menu_cancel_loading, LocaleController.getString("StopDownload", R.string.StopDownload)).setTextColor(0xfffafafa);
2017-12-08 18:35:59 +01:00
menuItem.redrawPopup(0xf9222222);
2016-04-22 15:49:00 +02:00
bottomLayout = new FrameLayout(actvityContext);
bottomLayout.setBackgroundColor(0x7f000000);
2015-06-29 19:12:11 +02:00
containerView.addView(bottomLayout, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 48, Gravity.BOTTOM | Gravity.LEFT));
2017-12-08 18:35:59 +01:00
groupedPhotosListView = new GroupedPhotosListView(actvityContext);
containerView.addView(groupedPhotosListView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 62, Gravity.BOTTOM | Gravity.LEFT, 0, 0, 0, 48));
2019-01-23 18:03:33 +01:00
groupedPhotosListView.setDelegate(new GroupedPhotosListView.GroupedPhotosListViewDelegate() {
@Override
public int getCurrentIndex() {
return currentIndex;
}
@Override
public int getCurrentAccount() {
return currentAccount;
}
@Override
public int getAvatarsDialogId() {
return avatarsDialogId;
}
@Override
public int getSlideshowMessageId() {
return slideshowMessageId;
}
@Override
public ArrayList<TLRPC.FileLocation> getImagesArrLocations() {
return imagesArrLocations;
}
@Override
public ArrayList<MessageObject> getImagesArr() {
return imagesArr;
}
@Override
public ArrayList<TLRPC.PageBlock> getPageBlockArr() {
return null;
}
@Override
public Object getParentObject() {
return null;
}
@Override
public void setCurrentIndex(int index) {
currentIndex = -1;
if (currentThumb != null) {
currentThumb.release();
currentThumb = null;
}
setImageIndex(index, true);
}
});
2017-12-08 18:35:59 +01:00
2018-07-30 04:07:02 +02:00
captionTextView = createCaptionTextView();
switchCaptionTextView = createCaptionTextView();
for (int a = 0; a < 3; a++) {
photoProgressViews[a] = new PhotoProgressView(containerView.getContext(), containerView);
photoProgressViews[a].setBackgroundState(0, false);
}
miniProgressView = new RadialProgressView(actvityContext) {
2017-03-31 01:58:05 +02:00
@Override
2018-07-30 04:07:02 +02:00
public void setAlpha(float alpha) {
super.setAlpha(alpha);
if (containerView != null) {
containerView.invalidate();
}
2017-03-31 01:58:05 +02:00
}
2018-07-30 04:07:02 +02:00
2016-10-11 13:57:01 +02:00
@Override
2018-07-30 04:07:02 +02:00
public void invalidate() {
super.invalidate();
if (containerView != null) {
containerView.invalidate();
}
2016-10-11 13:57:01 +02:00
}
2018-07-30 04:07:02 +02:00
};
miniProgressView.setUseSelfAlpha(true);
miniProgressView.setProgressColor(0xffffffff);
miniProgressView.setSize(AndroidUtilities.dp(54));
miniProgressView.setBackgroundResource(R.drawable.circle_big);
miniProgressView.setVisibility(View.INVISIBLE);
miniProgressView.setAlpha(0.0f);
containerView.addView(miniProgressView, LayoutHelper.createFrame(64, 64, Gravity.CENTER));
2014-10-28 18:07:44 +01:00
2014-10-22 12:11:47 +02:00
shareButton = new ImageView(containerView.getContext());
shareButton.setImageResource(R.drawable.share);
shareButton.setScaleType(ImageView.ScaleType.CENTER);
2017-03-31 01:58:05 +02:00
shareButton.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
bottomLayout.addView(shareButton, LayoutHelper.createFrame(50, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.RIGHT));
2019-01-23 18:03:33 +01:00
shareButton.setOnClickListener(v -> onSharePressed());
nameTextView = new TextView(containerView.getContext());
nameTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
nameTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
nameTextView.setSingleLine(true);
nameTextView.setMaxLines(1);
nameTextView.setEllipsize(TextUtils.TruncateAt.END);
nameTextView.setTextColor(0xffffffff);
nameTextView.setGravity(Gravity.LEFT);
bottomLayout.addView(nameTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.LEFT, 16, 5, 60, 0));
dateTextView = new TextView(containerView.getContext());
dateTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 13);
dateTextView.setSingleLine(true);
dateTextView.setMaxLines(1);
dateTextView.setEllipsize(TextUtils.TruncateAt.END);
dateTextView.setTextColor(0xffffffff);
dateTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
dateTextView.setGravity(Gravity.LEFT);
bottomLayout.addView(dateTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.TOP | Gravity.LEFT, 16, 25, 50, 0));
2018-07-30 04:07:02 +02:00
createVideoControlsInterface();
progressView = new RadialProgressView(parentActivity);
progressView.setProgressColor(0xffffffff);
progressView.setBackgroundResource(R.drawable.circle_big);
progressView.setVisibility(View.INVISIBLE);
containerView.addView(progressView, LayoutHelper.createFrame(54, 54, Gravity.CENTER));
qualityPicker = new PickerBottomLayoutViewer(parentActivity);
qualityPicker.setBackgroundColor(0x7f000000);
qualityPicker.updateSelectedCount(0, false);
qualityPicker.setTranslationY(AndroidUtilities.dp(120));
qualityPicker.doneButton.setText(LocaleController.getString("Done", R.string.Done).toUpperCase());
containerView.addView(qualityPicker, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 48, Gravity.BOTTOM | Gravity.LEFT));
2019-01-23 18:03:33 +01:00
qualityPicker.cancelButton.setOnClickListener(view -> {
selectedCompression = previousCompression;
didChangedCompressionLevel(false);
showQualityView(false);
requestVideoPreview(2);
});
qualityPicker.doneButton.setOnClickListener(view -> {
showQualityView(false);
requestVideoPreview(2);
});
videoForwardDrawable = new VideoForwardDrawable();
videoForwardDrawable.setDelegate(new VideoForwardDrawable.VideoForwardDrawableDelegate() {
@Override
2019-01-23 18:03:33 +01:00
public void onAnimationEnd() {
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
2018-07-30 04:07:02 +02:00
@Override
2019-01-23 18:03:33 +01:00
public void invalidate() {
containerView.invalidate();
}
});
2018-07-30 04:07:02 +02:00
qualityChooseView = new QualityChooseView(parentActivity);
qualityChooseView.setTranslationY(AndroidUtilities.dp(120));
qualityChooseView.setVisibility(View.INVISIBLE);
qualityChooseView.setBackgroundColor(0x7f000000);
containerView.addView(qualityChooseView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 70, Gravity.LEFT | Gravity.BOTTOM, 0, 0, 0, 48));
2018-07-30 04:07:02 +02:00
pickerView = new FrameLayout(actvityContext) {
@Override
2018-07-30 04:07:02 +02:00
public boolean dispatchTouchEvent(MotionEvent ev) {
return bottomTouchEnabled && super.dispatchTouchEvent(ev);
}
@Override
2018-07-30 04:07:02 +02:00
public boolean onInterceptTouchEvent(MotionEvent ev) {
return bottomTouchEnabled && super.onInterceptTouchEvent(ev);
2017-03-31 01:58:05 +02:00
}
@Override
public boolean onTouchEvent(MotionEvent event) {
return bottomTouchEnabled && super.onTouchEvent(event);
}
};
2015-02-01 19:51:02 +01:00
pickerView.setBackgroundColor(0x7f000000);
containerView.addView(pickerView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM | Gravity.LEFT));
videoTimelineView = new VideoTimelinePlayView(parentActivity);
videoTimelineView.setDelegate(new VideoTimelinePlayView.VideoTimelineViewDelegate() {
2014-06-12 03:13:15 +02:00
@Override
public void onLeftProgressChanged(float progress) {
if (videoPlayer == null) {
return;
}
if (videoPlayer.isPlaying()) {
videoPlayer.pause();
containerView.invalidate();
}
videoPlayer.seekTo((int) (videoDuration * progress));
videoPlayerSeekbar.setProgress(0);
videoTimelineView.setProgress(0);
updateVideoInfo();
}
@Override
public void onRightProgressChanged(float progress) {
if (videoPlayer == null) {
return;
2014-06-12 03:13:15 +02:00
}
if (videoPlayer.isPlaying()) {
videoPlayer.pause();
containerView.invalidate();
}
videoPlayer.seekTo((int) (videoDuration * progress));
videoPlayerSeekbar.setProgress(0);
videoTimelineView.setProgress(0);
updateVideoInfo();
}
@Override
public void onPlayProgressChanged(float progress) {
2017-12-08 18:35:59 +01:00
if (videoPlayer == null) {
return;
}
videoPlayer.seekTo((int) (videoDuration * progress));
}
@Override
public void didStartDragging() {
}
@Override
public void didStopDragging() {
2014-06-12 03:13:15 +02:00
}
});
pickerView.addView(videoTimelineView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 58, Gravity.LEFT | Gravity.TOP, 0, 8, 0, 88));
pickerViewSendButton = new ImageView(parentActivity);
pickerViewSendButton.setScaleType(ImageView.ScaleType.CENTER);
2017-12-08 18:35:59 +01:00
Drawable drawable = Theme.createSimpleSelectorCircleDrawable(AndroidUtilities.dp(56), 0xff66bffa, 0xff66bffa);
pickerViewSendButton.setBackgroundDrawable(drawable);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setColorFilter(new PorterDuffColorFilter(0xffffffff, PorterDuff.Mode.MULTIPLY));
pickerViewSendButton.setPadding(AndroidUtilities.dp(4), 0, 0, 0);
pickerViewSendButton.setImageResource(R.drawable.ic_send);
2018-07-30 04:07:02 +02:00
containerView.addView(pickerViewSendButton, LayoutHelper.createFrame(56, 56, Gravity.RIGHT | Gravity.BOTTOM, 0, 0, 14, 14));
2019-01-23 18:03:33 +01:00
pickerViewSendButton.setOnClickListener(v -> {
if (captionEditText.getTag() != null) {
return;
}
if (sendPhotoType == SELECT_TYPE_AVATAR) {
applyCurrentEditMode();
}
if (placeProvider != null && !doneButtonPressed) {
VideoEditedInfo videoEditedInfo = getCurrentVideoEditedInfo();
placeProvider.sendButtonPressed(currentIndex, videoEditedInfo);
doneButtonPressed = true;
closePhoto(false, false);
2014-06-12 03:13:15 +02:00
}
});
2018-07-30 04:07:02 +02:00
LinearLayout itemsLayout = new LinearLayout(parentActivity);
2016-10-11 13:57:01 +02:00
itemsLayout.setOrientation(LinearLayout.HORIZONTAL);
pickerView.addView(itemsLayout, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, 48, Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM, 0, 0, 34, 0));
2016-10-11 13:57:01 +02:00
cropItem = new ImageView(parentActivity);
cropItem.setScaleType(ImageView.ScaleType.CENTER);
cropItem.setImageResource(R.drawable.photo_crop);
cropItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
itemsLayout.addView(cropItem, LayoutHelper.createLinear(70, 48));
2019-01-23 18:03:33 +01:00
cropItem.setOnClickListener(v -> {
if (captionEditText.getTag() != null) {
return;
2016-10-11 13:57:01 +02:00
}
2019-01-23 18:03:33 +01:00
switchToEditMode(1);
});
rotateItem = new ImageView(parentActivity);
rotateItem.setScaleType(ImageView.ScaleType.CENTER);
rotateItem.setImageResource(R.drawable.tool_rotate);
rotateItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
itemsLayout.addView(rotateItem, LayoutHelper.createLinear(70, 48));
rotateItem.setOnClickListener(v -> {
if (photoCropView == null) {
return;
}
photoCropView.rotate();
2016-10-11 13:57:01 +02:00
});
2016-10-11 13:57:01 +02:00
paintItem = new ImageView(parentActivity);
paintItem.setScaleType(ImageView.ScaleType.CENTER);
paintItem.setImageResource(R.drawable.photo_paint);
2017-03-31 01:58:05 +02:00
paintItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
itemsLayout.addView(paintItem, LayoutHelper.createLinear(70, 48));
2019-01-23 18:03:33 +01:00
paintItem.setOnClickListener(v -> {
if (captionEditText.getTag() != null) {
return;
2016-10-11 13:57:01 +02:00
}
2019-01-23 18:03:33 +01:00
switchToEditMode(3);
2016-10-11 13:57:01 +02:00
});
2017-03-31 01:58:05 +02:00
compressItem = new ImageView(parentActivity);
2017-12-08 18:35:59 +01:00
compressItem.setTag(1);
2017-03-31 01:58:05 +02:00
compressItem.setScaleType(ImageView.ScaleType.CENTER);
compressItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
2018-07-30 04:07:02 +02:00
SharedPreferences preferences = MessagesController.getGlobalMainSettings();
2017-12-08 18:35:59 +01:00
selectedCompression = preferences.getInt("compress_video2", 1);
if (selectedCompression <= 0) {
compressItem.setImageResource(R.drawable.video_240);
} else if (selectedCompression == 1) {
compressItem.setImageResource(R.drawable.video_360);
} else if (selectedCompression == 2) {
compressItem.setImageResource(R.drawable.video_480);
} else if (selectedCompression == 3) {
compressItem.setImageResource(R.drawable.video_720);
} else if (selectedCompression == 4) {
compressItem.setImageResource(R.drawable.video_1080);
}
itemsLayout.addView(compressItem, LayoutHelper.createLinear(70, 48));
2019-01-23 18:03:33 +01:00
compressItem.setOnClickListener(v -> {
if (captionEditText.getTag() != null) {
return;
2017-03-31 01:58:05 +02:00
}
2019-01-23 18:03:33 +01:00
showQualityView(true);
requestVideoPreview(1);
2017-03-31 01:58:05 +02:00
});
muteItem = new ImageView(parentActivity);
muteItem.setScaleType(ImageView.ScaleType.CENTER);
muteItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
itemsLayout.addView(muteItem, LayoutHelper.createLinear(70, 48));
2019-01-23 18:03:33 +01:00
muteItem.setOnClickListener(v -> {
if (captionEditText.getTag() != null) {
return;
}
muteVideo = !muteVideo;
if (muteVideo && !checkImageView.isChecked()) {
checkImageView.callOnClick();
} else {
Object object = imagesArrLocals.get(currentIndex);
if (object instanceof MediaController.PhotoEntry) {
((MediaController.PhotoEntry) object).editedInfo = getCurrentVideoEditedInfo();
2017-12-08 18:35:59 +01:00
}
2017-03-31 01:58:05 +02:00
}
2019-01-23 18:03:33 +01:00
updateMuteButton();
2017-03-31 01:58:05 +02:00
});
2018-07-30 04:07:02 +02:00
cameraItem = new ImageView(parentActivity);
cameraItem.setScaleType(ImageView.ScaleType.CENTER);
cameraItem.setImageResource(R.drawable.photo_add);
cameraItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
containerView.addView(cameraItem, LayoutHelper.createFrame(48, 48, Gravity.RIGHT | Gravity.BOTTOM, 0, 0, 16, 0));
2019-01-23 18:03:33 +01:00
cameraItem.setOnClickListener(v -> {
if (placeProvider == null || captionEditText.getTag() != null) {
return;
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
placeProvider.needAddMorePhotos();
closePhoto(true, false);
2018-07-30 04:07:02 +02:00
});
tuneItem = new ImageView(parentActivity);
tuneItem.setScaleType(ImageView.ScaleType.CENTER);
tuneItem.setImageResource(R.drawable.photo_tools);
tuneItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
itemsLayout.addView(tuneItem, LayoutHelper.createLinear(70, 48));
2019-01-23 18:03:33 +01:00
tuneItem.setOnClickListener(v -> {
if (captionEditText.getTag() != null) {
return;
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
switchToEditMode(2);
2018-07-30 04:07:02 +02:00
});
timeItem = new ImageView(parentActivity);
timeItem.setScaleType(ImageView.ScaleType.CENTER);
timeItem.setImageResource(R.drawable.photo_timer);
timeItem.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_WHITE_SELECTOR_COLOR));
itemsLayout.addView(timeItem, LayoutHelper.createLinear(70, 48));
2019-01-23 18:03:33 +01:00
timeItem.setOnClickListener(v -> {
if (parentActivity == null || captionEditText.getTag() != null) {
return;
}
BottomSheet.Builder builder = new BottomSheet.Builder(parentActivity);
builder.setUseHardwareLayer(false);
LinearLayout linearLayout = new LinearLayout(parentActivity);
linearLayout.setOrientation(LinearLayout.VERTICAL);
builder.setCustomView(linearLayout);
TextView titleView = new TextView(parentActivity);
titleView.setLines(1);
titleView.setSingleLine(true);
titleView.setText(LocaleController.getString("MessageLifetime", R.string.MessageLifetime));
titleView.setTextColor(0xffffffff);
titleView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16);
titleView.setEllipsize(TextUtils.TruncateAt.MIDDLE);
titleView.setPadding(AndroidUtilities.dp(21), AndroidUtilities.dp(8), AndroidUtilities.dp(21), AndroidUtilities.dp(4));
titleView.setGravity(Gravity.CENTER_VERTICAL);
linearLayout.addView(titleView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT));
titleView.setOnTouchListener((v13, event) -> true);
titleView = new TextView(parentActivity);
titleView.setText(isCurrentVideo ? LocaleController.getString("MessageLifetimeVideo", R.string.MessageLifetimeVideo) : LocaleController.getString("MessageLifetimePhoto", R.string.MessageLifetimePhoto));
titleView.setTextColor(0xff808080);
titleView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
titleView.setEllipsize(TextUtils.TruncateAt.MIDDLE);
titleView.setPadding(AndroidUtilities.dp(21), 0, AndroidUtilities.dp(21), AndroidUtilities.dp(8));
titleView.setGravity(Gravity.CENTER_VERTICAL);
linearLayout.addView(titleView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT));
titleView.setOnTouchListener((v12, event) -> true);
final BottomSheet bottomSheet = builder.create();
final NumberPicker numberPicker = new NumberPicker(parentActivity);
numberPicker.setMinValue(0);
numberPicker.setMaxValue(28);
Object object = imagesArrLocals.get(currentIndex);
int currentTTL;
if (object instanceof MediaController.PhotoEntry) {
currentTTL = ((MediaController.PhotoEntry) object).ttl;
} else if (object instanceof MediaController.SearchImage) {
currentTTL = ((MediaController.SearchImage) object).ttl;
} else {
currentTTL = 0;
}
if (currentTTL == 0) {
SharedPreferences preferences1 = MessagesController.getGlobalMainSettings();
numberPicker.setValue(preferences1.getInt("self_destruct", 7));
} else {
if (currentTTL >= 0 && currentTTL < 21) {
numberPicker.setValue(currentTTL);
} else {
2019-01-23 18:03:33 +01:00
numberPicker.setValue(21 + currentTTL / 5 - 5);
}
2019-01-23 18:03:33 +01:00
}
numberPicker.setTextColor(0xffffffff);
numberPicker.setSelectorColor(0xff4d4d4d);
numberPicker.setFormatter(value -> {
if (value == 0) {
return LocaleController.getString("ShortMessageLifetimeForever", R.string.ShortMessageLifetimeForever);
} else if (value >= 1 && value < 21) {
return LocaleController.formatTTLString(value);
} else {
2019-01-23 18:03:33 +01:00
return LocaleController.formatTTLString((value - 16) * 5);
}
});
linearLayout.addView(numberPicker, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT));
2019-01-23 18:03:33 +01:00
FrameLayout buttonsLayout = new FrameLayout(parentActivity) {
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
int count = getChildCount();
View positiveButton = null;
int width = right - left;
for (int a = 0; a < count; a++) {
View child = getChildAt(a);
if ((Integer) child.getTag() == Dialog.BUTTON_POSITIVE) {
positiveButton = child;
child.layout(width - getPaddingRight() - child.getMeasuredWidth(), getPaddingTop(), width - getPaddingRight() + child.getMeasuredWidth(), getPaddingTop() + child.getMeasuredHeight());
} else if ((Integer) child.getTag() == Dialog.BUTTON_NEGATIVE) {
int x = width - getPaddingRight() - child.getMeasuredWidth();
if (positiveButton != null) {
x -= positiveButton.getMeasuredWidth() + AndroidUtilities.dp(8);
}
2019-01-23 18:03:33 +01:00
child.layout(x, getPaddingTop(), x + child.getMeasuredWidth(), getPaddingTop() + child.getMeasuredHeight());
} else {
2019-01-23 18:03:33 +01:00
child.layout(getPaddingLeft(), getPaddingTop(), getPaddingLeft() + child.getMeasuredWidth(), getPaddingTop() + child.getMeasuredHeight());
}
}
2019-01-23 18:03:33 +01:00
}
};
buttonsLayout.setPadding(AndroidUtilities.dp(8), AndroidUtilities.dp(8), AndroidUtilities.dp(8), AndroidUtilities.dp(8));
linearLayout.addView(buttonsLayout, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, 52));
TextView textView = new TextView(parentActivity);
textView.setMinWidth(AndroidUtilities.dp(64));
textView.setTag(Dialog.BUTTON_POSITIVE);
textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
textView.setTextColor(0xff49bcf2);
textView.setGravity(Gravity.CENTER);
textView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
textView.setText(LocaleController.getString("Done", R.string.Done).toUpperCase());
textView.setBackgroundDrawable(Theme.getRoundRectSelectorDrawable());
textView.setPadding(AndroidUtilities.dp(10), 0, AndroidUtilities.dp(10), 0);
buttonsLayout.addView(textView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, 36, Gravity.TOP | Gravity.RIGHT));
textView.setOnClickListener(v1 -> {
int value = numberPicker.getValue();
SharedPreferences preferences1 = MessagesController.getGlobalMainSettings();
SharedPreferences.Editor editor = preferences1.edit();
editor.putInt("self_destruct", value);
editor.commit();
bottomSheet.dismiss();
int seconds;
if (value >= 0 && value < 21) {
seconds = value;
} else {
seconds = (value - 16) * 5;
}
Object object1 = imagesArrLocals.get(currentIndex);
if (object1 instanceof MediaController.PhotoEntry) {
((MediaController.PhotoEntry) object1).ttl = seconds;
} else if (object1 instanceof MediaController.SearchImage) {
((MediaController.SearchImage) object1).ttl = seconds;
}
timeItem.setColorFilter(seconds != 0 ? new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY) : null);
if (!checkImageView.isChecked()) {
checkImageView.callOnClick();
}
});
2019-01-23 18:03:33 +01:00
textView = new TextView(parentActivity);
textView.setMinWidth(AndroidUtilities.dp(64));
textView.setTag(Dialog.BUTTON_NEGATIVE);
textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
textView.setTextColor(0xff49bcf2);
textView.setGravity(Gravity.CENTER);
textView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
textView.setText(LocaleController.getString("Cancel", R.string.Cancel).toUpperCase());
textView.setBackgroundDrawable(Theme.getRoundRectSelectorDrawable());
textView.setPadding(AndroidUtilities.dp(10), 0, AndroidUtilities.dp(10), 0);
buttonsLayout.addView(textView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, 36, Gravity.TOP | Gravity.RIGHT));
textView.setOnClickListener(v14 -> bottomSheet.dismiss());
bottomSheet.show();
bottomSheet.setBackgroundColor(0xff000000);
});
2016-10-11 13:57:01 +02:00
editorDoneLayout = new PickerBottomLayoutViewer(actvityContext);
editorDoneLayout.setBackgroundColor(0x7f000000);
editorDoneLayout.updateSelectedCount(0, false);
editorDoneLayout.setVisibility(View.GONE);
2015-06-29 19:12:11 +02:00
containerView.addView(editorDoneLayout, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 48, Gravity.LEFT | Gravity.BOTTOM));
2019-01-23 18:03:33 +01:00
editorDoneLayout.cancelButton.setOnClickListener(view -> switchToEditMode(0));
editorDoneLayout.doneButton.setOnClickListener(view -> {
if (currentEditMode == 1 && !photoCropView.isReady()) {
return;
}
2019-01-23 18:03:33 +01:00
applyCurrentEditMode();
switchToEditMode(0);
});
2014-06-12 21:55:13 +02:00
2017-03-31 01:58:05 +02:00
resetButton = new TextView(actvityContext);
resetButton.setVisibility(View.GONE);
resetButton.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
resetButton.setTextColor(0xffffffff);
resetButton.setGravity(Gravity.CENTER);
resetButton.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.ACTION_BAR_PICKER_SELECTOR_COLOR, 0));
resetButton.setPadding(AndroidUtilities.dp(20), 0, AndroidUtilities.dp(20), 0);
resetButton.setText(LocaleController.getString("Reset", R.string.CropReset).toUpperCase());
resetButton.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
editorDoneLayout.addView(resetButton, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.CENTER));
2019-01-23 18:03:33 +01:00
resetButton.setOnClickListener(v -> photoCropView.reset());
2016-03-06 02:49:31 +01:00
gestureDetector = new GestureDetector(containerView.getContext(), this);
2019-01-23 18:03:33 +01:00
setDoubleTapEnabled(true);
2019-01-23 18:03:33 +01:00
ImageReceiver.ImageReceiverDelegate imageReceiverDelegate = (imageReceiver, set, thumb) -> {
if (imageReceiver == centerImage && set && !thumb && (currentEditMode == 1 || sendPhotoType == SELECT_TYPE_AVATAR) && photoCropView != null) {
Bitmap bitmap = imageReceiver.getBitmap();
if (bitmap != null) {
photoCropView.setBitmap(bitmap, imageReceiver.getOrientation(), sendPhotoType != SELECT_TYPE_AVATAR, true);
2017-03-31 01:58:05 +02:00
}
2019-01-23 18:03:33 +01:00
}
if (imageReceiver == centerImage && set && placeProvider != null && placeProvider.scaleToFill() && !ignoreDidSetImage) {
if (!wasLayout) {
dontResetZoomOnFirstLayout = true;
} else {
setScaleToFill();
2016-10-11 13:57:01 +02:00
}
}
};
centerImage.setParentView(containerView);
centerImage.setCrossfadeAlpha((byte) 2);
2015-05-21 23:27:27 +02:00
centerImage.setInvalidateAll(true);
2016-10-11 13:57:01 +02:00
centerImage.setDelegate(imageReceiverDelegate);
leftImage.setParentView(containerView);
leftImage.setCrossfadeAlpha((byte) 2);
2015-05-21 23:27:27 +02:00
leftImage.setInvalidateAll(true);
2016-10-11 13:57:01 +02:00
leftImage.setDelegate(imageReceiverDelegate);
rightImage.setParentView(containerView);
rightImage.setCrossfadeAlpha((byte) 2);
2015-05-21 23:27:27 +02:00
rightImage.setInvalidateAll(true);
2016-10-11 13:57:01 +02:00
rightImage.setDelegate(imageReceiverDelegate);
WindowManager manager = (WindowManager) ApplicationLoader.applicationContext.getSystemService(Activity.WINDOW_SERVICE);
int rotation = manager.getDefaultDisplay().getRotation();
2017-03-31 01:58:05 +02:00
checkImageView = new CheckBox(containerView.getContext(), R.drawable.selectphoto_large) {
@Override
public boolean onTouchEvent(MotionEvent event) {
return bottomTouchEnabled && super.onTouchEvent(event);
}
};
2015-01-02 23:15:07 +01:00
checkImageView.setDrawBackground(true);
checkImageView.setHasBorder(true);
checkImageView.setSize(40);
2015-01-02 23:15:07 +01:00
checkImageView.setCheckOffset(AndroidUtilities.dp(1));
2017-12-08 18:35:59 +01:00
checkImageView.setColor(0xff66bffa, 0xffffffff);
2014-06-12 03:13:15 +02:00
checkImageView.setVisibility(View.GONE);
containerView.addView(checkImageView, LayoutHelper.createFrame(40, 40, Gravity.RIGHT | Gravity.TOP, 0, rotation == Surface.ROTATION_270 || rotation == Surface.ROTATION_90 ? 58 : 68, 10, 0));
2016-10-11 13:57:01 +02:00
if (Build.VERSION.SDK_INT >= 21) {
((FrameLayout.LayoutParams) checkImageView.getLayoutParams()).topMargin += AndroidUtilities.statusBarHeight;
}
2019-01-23 18:03:33 +01:00
checkImageView.setOnClickListener(v -> {
if (captionEditText.getTag() != null) {
return;
2014-06-12 03:13:15 +02:00
}
2019-01-23 18:03:33 +01:00
setPhotoChecked();
2014-06-12 03:13:15 +02:00
});
photosCounterView = new CounterView(parentActivity);
containerView.addView(photosCounterView, LayoutHelper.createFrame(40, 40, Gravity.RIGHT | Gravity.TOP, 0, rotation == Surface.ROTATION_270 || rotation == Surface.ROTATION_90 ? 58 : 68, 66, 0));
if (Build.VERSION.SDK_INT >= 21) {
((FrameLayout.LayoutParams) photosCounterView.getLayoutParams()).topMargin += AndroidUtilities.statusBarHeight;
}
2019-01-23 18:03:33 +01:00
photosCounterView.setOnClickListener(v -> {
if (captionEditText.getTag() != null || placeProvider == null || placeProvider.getSelectedPhotosOrder() == null || placeProvider.getSelectedPhotosOrder().isEmpty()) {
return;
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
togglePhotosListView(!isPhotosListViewVisible, true);
2017-12-08 18:35:59 +01:00
});
2017-12-08 18:35:59 +01:00
selectedPhotosListView = new RecyclerListView(parentActivity);
selectedPhotosListView.setVisibility(View.GONE);
2019-01-23 18:03:33 +01:00
selectedPhotosListView.setAlpha(0.0f);
2017-12-08 18:35:59 +01:00
selectedPhotosListView.setTranslationY(-AndroidUtilities.dp(10));
selectedPhotosListView.addItemDecoration(new RecyclerView.ItemDecoration() {
@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
int position = parent.getChildAdapterPosition(view);
if (view instanceof PhotoPickerPhotoCell && position == 0) {
outRect.left = AndroidUtilities.dp(3);
} else {
outRect.left = 0;
}
outRect.right = AndroidUtilities.dp(3);
}
});
2018-07-30 04:07:02 +02:00
((DefaultItemAnimator) selectedPhotosListView.getItemAnimator()).setDelayAnimations(false);
2017-12-08 18:35:59 +01:00
selectedPhotosListView.setBackgroundColor(0x7f000000);
selectedPhotosListView.setPadding(0, AndroidUtilities.dp(3), 0, AndroidUtilities.dp(3));
2018-07-30 04:07:02 +02:00
selectedPhotosListView.setLayoutManager(new LinearLayoutManager(parentActivity, LinearLayoutManager.HORIZONTAL, false) {
@Override
public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, int position) {
LinearSmoothScrollerEnd linearSmoothScroller = new LinearSmoothScrollerEnd(recyclerView.getContext());
linearSmoothScroller.setTargetPosition(position);
startSmoothScroll(linearSmoothScroller);
}
});
2017-12-08 18:35:59 +01:00
selectedPhotosListView.setAdapter(selectedPhotosAdapter = new ListAdapter(parentActivity));
containerView.addView(selectedPhotosListView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 88, Gravity.LEFT | Gravity.TOP));
2019-01-23 18:03:33 +01:00
selectedPhotosListView.setOnItemClickListener((view, position) -> {
if (position == 0 && placeProvider.allowGroupPhotos()) {
boolean enabled = SharedConfig.groupPhotosEnabled;
SharedConfig.toggleGroupPhotosEnabled();
placeProvider.toggleGroupPhotosEnabled();
ImageView imageView = (ImageView) view;
imageView.setColorFilter(!enabled ? new PorterDuffColorFilter(0xff66bffa, PorterDuff.Mode.MULTIPLY) : null);
showHint(false, !enabled);
} else {
ignoreDidSetImage = true;
int idx = imagesArrLocals.indexOf(view.getTag());
if (idx >= 0) {
currentIndex = -1;
setImageIndex(idx, true);
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
ignoreDidSetImage = false;
}
});
2017-03-31 01:58:05 +02:00
captionEditText = new PhotoViewerCaptionEnterView(actvityContext, containerView, windowView) {
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
try {
return !bottomTouchEnabled && super.dispatchTouchEvent(ev);
} catch (Exception e) {
FileLog.e(e);
}
return false;
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
try {
return !bottomTouchEnabled && super.onInterceptTouchEvent(ev);
} catch (Exception e) {
FileLog.e(e);
}
return false;
}
@Override
public boolean onTouchEvent(MotionEvent event) {
return !bottomTouchEnabled && super.onTouchEvent(event);
}
};
captionEditText.setDelegate(new PhotoViewerCaptionEnterView.PhotoViewerCaptionEnterViewDelegate() {
@Override
public void onCaptionEnter() {
closeCaptionEnter(true);
}
@Override
2015-06-29 19:12:11 +02:00
public void onTextChanged(CharSequence text) {
if (mentionsAdapter != null && captionEditText != null && parentChatActivity != null && text != null) {
2017-12-08 18:35:59 +01:00
mentionsAdapter.searchUsernameOrHashtag(text.toString(), captionEditText.getCursorPosition(), parentChatActivity.messages, false);
}
}
@Override
public void onWindowSizeChanged(int size) {
int height = AndroidUtilities.dp(36 * Math.min(3, mentionsAdapter.getItemCount()) + (mentionsAdapter.getItemCount() > 3 ? 18 : 0));
2015-07-22 20:56:37 +02:00
if (size - ActionBar.getCurrentActionBarHeight() * 2 < height) {
allowMentions = false;
if (mentionListView != null && mentionListView.getVisibility() == View.VISIBLE) {
mentionListView.setVisibility(View.INVISIBLE);
}
} else {
allowMentions = true;
if (mentionListView != null && mentionListView.getVisibility() == View.INVISIBLE) {
mentionListView.setVisibility(View.VISIBLE);
}
}
}
});
2017-03-31 01:58:05 +02:00
containerView.addView(captionEditText, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM | Gravity.LEFT));
mentionListView = new RecyclerListView(actvityContext) {
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
return !bottomTouchEnabled && super.dispatchTouchEvent(ev);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
return !bottomTouchEnabled && super.onInterceptTouchEvent(ev);
}
2017-03-31 01:58:05 +02:00
@Override
public boolean onTouchEvent(MotionEvent event) {
return !bottomTouchEnabled && super.onTouchEvent(event);
}
};
mentionListView.setTag(5);
2016-04-22 15:49:00 +02:00
mentionLayoutManager = new LinearLayoutManager(actvityContext) {
@Override
public boolean supportsPredictiveItemAnimations() {
return false;
}
};
mentionLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
mentionListView.setLayoutManager(mentionLayoutManager);
mentionListView.setBackgroundColor(0x7f000000);
mentionListView.setVisibility(View.GONE);
mentionListView.setClipToPadding(true);
2017-03-31 01:58:05 +02:00
mentionListView.setOverScrollMode(RecyclerListView.OVER_SCROLL_NEVER);
2015-06-29 19:12:11 +02:00
containerView.addView(mentionListView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 110, Gravity.LEFT | Gravity.BOTTOM));
2016-04-22 15:49:00 +02:00
mentionListView.setAdapter(mentionsAdapter = new MentionsAdapter(actvityContext, true, 0, new MentionsAdapter.MentionsAdapterDelegate() {
@Override
public void needChangePanelVisibility(boolean show) {
if (show) {
2015-06-29 19:12:11 +02:00
FrameLayout.LayoutParams layoutParams3 = (FrameLayout.LayoutParams) mentionListView.getLayoutParams();
int height = 36 * Math.min(3, mentionsAdapter.getItemCount()) + (mentionsAdapter.getItemCount() > 3 ? 18 : 0);
layoutParams3.height = AndroidUtilities.dp(height);
layoutParams3.topMargin = -AndroidUtilities.dp(height);
mentionListView.setLayoutParams(layoutParams3);
if (mentionListAnimation != null) {
mentionListAnimation.cancel();
mentionListAnimation = null;
}
if (mentionListView.getVisibility() == View.VISIBLE) {
mentionListView.setAlpha(1.0f);
return;
} else {
mentionLayoutManager.scrollToPositionWithOffset(0, 10000);
}
if (allowMentions) {
mentionListView.setVisibility(View.VISIBLE);
mentionListAnimation = new AnimatorSet();
mentionListAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(mentionListView, View.ALPHA, 0.0f, 1.0f)
);
2017-03-31 01:58:05 +02:00
mentionListAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (mentionListAnimation != null && mentionListAnimation.equals(animation)) {
mentionListAnimation = null;
}
}
});
mentionListAnimation.setDuration(200);
mentionListAnimation.start();
} else {
mentionListView.setAlpha(1.0f);
mentionListView.setVisibility(View.INVISIBLE);
}
} else {
if (mentionListAnimation != null) {
mentionListAnimation.cancel();
mentionListAnimation = null;
}
if (mentionListView.getVisibility() == View.GONE) {
return;
}
if (allowMentions) {
mentionListAnimation = new AnimatorSet();
mentionListAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(mentionListView, View.ALPHA, 0.0f)
);
2017-03-31 01:58:05 +02:00
mentionListAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (mentionListAnimation != null && mentionListAnimation.equals(animation)) {
mentionListView.setVisibility(View.GONE);
mentionListAnimation = null;
}
}
});
mentionListAnimation.setDuration(200);
mentionListAnimation.start();
} else {
mentionListView.setVisibility(View.GONE);
}
}
}
@Override
public void onContextSearch(boolean searching) {
}
@Override
public void onContextClick(TLRPC.BotInlineResult result) {
}
}));
2019-01-23 18:03:33 +01:00
mentionListView.setOnItemClickListener((view, position) -> {
Object object = mentionsAdapter.getItem(position);
int start = mentionsAdapter.getResultStartPosition();
int len = mentionsAdapter.getResultLength();
if (object instanceof TLRPC.User) {
TLRPC.User user = (TLRPC.User) object;
if (user.username != null) {
captionEditText.replaceWithText(start, len, "@" + user.username + " ", false);
} else {
String name = UserObject.getFirstName(user);
Spannable spannable = new SpannableString(name + " ");
spannable.setSpan(new URLSpanUserMentionPhotoViewer("" + user.id, true), 0, spannable.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
captionEditText.replaceWithText(start, len, spannable, false);
}
} else if (object instanceof String) {
captionEditText.replaceWithText(start, len, object + " ", false);
} else if (object instanceof EmojiSuggestion) {
String code = ((EmojiSuggestion) object).emoji;
captionEditText.addEmojiToRecent(code);
captionEditText.replaceWithText(start, len, code, true);
}
});
2019-01-23 18:03:33 +01:00
mentionListView.setOnItemLongClickListener((view, position) -> {
Object object = mentionsAdapter.getItem(position);
if (object instanceof String) {
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setMessage(LocaleController.getString("ClearSearch", R.string.ClearSearch));
builder.setPositiveButton(LocaleController.getString("ClearButton", R.string.ClearButton).toUpperCase(), (dialogInterface, i) -> mentionsAdapter.clearRecentHashtags());
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showAlertDialog(builder);
return true;
}
2019-01-23 18:03:33 +01:00
return false;
});
}
2018-07-30 04:07:02 +02:00
private boolean checkInlinePermissions() {
if (parentActivity == null) {
return false;
}
if (Build.VERSION.SDK_INT < 23 || Settings.canDrawOverlays(parentActivity)) {
return true;
} else {
new AlertDialog.Builder(parentActivity).setTitle(LocaleController.getString("AppName", R.string.AppName))
.setMessage(LocaleController.getString("PermissionDrawAboveOtherApps", R.string.PermissionDrawAboveOtherApps))
2019-01-23 18:03:33 +01:00
.setPositiveButton(LocaleController.getString("PermissionOpenSettings", R.string.PermissionOpenSettings), (dialog, which) -> {
if (parentActivity != null) {
try {
parentActivity.startActivity(new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION, Uri.parse("package:" + parentActivity.getPackageName())));
} catch (Exception e) {
FileLog.e(e);
2018-07-30 04:07:02 +02:00
}
}
}).show();
}
return false;
}
private TextView createCaptionTextView() {
TextView textView = new TextView(actvityContext) {
@Override
public boolean onTouchEvent(MotionEvent event) {
return bottomTouchEnabled && super.onTouchEvent(event);
}
};
textView.setMovementMethod(new LinkMovementMethodMy());
textView.setPadding(AndroidUtilities.dp(20), AndroidUtilities.dp(8), AndroidUtilities.dp(20), AndroidUtilities.dp(8));
textView.setLinkTextColor(0xffffffff);
textView.setTextColor(0xffffffff);
textView.setHighlightColor(0x33ffffff);
textView.setEllipsize(TextUtils.TruncateAt.END);
textView.setGravity(Gravity.CENTER_VERTICAL | (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT));
textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16);
textView.setVisibility(View.INVISIBLE);
2019-01-23 18:03:33 +01:00
textView.setOnClickListener(v -> {
if (!needCaptionLayout) {
return;
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
openCaptionEnter();
2018-07-30 04:07:02 +02:00
});
return textView;
}
private int getLeftInset() {
if (lastInsets != null && Build.VERSION.SDK_INT >= 21) {
return ((WindowInsets) lastInsets).getSystemWindowInsetLeft();
}
return 0;
}
2019-01-23 18:03:33 +01:00
private int getRightInset() {
if (lastInsets != null && Build.VERSION.SDK_INT >= 21) {
return ((WindowInsets) lastInsets).getSystemWindowInsetRight();
}
return 0;
}
2018-07-30 04:07:02 +02:00
private void dismissInternal() {
try {
if (windowView.getParent() != null) {
((LaunchActivity) parentActivity).drawerLayoutContainer.setAllowDrawContent(true);
WindowManager wm = (WindowManager) parentActivity.getSystemService(Context.WINDOW_SERVICE);
wm.removeView(windowView);
}
} catch (Exception e) {
FileLog.e(e);
}
}
private void switchToPip() {
if (videoPlayer == null || !textureUploaded || !checkInlinePermissions() || changingTextureView || switchingInlineMode || isInline) {
return;
}
if (PipInstance != null) {
PipInstance.destroyPhotoViewer();
}
PipInstance = Instance;
Instance = null;
switchingInlineMode = true;
isVisible = false;
if (currentPlaceObject != null) {
currentPlaceObject.imageReceiver.setVisible(true, true);
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = currentPlaceObject.imageReceiver.getAnimation();
if (animation != null) {
Bitmap bitmap = animation.getAnimatedBitmap();
if (bitmap != null) {
try {
Bitmap src = videoTextureView.getBitmap(bitmap.getWidth(), bitmap.getHeight());
Canvas canvas = new Canvas(bitmap);
canvas.drawBitmap(src, 0, 0, null);
src.recycle();
} catch (Throwable e) {
FileLog.e(e);
}
}
animation.seekTo(videoPlayer.getCurrentPosition(), true);
currentPlaceObject.imageReceiver.setAllowStartAnimation(true);
currentPlaceObject.imageReceiver.startAnimation();
}
2018-07-30 04:07:02 +02:00
}
if (Build.VERSION.SDK_INT >= 21) {
pipAnimationInProgress = true;
org.telegram.ui.Components.Rect rect = PipVideoView.getPipRect(aspectRatioFrameLayout.getAspectRatio());
float scale = rect.width / videoTextureView.getWidth();
rect.y += AndroidUtilities.statusBarHeight;
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(textureImageView, View.SCALE_X, scale),
ObjectAnimator.ofFloat(textureImageView, View.SCALE_Y, scale),
ObjectAnimator.ofFloat(textureImageView, View.TRANSLATION_X, rect.x),
ObjectAnimator.ofFloat(textureImageView, View.TRANSLATION_Y, rect.y),
ObjectAnimator.ofFloat(videoTextureView, View.SCALE_X, scale),
ObjectAnimator.ofFloat(videoTextureView, View.SCALE_Y, scale),
ObjectAnimator.ofFloat(videoTextureView, View.TRANSLATION_X, rect.x - aspectRatioFrameLayout.getX() + getLeftInset()),
ObjectAnimator.ofFloat(videoTextureView, View.TRANSLATION_Y, rect.y - aspectRatioFrameLayout.getY()),
ObjectAnimator.ofInt(backgroundDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 0),
ObjectAnimator.ofFloat(actionBar, View.ALPHA, 0.0f),
ObjectAnimator.ofFloat(bottomLayout, View.ALPHA, 0.0f),
ObjectAnimator.ofFloat(captionTextView, View.ALPHA, 0.0f),
ObjectAnimator.ofFloat(groupedPhotosListView, View.ALPHA, 0.0f)
2018-07-30 04:07:02 +02:00
);
animatorSet.setInterpolator(new DecelerateInterpolator());
animatorSet.setDuration(250);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
pipAnimationInProgress = false;
switchToInlineRunnable.run();
}
});
animatorSet.start();
} else {
switchToInlineRunnable.run();
dismissInternal();
}
}
public VideoPlayer getVideoPlayer() {
return videoPlayer;
}
public void exitFromPip() {
if (!isInline) {
return;
}
if (Instance != null) {
Instance.closePhoto(false, true);
}
Instance = PipInstance;
PipInstance = null;
switchingInlineMode = true;
if (currentBitmap != null) {
currentBitmap.recycle();
currentBitmap = null;
}
changingTextureView = true;
isInline = false;
videoTextureView.setVisibility(View.INVISIBLE);
aspectRatioFrameLayout.addView(videoTextureView);
if (ApplicationLoader.mainInterfacePaused) {
try {
parentActivity.startService(new Intent(ApplicationLoader.applicationContext, BringAppForegroundService.class));
} catch (Throwable e) {
FileLog.e(e);
}
}
if (Build.VERSION.SDK_INT >= 21) {
pipAnimationInProgress = true;
org.telegram.ui.Components.Rect rect = PipVideoView.getPipRect(aspectRatioFrameLayout.getAspectRatio());
float scale = rect.width / textureImageView.getLayoutParams().width;
rect.y += AndroidUtilities.statusBarHeight;
textureImageView.setScaleX(scale);
textureImageView.setScaleY(scale);
textureImageView.setTranslationX(rect.x);
textureImageView.setTranslationY(rect.y);
videoTextureView.setScaleX(scale);
videoTextureView.setScaleY(scale);
videoTextureView.setTranslationX(rect.x - aspectRatioFrameLayout.getX());
videoTextureView.setTranslationY(rect.y - aspectRatioFrameLayout.getY());
} else {
pipVideoView.close();
pipVideoView = null;
}
try {
isVisible = true;
WindowManager wm = (WindowManager) parentActivity.getSystemService(Context.WINDOW_SERVICE);
wm.addView(windowView, windowLayoutParams);
if (currentPlaceObject != null) {
currentPlaceObject.imageReceiver.setVisible(false, false);
}
} catch (Exception e) {
FileLog.e(e);
}
if (Build.VERSION.SDK_INT >= 21) {
waitingForDraw = 4;
}
}
private void createVideoControlsInterface() {
videoPlayerSeekbar = new SeekBar(containerView.getContext());
videoPlayerSeekbar.setLineHeight(AndroidUtilities.dp(4));
videoPlayerSeekbar.setColors(0x66ffffff, 0x66ffffff, 0xffd5d0d7, 0xffffffff, 0xffffffff);
2019-01-23 18:03:33 +01:00
videoPlayerSeekbar.setDelegate(progress -> {
if (videoPlayer != null) {
if (!inPreview && videoTimelineView.getVisibility() == View.VISIBLE) {
progress = videoTimelineView.getLeftProgress() + (videoTimelineView.getRightProgress() - videoTimelineView.getLeftProgress()) * progress;
}
long duration = videoPlayer.getDuration();
if (duration == C.TIME_UNSET) {
seekToProgressPending = progress;
} else {
videoPlayer.seekTo((int) (progress * duration));
2018-07-30 04:07:02 +02:00
}
}
});
videoPlayerControlFrameLayout = new FrameLayout(containerView.getContext()) {
@Override
public boolean onTouchEvent(MotionEvent event) {
int x = (int) event.getX();
int y = (int) event.getY();
if (videoPlayerSeekbar.onTouch(event.getAction(), event.getX() - AndroidUtilities.dp(48), event.getY())) {
getParent().requestDisallowInterceptTouchEvent(true);
invalidate();
return true;
}
return true;
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
long duration;
if (videoPlayer != null) {
duration = videoPlayer.getDuration();
if (duration == C.TIME_UNSET) {
duration = 0;
}
} else {
duration = 0;
}
duration /= 1000;
int size = (int) Math.ceil(videoPlayerTime.getPaint().measureText(String.format("%02d:%02d / %02d:%02d", duration / 60, duration % 60, duration / 60, duration % 60)));
videoPlayerSeekbar.setSize(getMeasuredWidth() - AndroidUtilities.dp(48 + 16) - size, getMeasuredHeight());
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
float progress = 0;
if (videoPlayer != null) {
progress = videoPlayer.getCurrentPosition() / (float) videoPlayer.getDuration();
if (!inPreview && videoTimelineView.getVisibility() == View.VISIBLE) {
progress -= videoTimelineView.getLeftProgress();
if (progress < 0) {
progress = 0;
}
progress /= (videoTimelineView.getRightProgress() - videoTimelineView.getLeftProgress());
if (progress > 1) {
progress = 1;
}
}
}
videoPlayerSeekbar.setProgress(progress);
videoTimelineView.setProgress(progress);
}
@Override
protected void onDraw(Canvas canvas) {
canvas.save();
canvas.translate(AndroidUtilities.dp(48), 0);
videoPlayerSeekbar.draw(canvas);
canvas.restore();
}
};
videoPlayerControlFrameLayout.setWillNotDraw(false);
bottomLayout.addView(videoPlayerControlFrameLayout, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT));
videoPlayButton = new ImageView(containerView.getContext());
videoPlayButton.setScaleType(ImageView.ScaleType.CENTER);
videoPlayerControlFrameLayout.addView(videoPlayButton, LayoutHelper.createFrame(48, 48, Gravity.LEFT | Gravity.TOP, 4, 0, 0, 0));
2019-01-23 18:03:33 +01:00
videoPlayButton.setOnClickListener(v -> {
if (videoPlayer == null) {
return;
}
if (isPlaying) {
videoPlayer.pause();
} else {
if (isCurrentVideo) {
if (Math.abs(videoTimelineView.getProgress() - 1.0f) < 0.01f || videoPlayer.getCurrentPosition() == videoPlayer.getDuration()) {
videoPlayer.seekTo(0);
}
2018-07-30 04:07:02 +02:00
} else {
2019-01-23 18:03:33 +01:00
if (Math.abs(videoPlayerSeekbar.getProgress() - 1.0f) < 0.01f || videoPlayer.getCurrentPosition() == videoPlayer.getDuration()) {
videoPlayer.seekTo(0);
2018-07-30 04:07:02 +02:00
}
}
2019-01-23 18:03:33 +01:00
videoPlayer.play();
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
containerView.invalidate();
2018-07-30 04:07:02 +02:00
});
videoPlayerTime = new SimpleTextView(containerView.getContext());
videoPlayerTime.setTextColor(0xffffffff);
videoPlayerTime.setGravity(Gravity.RIGHT | Gravity.TOP);
videoPlayerTime.setTextSize(13);
videoPlayerControlFrameLayout.addView(videoPlayerTime, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.MATCH_PARENT, Gravity.RIGHT | Gravity.TOP, 0, 17, 7, 0));
}
2016-10-11 13:57:01 +02:00
private void openCaptionEnter() {
2019-01-23 18:03:33 +01:00
if (imageMoveAnimation != null || changeModeAnimation != null || currentEditMode != 0 || sendPhotoType == SELECT_TYPE_AVATAR || sendPhotoType == SELECT_TYPE_WALLPAPER) {
2016-10-11 13:57:01 +02:00
return;
}
2017-12-08 18:35:59 +01:00
selectedPhotosListView.setVisibility(View.GONE);
selectedPhotosListView.setEnabled(false);
selectedPhotosListView.setAlpha(0.0f);
selectedPhotosListView.setTranslationY(-AndroidUtilities.dp(10));
photosCounterView.setRotationX(0.0f);
isPhotosListViewVisible = false;
2017-03-31 01:58:05 +02:00
captionEditText.setTag(1);
2016-10-11 13:57:01 +02:00
captionEditText.openKeyboard();
lastTitle = actionBar.getTitle();
if (isCurrentVideo) {
2017-03-31 01:58:05 +02:00
actionBar.setTitle(muteVideo ? LocaleController.getString("GifCaption", R.string.GifCaption) : LocaleController.getString("VideoCaption", R.string.VideoCaption));
actionBar.setSubtitle(null);
} else {
actionBar.setTitle(LocaleController.getString("PhotoCaption", R.string.PhotoCaption));
}
}
2017-07-08 18:32:04 +02:00
private VideoEditedInfo getCurrentVideoEditedInfo() {
2017-12-08 18:35:59 +01:00
if (!isCurrentVideo || currentPlayingVideoFile == null || compressionsCount == 0) {
2017-07-08 18:32:04 +02:00
return null;
}
VideoEditedInfo videoEditedInfo = new VideoEditedInfo();
videoEditedInfo.startTime = startTime;
videoEditedInfo.endTime = endTime;
videoEditedInfo.rotationValue = rotationValue;
videoEditedInfo.originalWidth = originalWidth;
videoEditedInfo.originalHeight = originalHeight;
videoEditedInfo.bitrate = bitrate;
2018-07-30 04:07:02 +02:00
videoEditedInfo.originalPath = currentPlayingVideoFile.getPath();
2019-03-03 21:40:48 +01:00
videoEditedInfo.estimatedSize = estimatedSize != 0 ? estimatedSize : 1;
2017-07-08 18:32:04 +02:00
videoEditedInfo.estimatedDuration = estimatedDuration;
2018-07-30 04:07:02 +02:00
videoEditedInfo.framerate = videoFramerate;
2017-07-08 18:32:04 +02:00
if (!muteVideo && (compressItem.getTag() == null || selectedCompression == compressionsCount - 1)) {
videoEditedInfo.resultWidth = originalWidth;
videoEditedInfo.resultHeight = originalHeight;
videoEditedInfo.bitrate = muteVideo ? -1 : originalBitrate;
videoEditedInfo.muted = muteVideo;
} else {
if (muteVideo) {
selectedCompression = 1;
updateWidthHeightBitrateForCompression();
}
videoEditedInfo.resultWidth = resultWidth;
videoEditedInfo.resultHeight = resultHeight;
videoEditedInfo.bitrate = muteVideo ? -1 : bitrate;
videoEditedInfo.muted = muteVideo;
}
return videoEditedInfo;
}
2017-03-31 01:58:05 +02:00
private void closeCaptionEnter(boolean apply) {
if (currentIndex < 0 || currentIndex >= imagesArrLocals.size()) {
return;
}
Object object = imagesArrLocals.get(currentIndex);
if (apply) {
2018-07-30 04:07:02 +02:00
CharSequence caption = captionEditText.getFieldCharSequence();
CharSequence[] result = new CharSequence[] {caption};
ArrayList<TLRPC.MessageEntity> entities = DataQuery.getInstance(currentAccount).getEntities(result);
2017-03-31 01:58:05 +02:00
if (object instanceof MediaController.PhotoEntry) {
2018-07-30 04:07:02 +02:00
MediaController.PhotoEntry photoEntry = (MediaController.PhotoEntry) object;
photoEntry.caption = result[0];
photoEntry.entities = entities;
2017-03-31 01:58:05 +02:00
} else if (object instanceof MediaController.SearchImage) {
2018-07-30 04:07:02 +02:00
MediaController.SearchImage photoEntry = (MediaController.SearchImage) object;
photoEntry.caption = result[0];
photoEntry.entities = entities;
2017-03-31 01:58:05 +02:00
}
if (captionEditText.getFieldCharSequence().length() != 0 && !placeProvider.isPhotoChecked(currentIndex)) {
2017-12-08 18:35:59 +01:00
setPhotoChecked();
2017-03-31 01:58:05 +02:00
}
2018-07-30 04:07:02 +02:00
setCurrentCaption(null, result[0], false);
2017-03-31 01:58:05 +02:00
}
captionEditText.setTag(null);
if (lastTitle != null) {
actionBar.setTitle(lastTitle);
lastTitle = null;
}
if (isCurrentVideo) {
2017-03-31 01:58:05 +02:00
actionBar.setSubtitle(muteVideo ? null : currentSubtitle);
}
updateCaptionTextForCurrentPhoto(object);
if (captionEditText.isPopupShowing()) {
captionEditText.hidePopup();
}
captionEditText.closeKeyboard();
2016-10-11 13:57:01 +02:00
}
private void updateVideoPlayerTime() {
String newText;
if (videoPlayer == null) {
2017-12-08 18:35:59 +01:00
newText = String.format("%02d:%02d / %02d:%02d", 0, 0, 0, 0);
} else {
2017-03-31 01:58:05 +02:00
long current = videoPlayer.getCurrentPosition();
2018-07-30 04:07:02 +02:00
if (current < 0) {
current = 0;
}
2016-10-11 13:57:01 +02:00
long total = videoPlayer.getDuration();
2018-07-30 04:07:02 +02:00
if (total < 0) {
total = 0;
}
2017-03-31 01:58:05 +02:00
if (total != C.TIME_UNSET && current != C.TIME_UNSET) {
if (!inPreview && videoTimelineView.getVisibility() == View.VISIBLE) {
2017-03-31 01:58:05 +02:00
total *= (videoTimelineView.getRightProgress() - videoTimelineView.getLeftProgress());
current -= videoTimelineView.getLeftProgress() * total;
if (current > total) {
current = total;
2016-10-11 13:57:01 +02:00
}
}
2017-03-31 01:58:05 +02:00
current /= 1000;
total /= 1000;
newText = String.format("%02d:%02d / %02d:%02d", current / 60, current % 60, total / 60, total % 60);
} else {
2017-12-08 18:35:59 +01:00
newText = String.format("%02d:%02d / %02d:%02d", 0, 0, 0, 0);
}
}
2018-07-30 04:07:02 +02:00
videoPlayerTime.setText(newText);
}
private void checkBufferedProgress(float progress) {
if (!isStreaming || parentActivity == null || streamingAlertShown || videoPlayer == null || currentMessageObject == null) {
return;
}
TLRPC.Document document = currentMessageObject.getDocument();
if (document == null) {
return;
}
2019-01-23 18:03:33 +01:00
int innerDuration = currentMessageObject.getDuration();
if (innerDuration < 20) {
return;
}
2018-07-30 04:07:02 +02:00
if (progress < 0.9f && (document.size * progress >= 5 * 1024 * 1024 || progress >= 0.5f && document.size >= 2 * 1024 * 1024) && Math.abs(SystemClock.elapsedRealtime() - startedPlayTime) >= 2000) {
long duration = videoPlayer.getDuration();
if (duration == C.TIME_UNSET) {
Toast toast = Toast.makeText(parentActivity, LocaleController.getString("VideoDoesNotSupportStreaming", R.string.VideoDoesNotSupportStreaming), Toast.LENGTH_LONG);
toast.show();
}
streamingAlertShown = true;
}
}
2019-03-03 21:40:48 +01:00
public void injectVideoPlayer(VideoPlayer player) {
injectingVideoPlayer = player;
}
public void injectVideoPlayerSurface(SurfaceTexture surface) {
injectingVideoPlayerSurface = surface;
}
public boolean isInjectingVideoPlayer() {
return injectingVideoPlayer != null;
}
private void updatePlayerState(boolean playWhenReady, int playbackState) {
if (videoPlayer == null) {
return;
}
if (isStreaming) {
if (playbackState == ExoPlayer.STATE_BUFFERING && skipFirstBufferingProgress) {
if (playWhenReady) {
skipFirstBufferingProgress = false;
}
} else {
toggleMiniProgress(seekToProgressPending != 0 || playbackState == ExoPlayer.STATE_BUFFERING, true);
}
}
if (playWhenReady && (playbackState != ExoPlayer.STATE_ENDED && playbackState != ExoPlayer.STATE_IDLE)) {
try {
parentActivity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
keepScreenOnFlagSet = true;
} catch (Exception e) {
FileLog.e(e);
}
} else {
try {
parentActivity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
keepScreenOnFlagSet = false;
} catch (Exception e) {
FileLog.e(e);
}
}
if (seekToProgressPending != 0 && (playbackState == ExoPlayer.STATE_READY || playbackState == ExoPlayer.STATE_IDLE)) {
int seekTo = (int) (videoPlayer.getDuration() * seekToProgressPending);
videoPlayer.seekTo(seekTo);
seekToProgressPending = 0;
if (currentMessageObject != null && !FileLoader.getInstance(currentMessageObject.currentAccount).isLoadingVideoAny(currentMessageObject.getDocument())) {
skipFirstBufferingProgress = true;
}
}
if (playbackState == ExoPlayer.STATE_READY) {
if (aspectRatioFrameLayout.getVisibility() != View.VISIBLE) {
aspectRatioFrameLayout.setVisibility(View.VISIBLE);
}
if (!pipItem.isEnabled()) {
pipAvailable = true;
pipItem.setEnabled(true);
pipItem.setAlpha(1.0f);
}
playerWasReady = true;
if (currentMessageObject != null && currentMessageObject.isVideo()) {
AndroidUtilities.cancelRunOnUIThread(setLoadingRunnable);
FileLoader.getInstance(currentMessageObject.currentAccount).removeLoadingVideo(currentMessageObject.getDocument(), true, false);
}
} else if (playbackState == ExoPlayer.STATE_BUFFERING) {
if (playWhenReady && currentMessageObject != null && currentMessageObject.isVideo()) {
if (playerWasReady) {
setLoadingRunnable.run();
} else {
AndroidUtilities.runOnUIThread(setLoadingRunnable, 1000);
}
}
}
if (videoPlayer.isPlaying() && playbackState != ExoPlayer.STATE_ENDED) {
if (!isPlaying) {
isPlaying = true;
videoPlayButton.setImageResource(R.drawable.inline_video_pause);
AndroidUtilities.runOnUIThread(updateProgressRunnable);
}
} else if (isPlaying) {
isPlaying = false;
videoPlayButton.setImageResource(R.drawable.inline_video_play);
AndroidUtilities.cancelRunOnUIThread(updateProgressRunnable);
if (playbackState == ExoPlayer.STATE_ENDED) {
if (isCurrentVideo) {
if (!videoTimelineView.isDragging()) {
videoTimelineView.setProgress(0.0f);
if (!inPreview && videoTimelineView.getVisibility() == View.VISIBLE) {
videoPlayer.seekTo((int) (videoTimelineView.getLeftProgress() * videoPlayer.getDuration()));
} else {
videoPlayer.seekTo(0);
}
videoPlayer.pause();
containerView.invalidate();
}
} else {
if (!isActionBarVisible) {
toggleActionBar(true, true);
}
if (!videoPlayerSeekbar.isDragging()) {
videoPlayerSeekbar.setProgress(0.0f);
videoPlayerControlFrameLayout.invalidate();
if (!inPreview && videoTimelineView.getVisibility() == View.VISIBLE) {
videoPlayer.seekTo((int) (videoTimelineView.getLeftProgress() * videoPlayer.getDuration()));
} else {
videoPlayer.seekTo(0);
}
videoPlayer.pause();
}
}
if (pipVideoView != null) {
pipVideoView.onVideoCompleted();
}
}
}
if (pipVideoView != null) {
pipVideoView.updatePlayButton();
}
updateVideoPlayerTime();
}
2018-07-30 04:07:02 +02:00
private void preparePlayer(Uri uri, boolean playWhenReady, boolean preview) {
2017-03-31 01:58:05 +02:00
if (!preview) {
2018-07-30 04:07:02 +02:00
currentPlayingVideoFile = uri;
2017-03-31 01:58:05 +02:00
}
if (parentActivity == null) {
2017-07-08 18:32:04 +02:00
return;
}
2018-07-30 04:07:02 +02:00
streamingAlertShown = false;
startedPlayTime = SystemClock.elapsedRealtime();
currentVideoFinishedLoading = false;
lastBufferedPositionCheck = 0;
firstAnimationDelay = true;
2017-03-31 01:58:05 +02:00
inPreview = preview;
releasePlayer();
if (videoTextureView == null) {
2018-07-30 04:07:02 +02:00
aspectRatioFrameLayout = new AspectRatioFrameLayout(parentActivity) {
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
if (textureImageView != null) {
ViewGroup.LayoutParams layoutParams = textureImageView.getLayoutParams();
layoutParams.width = getMeasuredWidth();
layoutParams.height = getMeasuredHeight();
}
}
};
aspectRatioFrameLayout.setVisibility(View.INVISIBLE);
containerView.addView(aspectRatioFrameLayout, 0, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.CENTER));
videoTextureView = new TextureView(parentActivity);
2019-03-03 21:40:48 +01:00
if (injectingVideoPlayerSurface != null) {
videoTextureView.setSurfaceTexture(injectingVideoPlayerSurface);
textureUploaded = true;
injectingVideoPlayerSurface = null;
}
2018-07-30 04:07:02 +02:00
videoTextureView.setPivotX(0);
videoTextureView.setPivotY(0);
videoTextureView.setOpaque(false);
aspectRatioFrameLayout.addView(videoTextureView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.CENTER));
}
2018-07-30 04:07:02 +02:00
if (Build.VERSION.SDK_INT >= 21 && textureImageView == null) {
textureImageView = new ImageView(parentActivity);
textureImageView.setBackgroundColor(0xffff0000);
textureImageView.setPivotX(0);
textureImageView.setPivotY(0);
textureImageView.setVisibility(View.INVISIBLE);
containerView.addView(textureImageView);
}
textureUploaded = false;
videoCrossfadeStarted = false;
videoTextureView.setAlpha(videoCrossfadeAlpha = 0.0f);
2016-10-11 13:57:01 +02:00
videoPlayButton.setImageResource(R.drawable.inline_video_play);
2019-03-03 21:40:48 +01:00
boolean newPlayerCreated = false;
playerWasReady = false;
if (videoPlayer == null) {
2019-03-03 21:40:48 +01:00
if (injectingVideoPlayer != null) {
videoPlayer = injectingVideoPlayer;
injectingVideoPlayer = null;
playerInjected = true;
updatePlayerState(videoPlayer.getPlayWhenReady(), videoPlayer.getPlaybackState());
} else {
videoPlayer = new VideoPlayer();
newPlayerCreated = true;
}
2017-03-31 01:58:05 +02:00
videoPlayer.setTextureView(videoTextureView);
videoPlayer.setDelegate(new VideoPlayer.VideoPlayerDelegate() {
@Override
public void onStateChanged(boolean playWhenReady, int playbackState) {
2019-03-03 21:40:48 +01:00
updatePlayerState(playWhenReady, playbackState);
}
@Override
public void onError(Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
2018-07-30 04:07:02 +02:00
if (!menuItem.isSubItemVisible(gallery_menu_openin)) {
return;
}
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setMessage(LocaleController.getString("CantPlayVideo", R.string.CantPlayVideo));
2019-01-23 18:03:33 +01:00
builder.setPositiveButton(LocaleController.getString("Open", R.string.Open), (dialog, which) -> {
try {
AndroidUtilities.openForView(currentMessageObject, parentActivity);
closePhoto(false, false);
} catch (Exception e1) {
FileLog.e(e1);
2018-07-30 04:07:02 +02:00
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showAlertDialog(builder);
}
@Override
public void onVideoSizeChanged(int width, int height, int unappliedRotationDegrees, float pixelWidthHeightRatio) {
if (aspectRatioFrameLayout != null) {
2016-10-11 13:57:01 +02:00
if (unappliedRotationDegrees == 90 || unappliedRotationDegrees == 270) {
int temp = width;
width = height;
height = temp;
}
aspectRatioFrameLayout.setAspectRatio(height == 0 ? 1 : (width * pixelWidthHeightRatio) / height, unappliedRotationDegrees);
}
}
2017-03-31 01:58:05 +02:00
@Override
public void onRenderedFirstFrame() {
if (!textureUploaded) {
textureUploaded = true;
containerView.invalidate();
}
}
@Override
public boolean onSurfaceDestroyed(SurfaceTexture surfaceTexture) {
2018-07-30 04:07:02 +02:00
if (changingTextureView) {
changingTextureView = false;
if (isInline) {
if (isInline) {
waitingForFirstTextureUpload = 1;
}
changedTextureView.setSurfaceTexture(surfaceTexture);
changedTextureView.setSurfaceTextureListener(surfaceTextureListener);
changedTextureView.setVisibility(View.VISIBLE);
return true;
}
}
2017-03-31 01:58:05 +02:00
return false;
}
@Override
public void onSurfaceTextureUpdated(SurfaceTexture surfaceTexture) {
2018-07-30 04:07:02 +02:00
if (waitingForFirstTextureUpload == 2) {
if (textureImageView != null) {
textureImageView.setVisibility(View.INVISIBLE);
textureImageView.setImageDrawable(null);
if (currentBitmap != null) {
currentBitmap.recycle();
currentBitmap = null;
}
}
switchingInlineMode = false;
if (Build.VERSION.SDK_INT >= 21) {
aspectRatioFrameLayout.getLocationInWindow(pipPosition);
2019-01-23 18:03:33 +01:00
//pipPosition[0] -= getLeftInset();
2018-07-30 04:07:02 +02:00
pipPosition[1] -= containerView.getTranslationY();
2019-01-23 18:03:33 +01:00
textureImageView.setTranslationX(textureImageView.getTranslationX()+getLeftInset());
videoTextureView.setTranslationX(videoTextureView.getTranslationX()+getLeftInset()-aspectRatioFrameLayout.getX());
2018-07-30 04:07:02 +02:00
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(textureImageView, View.SCALE_X, 1.0f),
ObjectAnimator.ofFloat(textureImageView, View.SCALE_Y, 1.0f),
ObjectAnimator.ofFloat(textureImageView, View.TRANSLATION_X, pipPosition[0]),
ObjectAnimator.ofFloat(textureImageView, View.TRANSLATION_Y, pipPosition[1]),
ObjectAnimator.ofFloat(videoTextureView, View.SCALE_X, 1.0f),
ObjectAnimator.ofFloat(videoTextureView, View.SCALE_Y, 1.0f),
ObjectAnimator.ofFloat(videoTextureView, View.TRANSLATION_X, pipPosition[0] - aspectRatioFrameLayout.getX()),
ObjectAnimator.ofFloat(videoTextureView, View.TRANSLATION_Y, pipPosition[1] - aspectRatioFrameLayout.getY()),
ObjectAnimator.ofInt(backgroundDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 255),
ObjectAnimator.ofFloat(actionBar, View.ALPHA, 1.0f),
ObjectAnimator.ofFloat(bottomLayout, View.ALPHA, 1.0f),
ObjectAnimator.ofFloat(captionTextView, View.ALPHA, 1.0f),
ObjectAnimator.ofFloat(groupedPhotosListView, View.ALPHA, 1.0f)
2018-07-30 04:07:02 +02:00
);
animatorSet.setInterpolator(new DecelerateInterpolator());
animatorSet.setDuration(250);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
pipAnimationInProgress = false;
}
});
animatorSet.start();
} else {
//containerView.setTranslationY(0);
}
2017-03-31 01:58:05 +02:00
2018-07-30 04:07:02 +02:00
waitingForFirstTextureUpload = 0;
}
2017-03-31 01:58:05 +02:00
}
});
}
2018-07-30 04:07:02 +02:00
2019-03-03 21:40:48 +01:00
if (newPlayerCreated) {
seekToProgressPending = seekToProgressPending2;
videoPlayer.preparePlayer(uri, "other");
videoPlayerSeekbar.setProgress(0);
videoTimelineView.setProgress(0);
videoPlayerSeekbar.setBufferedProgress(0);
videoPlayer.setPlayWhenReady(playWhenReady);
}
2018-07-30 04:07:02 +02:00
if (currentBotInlineResult != null && (currentBotInlineResult.type.equals("video") || MessageObject.isVideoDocument(currentBotInlineResult.document))) {
bottomLayout.setVisibility(View.VISIBLE);
2019-03-03 21:40:48 +01:00
bottomLayout.setPadding(0, 0, AndroidUtilities.dp(84), 0);
pickerView.setVisibility(View.GONE);
//bottomLayout.setTranslationY(-AndroidUtilities.dp(48));
} else {
bottomLayout.setPadding(0, 0, 0, 0);
}
videoPlayerControlFrameLayout.setVisibility(isCurrentVideo ? View.GONE : View.VISIBLE);
2018-07-30 04:07:02 +02:00
dateTextView.setVisibility(View.GONE);
nameTextView.setVisibility(View.GONE);
if (allowShare) {
shareButton.setVisibility(View.GONE);
menuItem.showSubItem(gallery_menu_share);
}
2017-03-31 01:58:05 +02:00
inPreview = preview;
}
private void releasePlayer() {
if (videoPlayer != null) {
2019-03-03 21:40:48 +01:00
AndroidUtilities.cancelRunOnUIThread(setLoadingRunnable);
videoPlayer.releasePlayer(true);
videoPlayer = null;
}
2018-07-30 04:07:02 +02:00
toggleMiniProgress(false, false);
pipAvailable = false;
2019-03-03 21:40:48 +01:00
playerInjected = false;
2018-07-30 04:07:02 +02:00
if (pipItem.isEnabled()) {
pipItem.setEnabled(false);
pipItem.setAlpha(0.5f);
}
if (keepScreenOnFlagSet) {
try {
parentActivity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
keepScreenOnFlagSet = false;
} catch (Exception e) {
FileLog.e(e);
}
2016-10-11 13:57:01 +02:00
}
if (aspectRatioFrameLayout != null) {
2019-03-03 21:40:48 +01:00
try {
containerView.removeView(aspectRatioFrameLayout);
} catch (Throwable ignore) {
}
aspectRatioFrameLayout = null;
}
if (videoTextureView != null) {
videoTextureView = null;
}
if (isPlaying) {
isPlaying = false;
videoPlayButton.setImageResource(R.drawable.inline_video_play);
AndroidUtilities.cancelRunOnUIThread(updateProgressRunnable);
}
if (!inPreview && !requestingPreview) {
videoPlayerControlFrameLayout.setVisibility(View.GONE);
dateTextView.setVisibility(View.VISIBLE);
nameTextView.setVisibility(View.VISIBLE);
2016-10-11 13:57:01 +02:00
if (allowShare) {
shareButton.setVisibility(View.VISIBLE);
menuItem.hideSubItem(gallery_menu_share);
}
}
}
private void updateCaptionTextForCurrentPhoto(Object object) {
CharSequence caption = null;
if (object instanceof MediaController.PhotoEntry) {
caption = ((MediaController.PhotoEntry) object).caption;
2016-10-11 13:57:01 +02:00
} else if (object instanceof TLRPC.BotInlineResult) {
//caption = ((TLRPC.BotInlineResult) object).send_message.caption;
} else if (object instanceof MediaController.SearchImage) {
caption = ((MediaController.SearchImage) object).caption;
}
2018-07-30 04:07:02 +02:00
if (TextUtils.isEmpty(caption)) {
captionEditText.setFieldText("");
} else {
captionEditText.setFieldText(caption);
}
}
2016-10-11 13:57:01 +02:00
public void showAlertDialog(AlertDialog.Builder builder) {
if (parentActivity == null) {
return;
}
try {
if (visibleDialog != null) {
visibleDialog.dismiss();
visibleDialog = null;
}
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
try {
visibleDialog = builder.show();
visibleDialog.setCanceledOnTouchOutside(true);
2019-01-23 18:03:33 +01:00
visibleDialog.setOnDismissListener(dialog -> visibleDialog = null);
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
}
private void applyCurrentEditMode() {
Bitmap bitmap = null;
2016-10-11 13:57:01 +02:00
ArrayList<TLRPC.InputDocument> stickers = null;
2017-12-08 18:35:59 +01:00
MediaController.SavedFilterState savedFilterState = null;
boolean removeSavedState = false;
2019-01-23 18:03:33 +01:00
if (currentEditMode == 1 || currentEditMode == 0 && sendPhotoType == SELECT_TYPE_AVATAR) {
bitmap = photoCropView.getBitmap();
2017-12-08 18:35:59 +01:00
removeSavedState = true;
} else if (currentEditMode == 2) {
bitmap = photoFilterView.getBitmap();
2017-12-08 18:35:59 +01:00
savedFilterState = photoFilterView.getSavedFilterState();
2016-10-11 13:57:01 +02:00
} else if (currentEditMode == 3) {
bitmap = photoPaintView.getBitmap();
stickers = photoPaintView.getMasks();
2017-12-08 18:35:59 +01:00
removeSavedState = true;
}
if (bitmap != null) {
TLRPC.PhotoSize size = ImageLoader.scaleAndSaveImage(bitmap, AndroidUtilities.getPhotoSize(), AndroidUtilities.getPhotoSize(), 80, false, 101, 101);
if (size != null) {
Object object = imagesArrLocals.get(currentIndex);
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry entry = (MediaController.PhotoEntry) object;
entry.imagePath = FileLoader.getPathToAttach(size, true).toString();
size = ImageLoader.scaleAndSaveImage(bitmap, AndroidUtilities.dp(120), AndroidUtilities.dp(120), 70, false, 101, 101);
if (size != null) {
entry.thumbPath = FileLoader.getPathToAttach(size, true).toString();
}
2016-10-11 13:57:01 +02:00
if (stickers != null) {
entry.stickers.addAll(stickers);
}
if (currentEditMode == 1) {
cropItem.setColorFilter(new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY));
entry.isCropped = true;
} else if (currentEditMode == 2) {
tuneItem.setColorFilter(new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY));
entry.isFiltered = true;
} else if (currentEditMode == 3) {
paintItem.setColorFilter(new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY));
entry.isPainted = true;
}
2017-12-08 18:35:59 +01:00
if (savedFilterState != null) {
entry.savedFilterState = savedFilterState;
} else if (removeSavedState) {
entry.savedFilterState = null;
}
} else if (object instanceof MediaController.SearchImage) {
MediaController.SearchImage entry = (MediaController.SearchImage) object;
entry.imagePath = FileLoader.getPathToAttach(size, true).toString();
size = ImageLoader.scaleAndSaveImage(bitmap, AndroidUtilities.dp(120), AndroidUtilities.dp(120), 70, false, 101, 101);
if (size != null) {
entry.thumbPath = FileLoader.getPathToAttach(size, true).toString();
}
2016-10-11 13:57:01 +02:00
if (stickers != null) {
entry.stickers.addAll(stickers);
}
if (currentEditMode == 1) {
cropItem.setColorFilter(new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY));
entry.isCropped = true;
} else if (currentEditMode == 2) {
tuneItem.setColorFilter(new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY));
entry.isFiltered = true;
} else if (currentEditMode == 3) {
paintItem.setColorFilter(new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY));
entry.isPainted = true;
}
2017-12-08 18:35:59 +01:00
if (savedFilterState != null) {
entry.savedFilterState = savedFilterState;
} else if (removeSavedState) {
entry.savedFilterState = null;
}
}
2018-07-30 04:07:02 +02:00
if ((sendPhotoType == 0 || sendPhotoType == 4) && placeProvider != null) {
placeProvider.updatePhotoAtIndex(currentIndex);
if (!placeProvider.isPhotoChecked(currentIndex)) {
2017-12-08 18:35:59 +01:00
setPhotoChecked();
}
}
if (currentEditMode == 1) {
float scaleX = photoCropView.getRectSizeX() / (float) getContainerViewWidth();
float scaleY = photoCropView.getRectSizeY() / (float) getContainerViewHeight();
scale = scaleX > scaleY ? scaleX : scaleY;
translationX = photoCropView.getRectX() + photoCropView.getRectSizeX() / 2 - getContainerViewWidth() / 2;
translationY = photoCropView.getRectY() + photoCropView.getRectSizeY() / 2 - getContainerViewHeight() / 2;
zoomAnimation = true;
2017-03-31 01:58:05 +02:00
applying = true;
photoCropView.onDisappear();
}
centerImage.setParentView(null);
centerImage.setOrientation(0, true);
2017-03-31 01:58:05 +02:00
ignoreDidSetImage = true;
centerImage.setImageBitmap(bitmap);
2017-03-31 01:58:05 +02:00
ignoreDidSetImage = false;
centerImage.setParentView(containerView);
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
setCropBitmap();
}
}
}
}
2017-12-08 18:35:59 +01:00
private void setPhotoChecked() {
if (placeProvider != null) {
2019-01-23 18:03:33 +01:00
if (placeProvider.getSelectedPhotos() != null && maxSelectedPhotos > 0 && placeProvider.getSelectedPhotos().size() > maxSelectedPhotos && !placeProvider.isPhotoChecked(currentIndex)) {
2018-07-30 04:07:02 +02:00
return;
}
2017-12-08 18:35:59 +01:00
int num = placeProvider.setPhotoChecked(currentIndex, getCurrentVideoEditedInfo());
boolean checked = placeProvider.isPhotoChecked(currentIndex);
checkImageView.setChecked(checked, true);
if (num >= 0) {
if (placeProvider.allowGroupPhotos()) {
num++;
}
if (checked) {
selectedPhotosAdapter.notifyItemInserted(num);
selectedPhotosListView.smoothScrollToPosition(num);
} else {
selectedPhotosAdapter.notifyItemRemoved(num);
}
}
updateSelectedCount();
}
}
2019-01-23 18:03:33 +01:00
private void createCropView() {
if (photoCropView != null) {
return;
}
photoCropView = new PhotoCropView(actvityContext);
photoCropView.setVisibility(View.GONE);
int index = containerView.indexOfChild(pickerViewSendButton);
containerView.addView(photoCropView, index - 1, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT, 0, 0, 0, 48));
photoCropView.setDelegate(reset -> resetButton.setVisibility(reset ? View.GONE : View.VISIBLE));
}
private void switchToEditMode(final int mode) {
2017-03-31 01:58:05 +02:00
if (currentEditMode == mode || centerImage.getBitmap() == null || changeModeAnimation != null || imageMoveAnimation != null || photoProgressViews[0].backgroundState != -1 || captionEditText.getTag() != null) {
return;
}
2019-01-23 18:03:33 +01:00
if (mode == 0) { // no edit mode
Bitmap bitmap = centerImage.getBitmap();
if (bitmap != null) {
int bitmapWidth = centerImage.getBitmapWidth();
int bitmapHeight = centerImage.getBitmapHeight();
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
float newScaleX = (float) getContainerViewWidth(0) / (float) bitmapWidth;
float newScaleY = (float) getContainerViewHeight(0) / (float) bitmapHeight;
float scale = scaleX > scaleY ? scaleY : scaleX;
float newScale = newScaleX > newScaleY ? newScaleY : newScaleX;
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
setCropTranslations(true);
2017-03-31 01:58:05 +02:00
} else {
animateToScale = newScale / scale;
2019-01-23 18:03:33 +01:00
animateToX = 0;
translationX = getLeftInset() / 2 - getRightInset() / 2;
if (currentEditMode == 1) {
animateToY = AndroidUtilities.dp(24 + 34);
} else if (currentEditMode == 2) {
animateToY = AndroidUtilities.dp(92);
} else if (currentEditMode == 3) {
animateToY = AndroidUtilities.dp(44);
}
if (Build.VERSION.SDK_INT >= 21) {
animateToY -= AndroidUtilities.statusBarHeight / 2;
}
animationStartTime = System.currentTimeMillis();
zoomAnimation = true;
2017-03-31 01:58:05 +02:00
}
}
2019-01-23 18:03:33 +01:00
padImageForHorizontalInsets = false;
imageMoveAnimation = new AnimatorSet();
2019-01-23 18:03:33 +01:00
ArrayList<Animator> animators = new ArrayList<>(4);
if (currentEditMode == 1) {
2019-01-23 18:03:33 +01:00
animators.add(ObjectAnimator.ofFloat(editorDoneLayout, View.TRANSLATION_Y, AndroidUtilities.dp(48)));
animators.add(ObjectAnimator.ofFloat(PhotoViewer.this, AnimationProperties.PHOTO_VIEWER_ANIMATION_VALUE, 0, 1));
animators.add(ObjectAnimator.ofFloat(photoCropView, View.ALPHA, 0));
} else if (currentEditMode == 2) {
photoFilterView.shutdown();
2019-01-23 18:03:33 +01:00
animators.add(ObjectAnimator.ofFloat(photoFilterView.getToolsView(), View.TRANSLATION_Y, AndroidUtilities.dp(186)));
animators.add(ObjectAnimator.ofFloat(PhotoViewer.this, AnimationProperties.PHOTO_VIEWER_ANIMATION_VALUE, 0, 1));
2016-10-11 13:57:01 +02:00
} else if (currentEditMode == 3) {
photoPaintView.shutdown();
2019-01-23 18:03:33 +01:00
animators.add(ObjectAnimator.ofFloat(photoPaintView.getToolsView(), View.TRANSLATION_Y, AndroidUtilities.dp(126)));
animators.add(ObjectAnimator.ofFloat(photoPaintView.getColorPicker(), View.TRANSLATION_Y, AndroidUtilities.dp(126)));
animators.add(ObjectAnimator.ofFloat(PhotoViewer.this, AnimationProperties.PHOTO_VIEWER_ANIMATION_VALUE, 0, 1));
}
2019-01-23 18:03:33 +01:00
imageMoveAnimation.playTogether(animators);
imageMoveAnimation.setDuration(200);
2017-03-31 01:58:05 +02:00
imageMoveAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (currentEditMode == 1) {
editorDoneLayout.setVisibility(View.GONE);
photoCropView.setVisibility(View.GONE);
} else if (currentEditMode == 2) {
containerView.removeView(photoFilterView);
photoFilterView = null;
2016-10-11 13:57:01 +02:00
} else if (currentEditMode == 3) {
containerView.removeView(photoPaintView);
photoPaintView = null;
}
imageMoveAnimation = null;
currentEditMode = mode;
2017-03-31 01:58:05 +02:00
applying = false;
2019-01-23 18:03:33 +01:00
if (sendPhotoType != SELECT_TYPE_AVATAR) {
animateToScale = 1;
animateToX = 0;
animateToY = 0;
scale = 1;
}
updateMinMax(scale);
containerView.invalidate();
AnimatorSet animatorSet = new AnimatorSet();
ArrayList<Animator> arrayList = new ArrayList<>();
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(pickerView, View.TRANSLATION_Y, 0));
arrayList.add(ObjectAnimator.ofFloat(pickerViewSendButton, View.TRANSLATION_Y, 0));
if (sendPhotoType != SELECT_TYPE_AVATAR) {
arrayList.add(ObjectAnimator.ofFloat(actionBar, View.TRANSLATION_Y, 0));
}
if (needCaptionLayout) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(captionTextView, View.TRANSLATION_Y, 0));
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(checkImageView, View.ALPHA, 1));
arrayList.add(ObjectAnimator.ofFloat(photosCounterView, View.ALPHA, 1));
} else if (sendPhotoType == SELECT_TYPE_AVATAR) {
arrayList.add(ObjectAnimator.ofFloat(photoCropView, View.ALPHA, 1));
}
2018-07-30 04:07:02 +02:00
if (cameraItem.getTag() != null) {
cameraItem.setVisibility(View.VISIBLE);
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(cameraItem, View.ALPHA, 1));
2018-07-30 04:07:02 +02:00
}
animatorSet.playTogether(arrayList);
animatorSet.setDuration(200);
2017-03-31 01:58:05 +02:00
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
pickerView.setVisibility(View.VISIBLE);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setVisibility(View.VISIBLE);
actionBar.setVisibility(View.VISIBLE);
if (needCaptionLayout) {
captionTextView.setVisibility(captionTextView.getTag() != null ? View.VISIBLE : View.INVISIBLE);
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4 || (sendPhotoType == 2 || sendPhotoType == 5) && imagesArrLocals.size() > 1) {
checkImageView.setVisibility(View.VISIBLE);
photosCounterView.setVisibility(View.VISIBLE);
2019-01-23 18:03:33 +01:00
} else if (sendPhotoType == SELECT_TYPE_AVATAR) {
setCropTranslations(false);
}
}
});
animatorSet.start();
}
});
imageMoveAnimation.start();
2019-01-23 18:03:33 +01:00
} else if (mode == 1) { // crop
createCropView();
2017-03-31 01:58:05 +02:00
photoCropView.onAppear();
2016-10-11 13:57:01 +02:00
editorDoneLayout.doneButton.setText(LocaleController.getString("Crop", R.string.Crop));
2017-03-31 01:58:05 +02:00
editorDoneLayout.doneButton.setTextColor(0xff51bdf3);
changeModeAnimation = new AnimatorSet();
ArrayList<Animator> arrayList = new ArrayList<>();
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(pickerView, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
arrayList.add(ObjectAnimator.ofFloat(pickerViewSendButton, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
arrayList.add(ObjectAnimator.ofFloat(actionBar, View.TRANSLATION_Y, 0, -actionBar.getHeight()));
if (needCaptionLayout) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(captionTextView, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(checkImageView, View.ALPHA, 1, 0));
arrayList.add(ObjectAnimator.ofFloat(photosCounterView, View.ALPHA, 1, 0));
}
2017-12-08 18:35:59 +01:00
if (selectedPhotosListView.getVisibility() == View.VISIBLE) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(selectedPhotosListView, View.ALPHA, 1, 0));
2017-12-08 18:35:59 +01:00
}
2018-07-30 04:07:02 +02:00
if (cameraItem.getTag() != null) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(cameraItem, View.ALPHA, 1, 0));
2018-07-30 04:07:02 +02:00
}
changeModeAnimation.playTogether(arrayList);
changeModeAnimation.setDuration(200);
2017-03-31 01:58:05 +02:00
changeModeAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
changeModeAnimation = null;
pickerView.setVisibility(View.GONE);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setVisibility(View.GONE);
cameraItem.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
selectedPhotosListView.setVisibility(View.GONE);
selectedPhotosListView.setAlpha(0.0f);
selectedPhotosListView.setTranslationY(-AndroidUtilities.dp(10));
photosCounterView.setRotationX(0.0f);
selectedPhotosListView.setEnabled(false);
isPhotosListViewVisible = false;
if (needCaptionLayout) {
captionTextView.setVisibility(View.INVISIBLE);
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4 || (sendPhotoType == 2 || sendPhotoType == 5) && imagesArrLocals.size() > 1) {
checkImageView.setVisibility(View.GONE);
photosCounterView.setVisibility(View.GONE);
}
2017-03-31 01:58:05 +02:00
final Bitmap bitmap = centerImage.getBitmap();
if (bitmap != null) {
2019-01-23 18:03:33 +01:00
photoCropView.setBitmap(bitmap, centerImage.getOrientation(), sendPhotoType != SELECT_TYPE_AVATAR, false);
photoCropView.onDisappear();
int bitmapWidth = centerImage.getBitmapWidth();
int bitmapHeight = centerImage.getBitmapHeight();
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
float newScaleX = (float) getContainerViewWidth(1) / (float) bitmapWidth;
float newScaleY = (float) getContainerViewHeight(1) / (float) bitmapHeight;
float scale = scaleX > scaleY ? scaleY : scaleX;
float newScale = newScaleX > newScaleY ? newScaleY : newScaleX;
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
2017-03-31 01:58:05 +02:00
float minSide = Math.min(getContainerViewWidth(1), getContainerViewHeight(1));
newScaleX = minSide / (float) bitmapWidth;
newScaleY = minSide / (float) bitmapHeight;
newScale = newScaleX > newScaleY ? newScaleX : newScaleY;
}
animateToScale = newScale / scale;
2019-01-23 18:03:33 +01:00
animateToX = getLeftInset() / 2 - getRightInset() / 2;
2017-03-31 01:58:05 +02:00
animateToY = -AndroidUtilities.dp(24 + 32) + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight / 2 : 0);
animationStartTime = System.currentTimeMillis();
zoomAnimation = true;
}
imageMoveAnimation = new AnimatorSet();
imageMoveAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(editorDoneLayout, View.TRANSLATION_Y, AndroidUtilities.dp(48), 0),
ObjectAnimator.ofFloat(PhotoViewer.this, AnimationProperties.PHOTO_VIEWER_ANIMATION_VALUE, 0, 1),
ObjectAnimator.ofFloat(photoCropView, View.ALPHA, 0, 1)
);
imageMoveAnimation.setDuration(200);
2017-03-31 01:58:05 +02:00
imageMoveAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
editorDoneLayout.setVisibility(View.VISIBLE);
photoCropView.setVisibility(View.VISIBLE);
}
@Override
public void onAnimationEnd(Animator animation) {
2017-03-31 01:58:05 +02:00
photoCropView.onAppeared();
imageMoveAnimation = null;
currentEditMode = mode;
animateToScale = 1;
animateToX = 0;
animateToY = 0;
scale = 1;
updateMinMax(scale);
2019-01-23 18:03:33 +01:00
padImageForHorizontalInsets = true;
containerView.invalidate();
}
});
imageMoveAnimation.start();
}
});
changeModeAnimation.start();
2019-01-23 18:03:33 +01:00
} else if (mode == 2) { // filter
if (photoFilterView == null) {
2017-12-08 18:35:59 +01:00
MediaController.SavedFilterState state = null;
Bitmap bitmap;
String originalPath = null;
int orientation = 0;
if (!imagesArrLocals.isEmpty()) {
Object object = imagesArrLocals.get(currentIndex);
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry entry = (MediaController.PhotoEntry) object;
if (entry.imagePath == null) {
originalPath = entry.path;
state = entry.savedFilterState;
}
orientation = entry.orientation;
} else if (object instanceof MediaController.SearchImage) {
MediaController.SearchImage entry = (MediaController.SearchImage) object;
state = entry.savedFilterState;
originalPath = entry.imageUrl;
}
}
if (state == null) {
bitmap = centerImage.getBitmap();
orientation = centerImage.getOrientation();
} else {
bitmap = BitmapFactory.decodeFile(originalPath);
}
photoFilterView = new PhotoFilterView(parentActivity, bitmap, orientation, state);
2015-06-29 19:12:11 +02:00
containerView.addView(photoFilterView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT));
2019-01-23 18:03:33 +01:00
photoFilterView.getDoneTextView().setOnClickListener(v -> {
applyCurrentEditMode();
switchToEditMode(0);
});
2019-01-23 18:03:33 +01:00
photoFilterView.getCancelTextView().setOnClickListener(v -> {
if (photoFilterView.hasChanges()) {
if (parentActivity == null) {
return;
}
2019-01-23 18:03:33 +01:00
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setMessage(LocaleController.getString("DiscardChanges", R.string.DiscardChanges));
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), (dialogInterface, i) -> switchToEditMode(0));
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showAlertDialog(builder);
} else {
switchToEditMode(0);
}
});
photoFilterView.getToolsView().setTranslationY(AndroidUtilities.dp(186));
}
changeModeAnimation = new AnimatorSet();
ArrayList<Animator> arrayList = new ArrayList<>();
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(pickerView, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
arrayList.add(ObjectAnimator.ofFloat(pickerViewSendButton, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
arrayList.add(ObjectAnimator.ofFloat(actionBar, View.TRANSLATION_Y, 0, -actionBar.getHeight()));
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(checkImageView, View.ALPHA, 1, 0));
arrayList.add(ObjectAnimator.ofFloat(photosCounterView, View.ALPHA, 1, 0));
} else if (sendPhotoType == SELECT_TYPE_AVATAR) {
arrayList.add(ObjectAnimator.ofFloat(photoCropView, View.ALPHA, 1, 0));
}
2017-12-08 18:35:59 +01:00
if (selectedPhotosListView.getVisibility() == View.VISIBLE) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(selectedPhotosListView, View.ALPHA, 1, 0));
2017-12-08 18:35:59 +01:00
}
2018-07-30 04:07:02 +02:00
if (cameraItem.getTag() != null) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(cameraItem, View.ALPHA, 1, 0));
2018-07-30 04:07:02 +02:00
}
changeModeAnimation.playTogether(arrayList);
changeModeAnimation.setDuration(200);
2017-03-31 01:58:05 +02:00
changeModeAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
changeModeAnimation = null;
pickerView.setVisibility(View.GONE);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setVisibility(View.GONE);
actionBar.setVisibility(View.GONE);
2018-07-30 04:07:02 +02:00
cameraItem.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
selectedPhotosListView.setVisibility(View.GONE);
selectedPhotosListView.setAlpha(0.0f);
selectedPhotosListView.setTranslationY(-AndroidUtilities.dp(10));
photosCounterView.setRotationX(0.0f);
selectedPhotosListView.setEnabled(false);
isPhotosListViewVisible = false;
if (needCaptionLayout) {
captionTextView.setVisibility(View.INVISIBLE);
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4 || (sendPhotoType == 2 || sendPhotoType == 5) && imagesArrLocals.size() > 1) {
checkImageView.setVisibility(View.GONE);
photosCounterView.setVisibility(View.GONE);
}
Bitmap bitmap = centerImage.getBitmap();
if (bitmap != null) {
int bitmapWidth = centerImage.getBitmapWidth();
int bitmapHeight = centerImage.getBitmapHeight();
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
float newScaleX = (float) getContainerViewWidth(2) / (float) bitmapWidth;
float newScaleY = (float) getContainerViewHeight(2) / (float) bitmapHeight;
float scale = scaleX > scaleY ? scaleY : scaleX;
float newScale = newScaleX > newScaleY ? newScaleY : newScaleX;
animateToScale = newScale / scale;
2019-01-23 18:03:33 +01:00
animateToX = getLeftInset() / 2 - getRightInset() / 2;
animateToY = -AndroidUtilities.dp(92) + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight / 2 : 0);
animationStartTime = System.currentTimeMillis();
zoomAnimation = true;
}
imageMoveAnimation = new AnimatorSet();
imageMoveAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(PhotoViewer.this, AnimationProperties.PHOTO_VIEWER_ANIMATION_VALUE, 0, 1),
ObjectAnimator.ofFloat(photoFilterView.getToolsView(), View.TRANSLATION_Y, AndroidUtilities.dp(186), 0)
);
imageMoveAnimation.setDuration(200);
2017-03-31 01:58:05 +02:00
imageMoveAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
}
@Override
public void onAnimationEnd(Animator animation) {
photoFilterView.init();
imageMoveAnimation = null;
currentEditMode = mode;
animateToScale = 1;
animateToX = 0;
animateToY = 0;
scale = 1;
updateMinMax(scale);
2019-01-23 18:03:33 +01:00
padImageForHorizontalInsets = true;
containerView.invalidate();
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
photoCropView.reset();
}
}
});
imageMoveAnimation.start();
}
});
changeModeAnimation.start();
2019-01-23 18:03:33 +01:00
} else if (mode == 3) { // painting/text/masks
2016-10-11 13:57:01 +02:00
if (photoPaintView == null) {
photoPaintView = new PhotoPaintView(parentActivity, centerImage.getBitmap(), centerImage.getOrientation());
containerView.addView(photoPaintView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT));
2019-01-23 18:03:33 +01:00
photoPaintView.getDoneTextView().setOnClickListener(v -> {
applyCurrentEditMode();
switchToEditMode(0);
2016-10-11 13:57:01 +02:00
});
2019-01-23 18:03:33 +01:00
photoPaintView.getCancelTextView().setOnClickListener(v -> photoPaintView.maybeShowDismissalAlert(PhotoViewer.this, parentActivity, () -> switchToEditMode(0)));
photoPaintView.getColorPicker().setTranslationY(AndroidUtilities.dp(126));
2016-10-11 13:57:01 +02:00
photoPaintView.getToolsView().setTranslationY(AndroidUtilities.dp(126));
}
changeModeAnimation = new AnimatorSet();
ArrayList<Animator> arrayList = new ArrayList<>();
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(pickerView, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
arrayList.add(ObjectAnimator.ofFloat(pickerViewSendButton, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
arrayList.add(ObjectAnimator.ofFloat(actionBar, View.TRANSLATION_Y, 0, -actionBar.getHeight()));
2016-10-11 13:57:01 +02:00
if (needCaptionLayout) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(captionTextView, View.TRANSLATION_Y, 0, AndroidUtilities.dp(96)));
2016-10-11 13:57:01 +02:00
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(checkImageView, View.ALPHA, 1, 0));
arrayList.add(ObjectAnimator.ofFloat(photosCounterView, View.ALPHA, 1, 0));
} else if (sendPhotoType == SELECT_TYPE_AVATAR) {
arrayList.add(ObjectAnimator.ofFloat(photoCropView, View.ALPHA, 1, 0));
2016-10-11 13:57:01 +02:00
}
2017-12-08 18:35:59 +01:00
if (selectedPhotosListView.getVisibility() == View.VISIBLE) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(selectedPhotosListView, View.ALPHA, 1, 0));
2017-12-08 18:35:59 +01:00
}
2018-07-30 04:07:02 +02:00
if (cameraItem.getTag() != null) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(cameraItem, View.ALPHA, 1, 0));
2018-07-30 04:07:02 +02:00
}
2016-10-11 13:57:01 +02:00
changeModeAnimation.playTogether(arrayList);
changeModeAnimation.setDuration(200);
2017-03-31 01:58:05 +02:00
changeModeAnimation.addListener(new AnimatorListenerAdapter() {
2016-10-11 13:57:01 +02:00
@Override
public void onAnimationEnd(Animator animation) {
changeModeAnimation = null;
pickerView.setVisibility(View.GONE);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setVisibility(View.GONE);
cameraItem.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
selectedPhotosListView.setVisibility(View.GONE);
selectedPhotosListView.setAlpha(0.0f);
selectedPhotosListView.setTranslationY(-AndroidUtilities.dp(10));
photosCounterView.setRotationX(0.0f);
selectedPhotosListView.setEnabled(false);
isPhotosListViewVisible = false;
2016-10-11 13:57:01 +02:00
if (needCaptionLayout) {
captionTextView.setVisibility(View.INVISIBLE);
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4 || (sendPhotoType == 2 || sendPhotoType == 5) && imagesArrLocals.size() > 1) {
2016-10-11 13:57:01 +02:00
checkImageView.setVisibility(View.GONE);
photosCounterView.setVisibility(View.GONE);
2016-10-11 13:57:01 +02:00
}
Bitmap bitmap = centerImage.getBitmap();
if (bitmap != null) {
int bitmapWidth = centerImage.getBitmapWidth();
int bitmapHeight = centerImage.getBitmapHeight();
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
float newScaleX = (float) getContainerViewWidth(3) / (float) bitmapWidth;
float newScaleY = (float) getContainerViewHeight(3) / (float) bitmapHeight;
float scale = scaleX > scaleY ? scaleY : scaleX;
float newScale = newScaleX > newScaleY ? newScaleY : newScaleX;
animateToScale = newScale / scale;
2019-01-23 18:03:33 +01:00
animateToX = getLeftInset() / 2 - getRightInset() / 2;
animateToY = -AndroidUtilities.dp(44) + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight / 2 : 0);
2016-10-11 13:57:01 +02:00
animationStartTime = System.currentTimeMillis();
zoomAnimation = true;
}
imageMoveAnimation = new AnimatorSet();
imageMoveAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(PhotoViewer.this, AnimationProperties.PHOTO_VIEWER_ANIMATION_VALUE, 0, 1),
ObjectAnimator.ofFloat(photoPaintView.getColorPicker(), View.TRANSLATION_Y, AndroidUtilities.dp(126), 0),
ObjectAnimator.ofFloat(photoPaintView.getToolsView(), View.TRANSLATION_Y, AndroidUtilities.dp(126), 0)
2016-10-11 13:57:01 +02:00
);
imageMoveAnimation.setDuration(200);
2017-03-31 01:58:05 +02:00
imageMoveAnimation.addListener(new AnimatorListenerAdapter() {
2016-10-11 13:57:01 +02:00
@Override
public void onAnimationStart(Animator animation) {
}
@Override
public void onAnimationEnd(Animator animation) {
photoPaintView.init();
imageMoveAnimation = null;
currentEditMode = mode;
animateToScale = 1;
animateToX = 0;
animateToY = 0;
scale = 1;
updateMinMax(scale);
2019-01-23 18:03:33 +01:00
padImageForHorizontalInsets = true;
2016-10-11 13:57:01 +02:00
containerView.invalidate();
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
photoCropView.reset();
}
2016-10-11 13:57:01 +02:00
}
});
imageMoveAnimation.start();
}
});
changeModeAnimation.start();
}
}
2015-01-02 23:15:07 +01:00
private void toggleCheckImageView(boolean show) {
AnimatorSet animatorSet = new AnimatorSet();
ArrayList<Animator> arrayList = new ArrayList<>();
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(pickerView, View.ALPHA, show ? 1.0f : 0.0f));
arrayList.add(ObjectAnimator.ofFloat(pickerViewSendButton, View.ALPHA, show ? 1.0f : 0.0f));
if (needCaptionLayout) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(captionTextView, View.ALPHA, show ? 1.0f : 0.0f));
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(checkImageView, View.ALPHA, show ? 1.0f : 0.0f));
arrayList.add(ObjectAnimator.ofFloat(photosCounterView, View.ALPHA, show ? 1.0f : 0.0f));
}
animatorSet.playTogether(arrayList);
2015-01-02 23:15:07 +01:00
animatorSet.setDuration(200);
animatorSet.start();
}
2018-07-30 04:07:02 +02:00
private void toggleMiniProgressInternal(final boolean show) {
if (show) {
miniProgressView.setVisibility(View.VISIBLE);
}
miniProgressAnimator = new AnimatorSet();
2019-01-23 18:03:33 +01:00
miniProgressAnimator.playTogether(ObjectAnimator.ofFloat(miniProgressView, View.ALPHA, show ? 1.0f : 0.0f));
2018-07-30 04:07:02 +02:00
miniProgressAnimator.setDuration(200);
miniProgressAnimator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animation.equals(miniProgressAnimator)) {
if (!show) {
miniProgressView.setVisibility(View.INVISIBLE);
}
miniProgressAnimator = null;
}
}
@Override
public void onAnimationCancel(Animator animation) {
if (animation.equals(miniProgressAnimator)) {
miniProgressAnimator = null;
}
}
});
miniProgressAnimator.start();
}
private void toggleMiniProgress(final boolean show, final boolean animated) {
if (animated) {
toggleMiniProgressInternal(show);
if (show) {
if (miniProgressAnimator != null) {
miniProgressAnimator.cancel();
miniProgressAnimator = null;
}
AndroidUtilities.cancelRunOnUIThread(miniProgressShowRunnable);
if (firstAnimationDelay) {
firstAnimationDelay = false;
toggleMiniProgressInternal(true);
} else {
AndroidUtilities.runOnUIThread(miniProgressShowRunnable, 500);
}
} else {
AndroidUtilities.cancelRunOnUIThread(miniProgressShowRunnable);
if (miniProgressAnimator != null) {
miniProgressAnimator.cancel();
toggleMiniProgressInternal(false);
}
}
} else {
if (miniProgressAnimator != null) {
miniProgressAnimator.cancel();
miniProgressAnimator = null;
}
miniProgressView.setAlpha(show ? 1.0f : 0.0f);
miniProgressView.setVisibility(show ? View.VISIBLE : View.INVISIBLE);
}
}
private void toggleActionBar(final boolean show, final boolean animated) {
if (actionBarAnimator != null) {
actionBarAnimator.cancel();
}
if (show) {
actionBar.setVisibility(View.VISIBLE);
2018-07-30 04:07:02 +02:00
if (bottomLayout.getTag() != null) {
bottomLayout.setVisibility(View.VISIBLE);
2018-07-30 04:07:02 +02:00
}
if (captionTextView.getTag() != null) {
captionTextView.setVisibility(View.VISIBLE);
}
}
isActionBarVisible = show;
2019-01-23 18:03:33 +01:00
if (Build.VERSION.SDK_INT >= 21 && sendPhotoType != SELECT_TYPE_AVATAR) {
int flags = View.SYSTEM_UI_FLAG_FULLSCREEN | (containerView.getPaddingLeft() > 0 || containerView.getPaddingRight() > 0 ? (View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) : 0);
2018-07-30 04:07:02 +02:00
if (show) {
2019-01-23 18:03:33 +01:00
containerView.setSystemUiVisibility(containerView.getSystemUiVisibility() & ~flags);
2018-07-30 04:07:02 +02:00
} else {
2019-01-23 18:03:33 +01:00
containerView.setSystemUiVisibility(containerView.getSystemUiVisibility() | flags);
2018-07-30 04:07:02 +02:00
}
}
if (animated) {
ArrayList<Animator> arrayList = new ArrayList<>();
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(actionBar, View.ALPHA, show ? 1.0f : 0.0f));
2018-07-30 04:07:02 +02:00
if (bottomLayout != null) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(bottomLayout, View.ALPHA, show ? 1.0f : 0.0f));
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(groupedPhotosListView, View.ALPHA, show ? 1.0f : 0.0f));
if (captionTextView.getTag() != null) {
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(captionTextView, View.ALPHA, show ? 1.0f : 0.0f));
}
2018-07-30 04:07:02 +02:00
actionBarAnimator = new AnimatorSet();
actionBarAnimator.playTogether(arrayList);
actionBarAnimator.setDuration(200);
actionBarAnimator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animation.equals(actionBarAnimator)) {
if (!show) {
actionBar.setVisibility(View.INVISIBLE);
if (bottomLayout.getTag() != null) {
bottomLayout.setVisibility(View.INVISIBLE);
}
if (captionTextView.getTag() != null) {
captionTextView.setVisibility(View.INVISIBLE);
2015-02-01 19:51:02 +01:00
}
}
2018-07-30 04:07:02 +02:00
actionBarAnimator = null;
}
2018-07-30 04:07:02 +02:00
}
2018-07-30 04:07:02 +02:00
@Override
public void onAnimationCancel(Animator animation) {
if (animation.equals(actionBarAnimator)) {
actionBarAnimator = null;
}
}
});
actionBarAnimator.start();
} else {
actionBar.setAlpha(show ? 1.0f : 0.0f);
bottomLayout.setAlpha(show ? 1.0f : 0.0f);
2017-12-08 18:35:59 +01:00
groupedPhotosListView.setAlpha(show ? 1.0f : 0.0f);
2018-07-30 04:07:02 +02:00
captionTextView.setAlpha(show ? 1.0f : 0.0f);
}
}
2017-12-08 18:35:59 +01:00
private void togglePhotosListView(boolean show, final boolean animated) {
if (show == isPhotosListViewVisible) {
return;
}
if (show) {
selectedPhotosListView.setVisibility(View.VISIBLE);
}
isPhotosListViewVisible = show;
selectedPhotosListView.setEnabled(show);
if (animated) {
ArrayList<Animator> arrayList = new ArrayList<>();
2019-01-23 18:03:33 +01:00
arrayList.add(ObjectAnimator.ofFloat(selectedPhotosListView, View.ALPHA, show ? 1.0f : 0.0f));
arrayList.add(ObjectAnimator.ofFloat(selectedPhotosListView, View.TRANSLATION_Y, show ? 0 : -AndroidUtilities.dp(10)));
arrayList.add(ObjectAnimator.ofFloat(photosCounterView, View.ROTATION_X, show ? 1.0f : 0.0f));
2017-12-08 18:35:59 +01:00
currentListViewAnimation = new AnimatorSet();
currentListViewAnimation.playTogether(arrayList);
if (!show) {
currentListViewAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (currentListViewAnimation != null && currentListViewAnimation.equals(animation)) {
selectedPhotosListView.setVisibility(View.GONE);
currentListViewAnimation = null;
}
}
});
}
currentListViewAnimation.setDuration(200);
currentListViewAnimation.start();
} else {
selectedPhotosListView.setAlpha(show ? 1.0f : 0.0f);
selectedPhotosListView.setTranslationY(show ? 0 : -AndroidUtilities.dp(10));
photosCounterView.setRotationX(show ? 1.0f : 0.0f);
if (!show) {
selectedPhotosListView.setVisibility(View.GONE);
}
}
}
2014-10-28 18:07:44 +01:00
private String getFileName(int index) {
if (index < 0) {
return null;
}
2018-07-30 04:07:02 +02:00
if (!secureDocuments.isEmpty()) {
if (index >= secureDocuments.size()) {
return null;
}
SecureDocument location = secureDocuments.get(index);
return location.secureFile.dc_id + "_" + location.secureFile.id + ".jpg";
} else if (!imagesArrLocations.isEmpty() || !imagesArr.isEmpty()) {
2015-01-02 23:15:07 +01:00
if (!imagesArrLocations.isEmpty()) {
2016-03-06 02:49:31 +01:00
if (index >= imagesArrLocations.size()) {
return null;
}
TLRPC.FileLocation location = imagesArrLocations.get(index);
return location.volume_id + "_" + location.local_id + ".jpg";
2015-01-02 23:15:07 +01:00
} else if (!imagesArr.isEmpty()) {
2016-03-06 02:49:31 +01:00
if (index >= imagesArr.size()) {
return null;
2015-01-02 23:15:07 +01:00
}
2016-03-06 02:49:31 +01:00
return FileLoader.getMessageFileName(imagesArr.get(index).messageOwner);
2015-01-02 23:15:07 +01:00
}
} else if (!imagesArrLocals.isEmpty()) {
if (index >= imagesArrLocals.size()) {
return null;
}
Object object = imagesArrLocals.get(index);
if (object instanceof MediaController.SearchImage) {
MediaController.SearchImage searchImage = ((MediaController.SearchImage) object);
2018-07-30 04:07:02 +02:00
return searchImage.getAttachName();
2016-10-11 13:57:01 +02:00
} else if (object instanceof TLRPC.BotInlineResult) {
TLRPC.BotInlineResult botInlineResult = (TLRPC.BotInlineResult) object;
if (botInlineResult.document != null) {
return FileLoader.getAttachFileName(botInlineResult.document);
} else if (botInlineResult.photo != null) {
TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(botInlineResult.photo.sizes, AndroidUtilities.getPhotoSize());
return FileLoader.getAttachFileName(sizeFull);
2018-07-30 04:07:02 +02:00
} else if (botInlineResult.content instanceof TLRPC.TL_webDocument) {
2019-03-03 21:40:48 +01:00
return Utilities.MD5(botInlineResult.content.url) + "." + ImageLoader.getHttpUrlExtension(botInlineResult.content.url, FileLoader.getMimeTypePart(botInlineResult.content.mime_type));
2016-10-11 13:57:01 +02:00
}
}
}
return null;
}
2017-03-31 01:58:05 +02:00
private TLObject getFileLocation(int index, int size[]) {
if (index < 0) {
return null;
}
2018-07-30 04:07:02 +02:00
if (!secureDocuments.isEmpty()) {
if (index >= secureDocuments.size()) {
return null;
}
if (size != null) {
size[0] = secureDocuments.get(index).secureFile.size;
}
return secureDocuments.get(index);
} else if (!imagesArrLocations.isEmpty()) {
if (index >= imagesArrLocations.size()) {
return null;
}
2018-07-30 04:07:02 +02:00
if (size != null) {
size[0] = imagesArrLocationsSizes.get(index);
}
return imagesArrLocations.get(index);
} else if (!imagesArr.isEmpty()) {
if (index >= imagesArr.size()) {
return null;
}
MessageObject message = imagesArr.get(index);
if (message.messageOwner instanceof TLRPC.TL_messageService) {
if (message.messageOwner.action instanceof TLRPC.TL_messageActionUserUpdatedPhoto) {
return message.messageOwner.action.newUserPhoto.photo_big;
} else {
2015-02-01 19:51:02 +01:00
TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(message.photoThumbs, AndroidUtilities.getPhotoSize());
if (sizeFull != null) {
2018-07-30 04:07:02 +02:00
if (size != null) {
size[0] = sizeFull.size;
if (size[0] == 0) {
size[0] = -1;
}
2014-06-11 02:22:42 +02:00
}
2019-01-23 18:03:33 +01:00
return sizeFull;
2018-07-30 04:07:02 +02:00
} else if (size != null) {
2014-06-11 02:22:42 +02:00
size[0] = -1;
}
}
2015-08-13 11:23:31 +02:00
} else if (message.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto && message.messageOwner.media.photo != null || message.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage && message.messageOwner.media.webpage != null) {
2017-12-08 18:35:59 +01:00
TLRPC.FileLocation location;
2015-02-01 19:51:02 +01:00
TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(message.photoThumbs, AndroidUtilities.getPhotoSize());
if (sizeFull != null) {
2018-07-30 04:07:02 +02:00
if (size != null) {
size[0] = sizeFull.size;
if (size[0] == 0) {
size[0] = -1;
}
2014-06-11 02:22:42 +02:00
}
2019-01-23 18:03:33 +01:00
return sizeFull;
2018-07-30 04:07:02 +02:00
} else if (size != null) {
2014-06-11 02:22:42 +02:00
size[0] = -1;
}
2017-03-31 01:58:05 +02:00
} else if (message.messageOwner.media instanceof TLRPC.TL_messageMediaInvoice) {
return ((TLRPC.TL_messageMediaInvoice) message.messageOwner.media).photo;
2019-01-23 18:03:33 +01:00
} else if (message.getDocument() != null && MessageObject.isDocumentHasThumb(message.getDocument())) {
TLRPC.PhotoSize thumb = FileLoader.getClosestPhotoSizeWithSize(message.getDocument().thumbs, 90);
2018-07-30 04:07:02 +02:00
if (size != null) {
2019-01-23 18:03:33 +01:00
size[0] = thumb.size;
2018-07-30 04:07:02 +02:00
if (size[0] == 0) {
size[0] = -1;
}
2014-06-11 02:22:42 +02:00
}
2019-01-23 18:03:33 +01:00
return thumb;
}
}
return null;
}
2014-06-12 03:13:15 +02:00
private void updateSelectedCount() {
if (placeProvider == null) {
return;
}
2017-12-08 18:35:59 +01:00
int count = placeProvider.getSelectedCount();
photosCounterView.setCount(count);
if (count == 0) {
togglePhotosListView(false, true);
}
2014-06-12 03:13:15 +02:00
}
2018-07-30 04:07:02 +02:00
private void onPhotoShow(final MessageObject messageObject, final TLRPC.FileLocation fileLocation, final ArrayList<MessageObject> messages, final ArrayList<SecureDocument> documents, final ArrayList<Object> photos, int index, final PlaceProviderObject object) {
classGuid = ConnectionsManager.generateClassGuid();
currentMessageObject = null;
currentFileLocation = null;
2018-07-30 04:07:02 +02:00
currentSecureDocument = null;
2014-06-12 03:13:15 +02:00
currentPathObject = null;
2017-07-08 18:32:04 +02:00
fromCamera = false;
2016-10-11 13:57:01 +02:00
currentBotInlineResult = null;
currentIndex = -1;
2014-10-28 18:07:44 +01:00
currentFileNames[0] = null;
currentFileNames[1] = null;
currentFileNames[2] = null;
avatarsDialogId = 0;
totalImagesCount = 0;
2015-11-26 22:04:02 +01:00
totalImagesCountMerge = 0;
currentEditMode = 0;
isFirstLoading = true;
needSearchImageInArr = false;
loadingMoreImages = false;
2015-11-26 22:04:02 +01:00
endReached[0] = false;
endReached[1] = mergeDialogId == 0;
opennedFromMedia = false;
needCaptionLayout = false;
2018-07-30 04:07:02 +02:00
containerView.setTag(1);
isCurrentVideo = false;
imagesArr.clear();
imagesArrLocations.clear();
imagesArrLocationsSizes.clear();
avatarsArr.clear();
2018-07-30 04:07:02 +02:00
secureDocuments.clear();
2014-06-12 03:13:15 +02:00
imagesArrLocals.clear();
2015-11-26 22:04:02 +01:00
for (int a = 0; a < 2; a++) {
imagesByIds[a].clear();
imagesByIdsTemp[a].clear();
}
imagesArrTemp.clear();
currentUserAvatarLocation = null;
containerView.setPadding(0, 0, 0, 0);
2018-07-30 04:07:02 +02:00
if (currentThumb != null) {
currentThumb.release();
}
currentThumb = object != null ? object.thumb : null;
2017-07-08 18:32:04 +02:00
isEvent = object != null && object.isEvent;
2019-01-23 18:03:33 +01:00
sharedMediaType = DataQuery.MEDIA_PHOTOVIDEO;
allMediaItem.setText(LocaleController.getString("ShowAllMedia", R.string.ShowAllMedia));
2014-06-12 03:13:15 +02:00
menuItem.setVisibility(View.VISIBLE);
2017-12-08 18:35:59 +01:00
sendItem.setVisibility(View.GONE);
2018-07-30 04:07:02 +02:00
pipItem.setVisibility(View.GONE);
cameraItem.setVisibility(View.GONE);
cameraItem.setTag(null);
2014-06-12 03:13:15 +02:00
bottomLayout.setVisibility(View.VISIBLE);
2018-07-30 04:07:02 +02:00
bottomLayout.setTag(1);
2016-10-11 13:57:01 +02:00
bottomLayout.setTranslationY(0);
captionTextView.setTranslationY(0);
shareButton.setVisibility(View.GONE);
2017-03-31 01:58:05 +02:00
if (qualityChooseView != null) {
qualityChooseView.setVisibility(View.INVISIBLE);
qualityPicker.setVisibility(View.INVISIBLE);
qualityChooseView.setTag(null);
}
if (qualityChooseViewAnimation != null) {
qualityChooseViewAnimation.cancel();
qualityChooseViewAnimation = null;
}
2019-01-23 18:03:33 +01:00
setDoubleTapEnabled(true);
2016-10-11 13:57:01 +02:00
allowShare = false;
2017-12-08 18:35:59 +01:00
slideshowMessageId = 0;
nameOverride = null;
dateOverride = 0;
menuItem.hideSubItem(gallery_menu_showall);
2017-12-08 18:35:59 +01:00
menuItem.hideSubItem(gallery_menu_showinchat);
menuItem.hideSubItem(gallery_menu_share);
menuItem.hideSubItem(gallery_menu_openin);
actionBar.setTranslationY(0);
checkImageView.setAlpha(1.0f);
2014-06-12 03:13:15 +02:00
checkImageView.setVisibility(View.GONE);
actionBar.setTitleRightMargin(0);
photosCounterView.setAlpha(1.0f);
photosCounterView.setVisibility(View.GONE);
2014-06-12 03:13:15 +02:00
pickerView.setVisibility(View.GONE);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setVisibility(View.GONE);
pickerViewSendButton.setTranslationY(0);
pickerView.setAlpha(1.0f);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setAlpha(1.0f);
pickerView.setTranslationY(0);
2016-10-11 13:57:01 +02:00
paintItem.setVisibility(View.GONE);
cropItem.setVisibility(View.GONE);
tuneItem.setVisibility(View.GONE);
timeItem.setVisibility(View.GONE);
2019-01-23 18:03:33 +01:00
rotateItem.setVisibility(View.GONE);
videoTimelineView.setVisibility(View.GONE);
2017-03-31 01:58:05 +02:00
compressItem.setVisibility(View.GONE);
captionEditText.setVisibility(View.GONE);
mentionListView.setVisibility(View.GONE);
2016-10-11 13:57:01 +02:00
muteItem.setVisibility(View.GONE);
2017-03-31 01:58:05 +02:00
actionBar.setSubtitle(null);
2016-10-11 13:57:01 +02:00
masksItem.setVisibility(View.GONE);
muteVideo = false;
2017-03-31 01:58:05 +02:00
muteItem.setImageResource(R.drawable.volume_on);
editorDoneLayout.setVisibility(View.GONE);
captionTextView.setTag(null);
captionTextView.setVisibility(View.INVISIBLE);
if (photoCropView != null) {
photoCropView.setVisibility(View.GONE);
}
if (photoFilterView != null) {
photoFilterView.setVisibility(View.GONE);
}
2014-10-28 18:07:44 +01:00
for (int a = 0; a < 3; a++) {
2017-03-31 01:58:05 +02:00
if (photoProgressViews[a] != null) {
photoProgressViews[a].setBackgroundState(-1, false);
2014-10-28 18:07:44 +01:00
}
}
if (messageObject != null && messages == null) {
2017-12-08 18:35:59 +01:00
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage && messageObject.messageOwner.media.webpage != null) {
TLRPC.WebPage webPage = messageObject.messageOwner.media.webpage;
String siteName = webPage.site_name;
if (siteName != null) {
siteName = siteName.toLowerCase();
2018-07-30 04:07:02 +02:00
if (siteName.equals("instagram") || siteName.equals("twitter") || "telegram_album".equals(webPage.type)) {
2017-12-08 18:35:59 +01:00
if (!TextUtils.isEmpty(webPage.author)) {
nameOverride = webPage.author;
}
2019-01-23 18:03:33 +01:00
if (webPage.cached_page instanceof TLRPC.TL_page) {
2017-12-08 18:35:59 +01:00
for (int a = 0; a < webPage.cached_page.blocks.size(); a++) {
TLRPC.PageBlock block = webPage.cached_page.blocks.get(a);
if (block instanceof TLRPC.TL_pageBlockAuthorDate) {
dateOverride = ((TLRPC.TL_pageBlockAuthorDate) block).published_date;
break;
}
}
}
ArrayList<MessageObject> arrayList = messageObject.getWebPagePhotos(null, null);
if (!arrayList.isEmpty()) {
slideshowMessageId = messageObject.getId();
needSearchImageInArr = false;
imagesArr.addAll(arrayList);
totalImagesCount = imagesArr.size();
2018-07-30 04:07:02 +02:00
int idx = imagesArr.indexOf(messageObject);
if (idx < 0) {
idx = 0;
}
setImageIndex(idx, true);
2017-12-08 18:35:59 +01:00
}
}
}
}
2019-01-23 18:03:33 +01:00
if (messageObject.canPreviewDocument()) {
sharedMediaType = DataQuery.MEDIA_FILE;
allMediaItem.setText(LocaleController.getString("ShowAllFiles", R.string.ShowAllFiles));
}
2017-12-08 18:35:59 +01:00
if (slideshowMessageId == 0) {
imagesArr.add(messageObject);
if (currentAnimation != null || messageObject.eventId != 0) {
needSearchImageInArr = false;
} else if (!(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaInvoice) && !(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage) && (messageObject.messageOwner.action == null || messageObject.messageOwner.action instanceof TLRPC.TL_messageActionEmpty)) {
needSearchImageInArr = true;
imagesByIds[0].put(messageObject.getId(), messageObject);
menuItem.showSubItem(gallery_menu_showall);
sendItem.setVisibility(View.VISIBLE);
}
setImageIndex(0, true);
}
2018-07-30 04:07:02 +02:00
} else if (documents != null) {
secureDocuments.addAll(documents);
setImageIndex(index, true);
} else if (fileLocation != null) {
avatarsDialogId = object.dialogId;
imagesArrLocations.add(fileLocation);
imagesArrLocationsSizes.add(object.size);
avatarsArr.add(new TLRPC.TL_photoEmpty());
shareButton.setVisibility(videoPlayerControlFrameLayout.getVisibility() != View.VISIBLE ? View.VISIBLE : View.GONE);
2016-10-11 13:57:01 +02:00
allowShare = true;
menuItem.hideSubItem(gallery_menu_showall);
if (shareButton.getVisibility() == View.VISIBLE) {
menuItem.hideSubItem(gallery_menu_share);
} else {
menuItem.showSubItem(gallery_menu_share);
}
setImageIndex(0, true);
currentUserAvatarLocation = fileLocation;
} else if (messages != null) {
opennedFromMedia = true;
2017-12-08 18:35:59 +01:00
menuItem.showSubItem(gallery_menu_showinchat);
sendItem.setVisibility(View.VISIBLE);
imagesArr.addAll(messages);
2015-11-26 22:04:02 +01:00
for (int a = 0; a < imagesArr.size(); a++) {
MessageObject message = imagesArr.get(a);
imagesByIds[message.getDialogId() == currentDialogId ? 0 : 1].put(message.getId(), message);
}
2019-01-23 18:03:33 +01:00
MessageObject openingObject = imagesArr.get(index);
if (openingObject.canPreviewDocument()) {
sharedMediaType = DataQuery.MEDIA_FILE;
allMediaItem.setText(LocaleController.getString("ShowAllFiles", R.string.ShowAllFiles));
}
setImageIndex(index, true);
2014-06-12 03:13:15 +02:00
} else if (photos != null) {
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4 || (sendPhotoType == 2 || sendPhotoType == 5) && photos.size() > 1) {
checkImageView.setVisibility(View.VISIBLE);
photosCounterView.setVisibility(View.VISIBLE);
actionBar.setTitleRightMargin(AndroidUtilities.dp(100));
}
2018-07-30 04:07:02 +02:00
if ((sendPhotoType == 2 || sendPhotoType == 5) && placeProvider.canCaptureMorePhotos()) {
cameraItem.setVisibility(View.VISIBLE);
cameraItem.setTag(1);
}
2014-06-12 03:13:15 +02:00
menuItem.setVisibility(View.GONE);
imagesArrLocals.addAll(photos);
Object obj = imagesArrLocals.get(index);
2017-03-31 01:58:05 +02:00
boolean allowCaption;
2016-10-11 13:57:01 +02:00
if (obj instanceof MediaController.PhotoEntry) {
if (((MediaController.PhotoEntry) obj).isVideo) {
cropItem.setVisibility(View.GONE);
2019-01-23 18:03:33 +01:00
rotateItem.setVisibility(View.GONE);
bottomLayout.setVisibility(View.VISIBLE);
2018-07-30 04:07:02 +02:00
bottomLayout.setTag(1);
bottomLayout.setTranslationY(-AndroidUtilities.dp(48));
2016-10-11 13:57:01 +02:00
} else {
2019-01-23 18:03:33 +01:00
cropItem.setVisibility(sendPhotoType != SELECT_TYPE_AVATAR ? View.VISIBLE : View.GONE);
rotateItem.setVisibility(sendPhotoType != SELECT_TYPE_AVATAR ? View.GONE : View.VISIBLE);
2016-10-11 13:57:01 +02:00
}
2017-03-31 01:58:05 +02:00
allowCaption = true;
2016-10-11 13:57:01 +02:00
} else if (obj instanceof TLRPC.BotInlineResult) {
cropItem.setVisibility(View.GONE);
2019-01-23 18:03:33 +01:00
rotateItem.setVisibility(View.GONE);
2017-03-31 01:58:05 +02:00
allowCaption = false;
2016-10-11 13:57:01 +02:00
} else {
cropItem.setVisibility(obj instanceof MediaController.SearchImage && ((MediaController.SearchImage) obj).type == 0 ? View.VISIBLE : View.GONE);
2019-01-23 18:03:33 +01:00
rotateItem.setVisibility(View.GONE);
2017-03-31 01:58:05 +02:00
allowCaption = cropItem.getVisibility() == View.VISIBLE;
2016-10-11 13:57:01 +02:00
}
2016-03-06 02:49:31 +01:00
if (parentChatActivity != null && (parentChatActivity.currentEncryptedChat == null || AndroidUtilities.getPeerLayerVersion(parentChatActivity.currentEncryptedChat.layer) >= 46)) {
2019-01-23 18:03:33 +01:00
mentionsAdapter.setChatInfo(parentChatActivity.chatInfo);
mentionsAdapter.setNeedUsernames(parentChatActivity.currentChat != null);
mentionsAdapter.setNeedBotContext(false);
2017-03-31 01:58:05 +02:00
needCaptionLayout = allowCaption && (placeProvider == null || placeProvider != null && placeProvider.allowCaption());
2016-10-11 13:57:01 +02:00
captionEditText.setVisibility(needCaptionLayout ? View.VISIBLE : View.GONE);
if (needCaptionLayout) {
captionEditText.onCreate();
}
}
pickerView.setVisibility(View.VISIBLE);
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setVisibility(View.VISIBLE);
pickerViewSendButton.setTranslationY(0);
pickerViewSendButton.setAlpha(1.0f);
bottomLayout.setVisibility(View.GONE);
2018-07-30 04:07:02 +02:00
bottomLayout.setTag(null);
containerView.setTag(null);
setImageIndex(index, true);
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
paintItem.setVisibility(View.VISIBLE);
tuneItem.setVisibility(View.VISIBLE);
} else if (sendPhotoType != 4 && sendPhotoType != 5) {
2018-07-30 04:07:02 +02:00
paintItem.setVisibility(cropItem.getVisibility());
tuneItem.setVisibility(cropItem.getVisibility());
} else {
paintItem.setVisibility(View.GONE);
tuneItem.setVisibility(View.GONE);
}
2014-06-12 03:13:15 +02:00
updateSelectedCount();
}
2017-07-08 18:32:04 +02:00
if (currentAnimation == null && !isEvent) {
if (currentDialogId != 0 && totalImagesCount == 0) {
2019-01-23 18:03:33 +01:00
DataQuery.getInstance(currentAccount).getMediaCount(currentDialogId, sharedMediaType, classGuid, true);
if (mergeDialogId != 0) {
2019-01-23 18:03:33 +01:00
DataQuery.getInstance(currentAccount).getMediaCount(mergeDialogId, sharedMediaType, classGuid, true);
}
} else if (avatarsDialogId != 0) {
2018-07-30 04:07:02 +02:00
MessagesController.getInstance(currentAccount).loadDialogPhotos(avatarsDialogId, 80, 0, true, classGuid);
2015-11-26 22:04:02 +01:00
}
}
2016-10-11 13:57:01 +02:00
if (currentMessageObject != null && currentMessageObject.isVideo() || currentBotInlineResult != null && (currentBotInlineResult.type.equals("video") || MessageObject.isVideoDocument(currentBotInlineResult.document))) {
onActionClick(false);
2016-10-11 13:57:01 +02:00
} else if (!imagesArrLocals.isEmpty()) {
Object entry = imagesArrLocals.get(index);
CharSequence caption = null;
2017-12-08 18:35:59 +01:00
TLRPC.User user = parentChatActivity != null ? parentChatActivity.getCurrentUser() : null;
2018-07-30 04:07:02 +02:00
boolean allowTimeItem = parentChatActivity != null && !parentChatActivity.isSecretChat() && user != null && !user.bot && !parentChatActivity.isEditingMessageMedia();
2016-10-11 13:57:01 +02:00
if (entry instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = ((MediaController.PhotoEntry) entry);
if (photoEntry.isVideo) {
2018-07-30 04:07:02 +02:00
preparePlayer(Uri.fromFile(new File(photoEntry.path)), false, false);
2016-10-11 13:57:01 +02:00
}
} else if (allowTimeItem && entry instanceof MediaController.SearchImage) {
allowTimeItem = ((MediaController.SearchImage) entry).type == 0;
}
if (allowTimeItem) {
timeItem.setVisibility(View.VISIBLE);
2016-10-11 13:57:01 +02:00
}
}
}
2019-01-23 18:03:33 +01:00
private void setDoubleTapEnabled(boolean value) {
doubleTapEnabled = value;
gestureDetector.setOnDoubleTapListener(value ? this : null);
}
2016-10-11 13:57:01 +02:00
public boolean isMuteVideo() {
return muteVideo;
}
2015-02-01 19:51:02 +01:00
private void setImages() {
if (animationInProgress == 0) {
setIndexToImage(centerImage, currentIndex);
setIndexToImage(rightImage, currentIndex + 1);
setIndexToImage(leftImage, currentIndex - 1);
}
}
2018-07-30 04:07:02 +02:00
private void setIsAboutToSwitchToIndex(int index, boolean init) {
if (!init && switchingToIndex == index) {
return;
}
2018-07-30 04:07:02 +02:00
switchingToIndex = index;
2016-03-06 02:49:31 +01:00
boolean isVideo = false;
2014-08-29 23:06:04 +02:00
boolean sameImage = false;
2018-07-30 04:07:02 +02:00
CharSequence caption = null;
String newFileName = getFileName(index);
MessageObject newMessageObject = null;
if (!imagesArr.isEmpty()) {
2018-07-30 04:07:02 +02:00
if (switchingToIndex < 0 || switchingToIndex >= imagesArr.size()) {
2015-01-02 23:15:07 +01:00
return;
}
2018-07-30 04:07:02 +02:00
newMessageObject = imagesArr.get(switchingToIndex);
isVideo = newMessageObject.isVideo();
boolean isInvoice = newMessageObject.isInvoice();
2017-03-31 01:58:05 +02:00
if (isInvoice) {
masksItem.setVisibility(View.GONE);
2015-09-24 22:52:02 +02:00
menuItem.hideSubItem(gallery_menu_delete);
menuItem.hideSubItem(gallery_menu_openin);
2018-07-30 04:07:02 +02:00
caption = newMessageObject.messageOwner.media.description;
2017-03-31 01:58:05 +02:00
allowShare = false;
bottomLayout.setTranslationY(AndroidUtilities.dp(48));
captionTextView.setTranslationY(AndroidUtilities.dp(48));
2017-03-31 01:58:05 +02:00
} else {
2018-07-30 04:07:02 +02:00
masksItem.setVisibility(newMessageObject.hasPhotoStickers() && (int) newMessageObject.getDialogId() != 0 ? View.VISIBLE : View.GONE);
if (newMessageObject.canDeleteMessage(null) && slideshowMessageId == 0) {
2017-03-31 01:58:05 +02:00
menuItem.showSubItem(gallery_menu_delete);
2015-09-24 22:52:02 +02:00
} else {
2017-03-31 01:58:05 +02:00
menuItem.hideSubItem(gallery_menu_delete);
2015-09-24 22:52:02 +02:00
}
if (isVideo) {
2017-03-31 01:58:05 +02:00
menuItem.showSubItem(gallery_menu_openin);
2018-07-30 04:07:02 +02:00
if (pipItem.getVisibility() != View.VISIBLE) {
pipItem.setVisibility(View.VISIBLE);
}
if (!pipAvailable) {
pipItem.setEnabled(false);
pipItem.setAlpha(0.5f);
}
2015-09-24 22:52:02 +02:00
} else {
2017-03-31 01:58:05 +02:00
menuItem.hideSubItem(gallery_menu_openin);
2018-07-30 04:07:02 +02:00
if (pipItem.getVisibility() != View.GONE) {
pipItem.setVisibility(View.GONE);
}
2015-09-24 22:52:02 +02:00
}
2017-12-08 18:35:59 +01:00
if (nameOverride != null) {
nameTextView.setText(nameOverride);
2017-03-31 01:58:05 +02:00
} else {
2018-07-30 04:07:02 +02:00
if (newMessageObject.isFromUser()) {
TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(newMessageObject.messageOwner.from_id);
2017-12-08 18:35:59 +01:00
if (user != null) {
nameTextView.setText(UserObject.getUserName(user));
} else {
nameTextView.setText("");
}
2017-03-31 01:58:05 +02:00
} else {
2018-07-30 04:07:02 +02:00
TLRPC.Chat chat = MessagesController.getInstance(currentAccount).getChat(newMessageObject.messageOwner.to_id.channel_id);
2017-12-08 18:35:59 +01:00
if (chat != null) {
nameTextView.setText(chat.title);
} else {
nameTextView.setText("");
}
2017-03-31 01:58:05 +02:00
}
}
2017-12-08 18:35:59 +01:00
long date;
if (dateOverride != 0) {
date = (long) dateOverride * 1000;
} else {
2018-07-30 04:07:02 +02:00
date = (long) newMessageObject.messageOwner.date * 1000;
2017-12-08 18:35:59 +01:00
}
2017-03-31 01:58:05 +02:00
String dateString = LocaleController.formatString("formatDateAtTime", R.string.formatDateAtTime, LocaleController.getInstance().formatterYear.format(new Date(date)), LocaleController.getInstance().formatterDay.format(new Date(date)));
2018-07-30 04:07:02 +02:00
if (newFileName != null && isVideo) {
dateTextView.setText(String.format("%s (%s)", dateString, AndroidUtilities.formatFileSize(newMessageObject.getDocument().size)));
2017-03-31 01:58:05 +02:00
} else {
dateTextView.setText(dateString);
}
2018-07-30 04:07:02 +02:00
caption = newMessageObject.caption;
}
if (currentAnimation != null) {
menuItem.hideSubItem(gallery_menu_save);
menuItem.hideSubItem(gallery_menu_share);
2018-07-30 04:07:02 +02:00
if (!newMessageObject.canDeleteMessage(null)) {
menuItem.setVisibility(View.GONE);
}
2016-10-11 13:57:01 +02:00
allowShare = true;
shareButton.setVisibility(View.VISIBLE);
actionBar.setTitle(LocaleController.getString("AttachGif", R.string.AttachGif));
} else {
if (totalImagesCount + totalImagesCountMerge != 0 && !needSearchImageInArr) {
if (opennedFromMedia) {
2018-07-30 04:07:02 +02:00
if (imagesArr.size() < totalImagesCount + totalImagesCountMerge && !loadingMoreImages && switchingToIndex > imagesArr.size() - 5) {
int loadFromMaxId = imagesArr.isEmpty() ? 0 : imagesArr.get(imagesArr.size() - 1).getId();
int loadIndex = 0;
if (endReached[loadIndex] && mergeDialogId != 0) {
loadIndex = 1;
if (!imagesArr.isEmpty() && imagesArr.get(imagesArr.size() - 1).getDialogId() != mergeDialogId) {
loadFromMaxId = 0;
}
2015-11-26 22:04:02 +01:00
}
2019-01-23 18:03:33 +01:00
DataQuery.getInstance(currentAccount).loadMedia(loadIndex == 0 ? currentDialogId : mergeDialogId, 80, loadFromMaxId, sharedMediaType, 1, classGuid);
loadingMoreImages = true;
2015-11-26 22:04:02 +01:00
}
2018-07-30 04:07:02 +02:00
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, switchingToIndex + 1, totalImagesCount + totalImagesCountMerge));
} else {
2018-07-30 04:07:02 +02:00
if (imagesArr.size() < totalImagesCount + totalImagesCountMerge && !loadingMoreImages && switchingToIndex < 5) {
int loadFromMaxId = imagesArr.isEmpty() ? 0 : imagesArr.get(0).getId();
int loadIndex = 0;
if (endReached[loadIndex] && mergeDialogId != 0) {
loadIndex = 1;
if (!imagesArr.isEmpty() && imagesArr.get(0).getDialogId() != mergeDialogId) {
loadFromMaxId = 0;
}
}
2015-11-26 22:04:02 +01:00
2019-01-23 18:03:33 +01:00
DataQuery.getInstance(currentAccount).loadMedia(loadIndex == 0 ? currentDialogId : mergeDialogId, 80, loadFromMaxId, sharedMediaType, 1, classGuid);
loadingMoreImages = true;
}
2018-07-30 04:07:02 +02:00
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, (totalImagesCount + totalImagesCountMerge - imagesArr.size()) + switchingToIndex + 1, totalImagesCount + totalImagesCountMerge));
}
2018-07-30 04:07:02 +02:00
} else if (slideshowMessageId == 0 && newMessageObject.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage) {
2019-01-23 18:03:33 +01:00
if (newMessageObject.canPreviewDocument()) {
actionBar.setTitle(LocaleController.getString("AttachDocument", R.string.AttachDocument));
} else if (newMessageObject.isVideo()) {
actionBar.setTitle(LocaleController.getString("AttachVideo", R.string.AttachVideo));
} else {
actionBar.setTitle(LocaleController.getString("AttachPhoto", R.string.AttachPhoto));
}
2017-03-31 01:58:05 +02:00
} else if (isInvoice) {
2018-07-30 04:07:02 +02:00
actionBar.setTitle(newMessageObject.messageOwner.media.title);
2019-03-03 21:40:48 +01:00
} else if (newMessageObject.isVideo()) {
actionBar.setTitle(LocaleController.getString("AttachVideo", R.string.AttachVideo));
2019-01-23 18:03:33 +01:00
} else if (newMessageObject.getDocument() != null) {
actionBar.setTitle(LocaleController.getString("AttachDocument", R.string.AttachDocument));
}
2017-12-08 18:35:59 +01:00
if ((int) currentDialogId == 0) {
sendItem.setVisibility(View.GONE);
}
2018-07-30 04:07:02 +02:00
if (newMessageObject.messageOwner.ttl != 0 && newMessageObject.messageOwner.ttl < 60 * 60) {
2016-10-11 13:57:01 +02:00
allowShare = false;
menuItem.hideSubItem(gallery_menu_save);
shareButton.setVisibility(View.GONE);
menuItem.hideSubItem(gallery_menu_share);
} else {
2016-10-11 13:57:01 +02:00
allowShare = true;
menuItem.showSubItem(gallery_menu_save);
shareButton.setVisibility(videoPlayerControlFrameLayout.getVisibility() != View.VISIBLE ? View.VISIBLE : View.GONE);
if (shareButton.getVisibility() == View.VISIBLE) {
menuItem.hideSubItem(gallery_menu_share);
} else {
menuItem.showSubItem(gallery_menu_share);
}
}
2014-10-28 18:07:44 +01:00
}
2017-12-08 18:35:59 +01:00
groupedPhotosListView.fillList();
2018-07-30 04:07:02 +02:00
} else if (!secureDocuments.isEmpty()) {
allowShare = false;
menuItem.hideSubItem(gallery_menu_save);
nameTextView.setText("");
dateTextView.setText("");
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, switchingToIndex + 1, secureDocuments.size()));
} else if (!imagesArrLocations.isEmpty()) {
2018-07-30 04:07:02 +02:00
if (index < 0 || index >= imagesArrLocations.size()) {
return;
}
nameTextView.setText("");
dateTextView.setText("");
2018-07-30 04:07:02 +02:00
if (avatarsDialogId == UserConfig.getInstance(currentAccount).getClientUserId() && !avatarsArr.isEmpty()) {
menuItem.showSubItem(gallery_menu_delete);
} else {
menuItem.hideSubItem(gallery_menu_delete);
}
2017-07-08 18:32:04 +02:00
if (isEvent) {
actionBar.setTitle(LocaleController.getString("AttachPhoto", R.string.AttachPhoto));
} else {
2018-07-30 04:07:02 +02:00
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, switchingToIndex + 1, imagesArrLocations.size()));
2017-07-08 18:32:04 +02:00
}
2014-10-28 18:07:44 +01:00
menuItem.showSubItem(gallery_menu_save);
2016-10-11 13:57:01 +02:00
allowShare = true;
shareButton.setVisibility(videoPlayerControlFrameLayout.getVisibility() != View.VISIBLE ? View.VISIBLE : View.GONE);
if (shareButton.getVisibility() == View.VISIBLE) {
menuItem.hideSubItem(gallery_menu_share);
} else {
menuItem.showSubItem(gallery_menu_share);
}
2017-12-08 18:35:59 +01:00
groupedPhotosListView.fillList();
2014-06-12 03:13:15 +02:00
} else if (!imagesArrLocals.isEmpty()) {
2015-01-02 23:15:07 +01:00
if (index < 0 || index >= imagesArrLocals.size()) {
return;
}
2016-10-11 13:57:01 +02:00
Object object = imagesArrLocals.get(index);
int ttl = 0;
boolean isFiltered = false;
boolean isPainted = false;
boolean isCropped = false;
2017-12-08 18:35:59 +01:00
if (object instanceof TLRPC.BotInlineResult) {
2016-10-11 13:57:01 +02:00
TLRPC.BotInlineResult botInlineResult = currentBotInlineResult = ((TLRPC.BotInlineResult) object);
if (botInlineResult.document != null) {
isVideo = MessageObject.isVideoDocument(botInlineResult.document);
2018-07-30 04:07:02 +02:00
} else if (botInlineResult.content instanceof TLRPC.TL_webDocument) {
2016-10-11 13:57:01 +02:00
isVideo = botInlineResult.type.equals("video");
}
2017-12-08 18:35:59 +01:00
} else {
2018-07-30 04:07:02 +02:00
String pathObject = null;
2017-12-08 18:35:59 +01:00
boolean isAnimation = false;
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = ((MediaController.PhotoEntry) object);
2018-07-30 04:07:02 +02:00
pathObject = photoEntry.path;
2017-12-08 18:35:59 +01:00
isVideo = photoEntry.isVideo;
} else if (object instanceof MediaController.SearchImage) {
MediaController.SearchImage searchImage = (MediaController.SearchImage) object;
2018-07-30 04:07:02 +02:00
pathObject = searchImage.getPathToAttach();
2017-12-08 18:35:59 +01:00
if (searchImage.type == 1) {
isAnimation = true;
}
}
if (isVideo) {
muteItem.setVisibility(View.VISIBLE);
compressItem.setVisibility(View.VISIBLE);
isCurrentVideo = true;
boolean isMuted = false;
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = ((MediaController.PhotoEntry) object);
isMuted = photoEntry.editedInfo != null && photoEntry.editedInfo.muted;
}
2018-07-30 04:07:02 +02:00
processOpenVideo(pathObject, isMuted);
2017-12-08 18:35:59 +01:00
videoTimelineView.setVisibility(View.VISIBLE);
paintItem.setVisibility(View.GONE);
cropItem.setVisibility(View.GONE);
tuneItem.setVisibility(View.GONE);
2019-01-23 18:03:33 +01:00
rotateItem.setVisibility(View.GONE);
} else {
2017-12-08 18:35:59 +01:00
videoTimelineView.setVisibility(View.GONE);
muteItem.setVisibility(View.GONE);
isCurrentVideo = false;
compressItem.setVisibility(View.GONE);
if (isAnimation) {
paintItem.setVisibility(View.GONE);
cropItem.setVisibility(View.GONE);
2019-01-23 18:03:33 +01:00
rotateItem.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
tuneItem.setVisibility(View.GONE);
} else {
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 4 || sendPhotoType == 5) {
paintItem.setVisibility(View.GONE);
tuneItem.setVisibility(View.GONE);
} else {
paintItem.setVisibility(View.VISIBLE);
tuneItem.setVisibility(View.VISIBLE);
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
cropItem.setVisibility(sendPhotoType != SELECT_TYPE_AVATAR ? View.VISIBLE : View.GONE);
rotateItem.setVisibility(sendPhotoType != SELECT_TYPE_AVATAR ? View.GONE : View.VISIBLE);
2017-12-08 18:35:59 +01:00
}
actionBar.setSubtitle(null);
}
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = ((MediaController.PhotoEntry) object);
fromCamera = photoEntry.bucketId == 0 && photoEntry.dateTaken == 0 && imagesArrLocals.size() == 1;
caption = photoEntry.caption;
ttl = photoEntry.ttl;
isFiltered = photoEntry.isFiltered;
isPainted = photoEntry.isPainted;
isCropped = photoEntry.isCropped;
} else if (object instanceof MediaController.SearchImage) {
MediaController.SearchImage searchImage = (MediaController.SearchImage) object;
caption = searchImage.caption;
ttl = searchImage.ttl;
isFiltered = searchImage.isFiltered;
isPainted = searchImage.isPainted;
isCropped = searchImage.isCropped;
}
}
2018-07-30 04:07:02 +02:00
if (bottomLayout.getVisibility() != View.GONE) {
bottomLayout.setVisibility(View.GONE);
}
bottomLayout.setTag(null);
if (fromCamera) {
2016-10-11 13:57:01 +02:00
if (isVideo) {
actionBar.setTitle(LocaleController.getString("AttachVideo", R.string.AttachVideo));
} else {
actionBar.setTitle(LocaleController.getString("AttachPhoto", R.string.AttachPhoto));
}
} else {
2018-07-30 04:07:02 +02:00
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, switchingToIndex + 1, imagesArrLocals.size()));
}
if (parentChatActivity != null) {
TLRPC.Chat chat = parentChatActivity.getCurrentChat();
if (chat != null) {
actionBar.setTitle(chat.title);
2017-07-08 18:32:04 +02:00
} else {
TLRPC.User user = parentChatActivity.getCurrentUser();
if (user != null) {
actionBar.setTitle(ContactsController.formatName(user.first_name, user.last_name));
2017-07-08 18:32:04 +02:00
}
}
}
2018-07-30 04:07:02 +02:00
if (sendPhotoType == 0 || sendPhotoType == 4 || (sendPhotoType == 2 || sendPhotoType == 5) && imagesArrLocals.size() > 1) {
checkImageView.setChecked(placeProvider.isPhotoChecked(switchingToIndex), false);
}
updateCaptionTextForCurrentPhoto(object);
2018-07-30 04:07:02 +02:00
PorterDuffColorFilter filter = new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY);
timeItem.setColorFilter(ttl != 0 ? filter : null);
paintItem.setColorFilter(isPainted ? filter : null);
cropItem.setColorFilter(isCropped ? filter : null);
tuneItem.setColorFilter(isFiltered ? filter : null);
}
setCurrentCaption(newMessageObject, caption, !init);
}
private void setImageIndex(int index, boolean init) {
if (currentIndex == index || placeProvider == null) {
return;
}
2018-07-30 04:07:02 +02:00
if (!init) {
if (currentThumb != null) {
currentThumb.release();
currentThumb = null;
}
}
currentFileNames[0] = getFileName(index);
currentFileNames[1] = getFileName(index + 1);
currentFileNames[2] = getFileName(index - 1);
placeProvider.willSwitchFromPhoto(currentMessageObject, currentFileLocation, currentIndex);
int prevIndex = currentIndex;
currentIndex = index;
setIsAboutToSwitchToIndex(currentIndex, init);
boolean isVideo = false;
boolean sameImage = false;
Uri videoPath = null;
2018-07-30 04:07:02 +02:00
if (!imagesArr.isEmpty()) {
if (currentIndex < 0 || currentIndex >= imagesArr.size()) {
closePhoto(false, false);
return;
}
MessageObject newMessageObject = imagesArr.get(currentIndex);
sameImage = init && currentMessageObject != null && currentMessageObject.getId() == newMessageObject.getId();
currentMessageObject = newMessageObject;
isVideo = newMessageObject.isVideo();
2019-01-23 18:03:33 +01:00
if (sharedMediaType == DataQuery.MEDIA_FILE) {
if (canZoom = newMessageObject.canPreviewDocument()) {
menuItem.showSubItem(gallery_menu_save);
setDoubleTapEnabled(true);
} else {
menuItem.hideSubItem(gallery_menu_save);
setDoubleTapEnabled(false);
}
}
2018-07-30 04:07:02 +02:00
} else if (!secureDocuments.isEmpty()) {
if (index < 0 || index >= secureDocuments.size()) {
closePhoto(false, false);
return;
}
currentSecureDocument = secureDocuments.get(index);
} else if (!imagesArrLocations.isEmpty()) {
if (index < 0 || index >= imagesArrLocations.size()) {
closePhoto(false, false);
return;
}
TLRPC.FileLocation old = currentFileLocation;
TLRPC.FileLocation newLocation = imagesArrLocations.get(index);
if (init && old != null && newLocation != null && old.local_id == newLocation.local_id && old.volume_id == newLocation.volume_id) {
sameImage = true;
}
currentFileLocation = imagesArrLocations.get(index);
} else if (!imagesArrLocals.isEmpty()) {
if (index < 0 || index >= imagesArrLocals.size()) {
closePhoto(false, false);
return;
}
Object object = imagesArrLocals.get(index);
if (object instanceof TLRPC.BotInlineResult) {
TLRPC.BotInlineResult botInlineResult = currentBotInlineResult = ((TLRPC.BotInlineResult) object);
if (botInlineResult.document != null) {
currentPathObject = FileLoader.getPathToAttach(botInlineResult.document).getAbsolutePath();
isVideo = MessageObject.isVideoDocument(botInlineResult.document);
} else if (botInlineResult.photo != null) {
currentPathObject = FileLoader.getPathToAttach(FileLoader.getClosestPhotoSizeWithSize(botInlineResult.photo.sizes, AndroidUtilities.getPhotoSize())).getAbsolutePath();
} else if (botInlineResult.content instanceof TLRPC.TL_webDocument) {
currentPathObject = botInlineResult.content.url;
isVideo = botInlineResult.type.equals("video");
}
} else {
boolean isAnimation = false;
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = ((MediaController.PhotoEntry) object);
currentPathObject = photoEntry.path;
isVideo = photoEntry.isVideo;
videoPath = Uri.fromFile(new File(photoEntry.path));
} else if (object instanceof MediaController.SearchImage) {
MediaController.SearchImage searchImage = (MediaController.SearchImage) object;
currentPathObject = searchImage.getPathToAttach();
}
}
}
if (currentPlaceObject != null) {
if (animationInProgress == 0) {
currentPlaceObject.imageReceiver.setVisible(true, true);
} else {
showAfterAnimation = currentPlaceObject;
}
}
2019-03-03 21:40:48 +01:00
currentPlaceObject = placeProvider.getPlaceForPhoto(currentMessageObject, currentFileLocation, currentIndex, false);
if (currentPlaceObject != null) {
if (animationInProgress == 0) {
currentPlaceObject.imageReceiver.setVisible(false, true);
} else {
hideAfterAnimation = currentPlaceObject;
}
}
2014-08-29 23:06:04 +02:00
if (!sameImage) {
draggingDown = false;
translationX = 0;
translationY = 0;
scale = 1;
animateToX = 0;
animateToY = 0;
animateToScale = 1;
animationStartTime = 0;
imageMoveAnimation = null;
changeModeAnimation = null;
if (aspectRatioFrameLayout != null) {
aspectRatioFrameLayout.setVisibility(View.INVISIBLE);
}
2014-08-29 23:06:04 +02:00
pinchStartDistance = 0;
pinchStartScale = 1;
pinchCenterX = 0;
pinchCenterY = 0;
pinchStartX = 0;
pinchStartY = 0;
moveStartX = 0;
moveStartY = 0;
zooming = false;
moving = false;
doubleTap = false;
invalidCoords = false;
canDragDown = true;
changingPage = false;
switchImageAfterAnimation = 0;
2019-01-23 18:03:33 +01:00
if (sharedMediaType != DataQuery.MEDIA_FILE) {
canZoom = !imagesArrLocals.isEmpty() || (currentFileNames[0] != null && /*!isVideo && */photoProgressViews[0].backgroundState != 0);
}
2014-08-29 23:06:04 +02:00
updateMinMax(scale);
2018-07-30 04:07:02 +02:00
releasePlayer();
2014-08-29 23:06:04 +02:00
}
2017-07-08 18:32:04 +02:00
if (isVideo && videoPath != null) {
2018-07-30 04:07:02 +02:00
isStreaming = false;
preparePlayer(videoPath, false, false);
2017-07-08 18:32:04 +02:00
}
if (prevIndex == -1) {
2015-02-01 19:51:02 +01:00
setImages();
2014-11-19 02:23:46 +01:00
for (int a = 0; a < 3; a++) {
checkProgress(a, false);
}
} else {
2014-11-19 02:23:46 +01:00
checkProgress(0, false);
if (prevIndex > currentIndex) {
ImageReceiver temp = rightImage;
rightImage = centerImage;
centerImage = leftImage;
leftImage = temp;
2014-11-19 02:23:46 +01:00
2017-03-31 01:58:05 +02:00
PhotoProgressView tempProgress = photoProgressViews[0];
photoProgressViews[0] = photoProgressViews[2];
photoProgressViews[2] = tempProgress;
setIndexToImage(leftImage, currentIndex - 1);
2014-11-19 02:23:46 +01:00
checkProgress(1, false);
checkProgress(2, false);
} else if (prevIndex < currentIndex) {
ImageReceiver temp = leftImage;
leftImage = centerImage;
centerImage = rightImage;
rightImage = temp;
2014-11-19 02:23:46 +01:00
2017-03-31 01:58:05 +02:00
PhotoProgressView tempProgress = photoProgressViews[0];
photoProgressViews[0] = photoProgressViews[1];
photoProgressViews[1] = tempProgress;
setIndexToImage(rightImage, currentIndex + 1);
2014-11-19 02:23:46 +01:00
checkProgress(1, false);
checkProgress(2, false);
}
2014-10-28 18:07:44 +01:00
}
2015-01-02 23:15:07 +01:00
}
2018-07-30 04:07:02 +02:00
private void setCurrentCaption(MessageObject messageObject, final CharSequence caption, boolean animated) {
if (needCaptionLayout) {
if (captionTextView.getParent() != pickerView) {
captionTextView.setBackgroundDrawable(null);
containerView.removeView(captionTextView);
pickerView.addView(captionTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM | Gravity.LEFT, 0, 0, 76, 48));
}
} else {
if (captionTextView.getParent() != containerView) {
captionTextView.setBackgroundColor(0x7f000000);
pickerView.removeView(captionTextView);
containerView.addView(captionTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.BOTTOM | Gravity.LEFT, 0, 0, 0, 48));
}
}
if (isCurrentVideo) {
captionTextView.setMaxLines(1);
captionTextView.setSingleLine(true);
} else {
captionTextView.setSingleLine(false);
captionTextView.setMaxLines(10);
}
2018-07-30 04:07:02 +02:00
boolean wasVisisble = captionTextView.getTag() != null;
if (!TextUtils.isEmpty(caption)) {
2017-03-31 01:58:05 +02:00
Theme.createChatResources(null, true);
2018-07-30 04:07:02 +02:00
CharSequence str;
if (messageObject != null && !messageObject.messageOwner.entities.isEmpty()) {
Spannable spannableString = SpannableString.valueOf(caption.toString());
messageObject.addEntitiesToText(spannableString, true, false);
str = Emoji.replaceEmoji(spannableString, captionTextView.getPaint().getFontMetricsInt(), AndroidUtilities.dp(20), false);
} else {
str = Emoji.replaceEmoji(new SpannableStringBuilder(caption), captionTextView.getPaint().getFontMetricsInt(), AndroidUtilities.dp(20), false);
}
2016-03-06 02:49:31 +01:00
captionTextView.setTag(str);
2018-07-30 04:07:02 +02:00
if (currentCaptionAnimation != null) {
currentCaptionAnimation.cancel();
currentCaptionAnimation = null;
}
/*if (animated) {
TextView temp = switchCaptionTextView;
switchCaptionTextView = captionTextView;
captionTextView = temp;
try {
switchCaptionTextView.setText(str);
} catch (Exception e) {
FileLog.e(e);
}
}*/
2017-03-31 01:58:05 +02:00
try {
captionTextView.setText(str);
} catch (Exception e) {
FileLog.e(e);
}
2019-03-03 21:40:48 +01:00
captionTextView.setScrollY(0);
2018-07-30 04:07:02 +02:00
captionTextView.setTextColor(0xffffffff);
boolean visible = isActionBarVisible && (bottomLayout.getVisibility() == View.VISIBLE || pickerView.getVisibility() == View.VISIBLE);
if (visible) {
captionTextView.setVisibility(View.VISIBLE);
if (animated && !wasVisisble) {
currentCaptionAnimation = new AnimatorSet();
currentCaptionAnimation.setDuration(200);
currentCaptionAnimation.setInterpolator(decelerateInterpolator);
currentCaptionAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animation.equals(currentCaptionAnimation)) {
currentCaptionAnimation = null;
}
}
});
currentCaptionAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(captionTextView, View.ALPHA, 0.0f, 1.0f),
ObjectAnimator.ofFloat(captionTextView, View.TRANSLATION_Y, AndroidUtilities.dp(5), 0.0f));
2018-07-30 04:07:02 +02:00
currentCaptionAnimation.start();
} else {
captionTextView.setAlpha(1.0f);
}
} else if (captionTextView.getVisibility() == View.VISIBLE) {
captionTextView.setVisibility(View.INVISIBLE);
captionTextView.setAlpha(0.0f);
}
} else {
2016-10-11 13:57:01 +02:00
if (needCaptionLayout) {
captionTextView.setText(LocaleController.getString("AddCaption", R.string.AddCaption));
2016-10-11 13:57:01 +02:00
captionTextView.setTag("empty");
captionTextView.setVisibility(View.VISIBLE);
captionTextView.setTextColor(0xb2ffffff);
} else {
captionTextView.setTextColor(0xffffffff);
captionTextView.setTag(null);
2018-07-30 04:07:02 +02:00
if (animated && wasVisisble) {
currentCaptionAnimation = new AnimatorSet();
currentCaptionAnimation.setDuration(200);
currentCaptionAnimation.setInterpolator(decelerateInterpolator);
currentCaptionAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animation.equals(currentCaptionAnimation)) {
captionTextView.setVisibility(View.INVISIBLE);
currentCaptionAnimation = null;
}
}
@Override
public void onAnimationCancel(Animator animation) {
if (animation.equals(currentCaptionAnimation)) {
currentCaptionAnimation = null;
}
}
});
currentCaptionAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(captionTextView, View.ALPHA, 0.0f),
ObjectAnimator.ofFloat(captionTextView, View.TRANSLATION_Y, AndroidUtilities.dp(5)));
2018-07-30 04:07:02 +02:00
currentCaptionAnimation.start();
} else {
captionTextView.setVisibility(View.INVISIBLE);
}
2016-10-11 13:57:01 +02:00
}
}
}
2014-10-30 22:27:41 +01:00
private void checkProgress(int a, boolean animated) {
int index = currentIndex;
if (a == 1) {
index += 1;
} else if (a == 2) {
index -= 1;
}
2014-10-28 18:07:44 +01:00
if (currentFileNames[a] != null) {
File f = null;
2016-03-06 02:49:31 +01:00
boolean isVideo = false;
2018-07-30 04:07:02 +02:00
boolean canStream = false;
if (currentMessageObject != null) {
2017-12-08 18:35:59 +01:00
if (index < 0 || index >= imagesArr.size()) {
photoProgressViews[a].setBackgroundState(-1, animated);
return;
}
2014-10-28 18:07:44 +01:00
MessageObject messageObject = imagesArr.get(index);
2019-01-23 18:03:33 +01:00
if (sharedMediaType == DataQuery.MEDIA_FILE && !messageObject.canPreviewDocument()) {
photoProgressViews[a].setBackgroundState(-1, animated);
return;
}
if (!TextUtils.isEmpty(messageObject.messageOwner.attachPath)) {
f = new File(messageObject.messageOwner.attachPath);
if (!f.exists()) {
f = null;
}
}
if (f == null) {
2018-07-30 04:07:02 +02:00
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaWebPage && messageObject.messageOwner.media.webpage != null && messageObject.messageOwner.media.webpage.document == null) {
TLObject fileLocation = getFileLocation(index, null);
f = FileLoader.getPathToAttach(fileLocation, true);
} else {
f = FileLoader.getPathToMessage(messageObject.messageOwner);
}
}
2019-01-23 18:03:33 +01:00
canStream = SharedConfig.streamMedia && messageObject.isVideo() && messageObject.canStreamVideo() && (int) messageObject.getDialogId() != 0;
2016-03-06 02:49:31 +01:00
isVideo = messageObject.isVideo();
2016-10-11 13:57:01 +02:00
} else if (currentBotInlineResult != null) {
2017-12-08 18:35:59 +01:00
if (index < 0 || index >= imagesArrLocals.size()) {
photoProgressViews[a].setBackgroundState(-1, animated);
return;
}
2016-10-11 13:57:01 +02:00
TLRPC.BotInlineResult botInlineResult = (TLRPC.BotInlineResult) imagesArrLocals.get(index);
if (botInlineResult.type.equals("video") || MessageObject.isVideoDocument(botInlineResult.document)) {
if (botInlineResult.document != null) {
f = FileLoader.getPathToAttach(botInlineResult.document);
2018-07-30 04:07:02 +02:00
} else if (botInlineResult.content instanceof TLRPC.TL_webDocument) {
f = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_CACHE), Utilities.MD5(botInlineResult.content.url) + "." + ImageLoader.getHttpUrlExtension(botInlineResult.content.url, "mp4"));
2016-10-11 13:57:01 +02:00
}
isVideo = true;
} else if (botInlineResult.document != null) {
2018-07-30 04:07:02 +02:00
f = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_DOCUMENT), currentFileNames[a]);
2016-10-11 13:57:01 +02:00
} else if (botInlineResult.photo != null) {
2018-07-30 04:07:02 +02:00
f = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_IMAGE), currentFileNames[a]);
2016-10-11 13:57:01 +02:00
}
if (f == null || !f.exists()) {
2018-07-30 04:07:02 +02:00
f = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_CACHE), currentFileNames[a]);
2016-10-11 13:57:01 +02:00
}
} else if (currentFileLocation != null) {
2017-12-08 18:35:59 +01:00
if (index < 0 || index >= imagesArrLocations.size()) {
photoProgressViews[a].setBackgroundState(-1, animated);
return;
}
2014-10-28 18:07:44 +01:00
TLRPC.FileLocation location = imagesArrLocations.get(index);
2017-07-08 18:32:04 +02:00
f = FileLoader.getPathToAttach(location, avatarsDialogId != 0 || isEvent);
2018-07-30 04:07:02 +02:00
} else if (currentSecureDocument != null) {
if (index < 0 || index >= secureDocuments.size()) {
photoProgressViews[a].setBackgroundState(-1, animated);
return;
}
SecureDocument location = secureDocuments.get(index);
f = FileLoader.getPathToAttach(location, true);
2015-01-02 23:15:07 +01:00
} else if (currentPathObject != null) {
2018-07-30 04:07:02 +02:00
f = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_DOCUMENT), currentFileNames[a]);
2015-01-02 23:15:07 +01:00
if (!f.exists()) {
2018-07-30 04:07:02 +02:00
f = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_CACHE), currentFileNames[a]);
2015-01-02 23:15:07 +01:00
}
}
2018-07-30 04:07:02 +02:00
boolean exists = f.exists();
if (f != null && (exists || canStream)) {
2016-03-06 02:49:31 +01:00
if (isVideo) {
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setBackgroundState(3, animated);
2014-10-28 18:07:44 +01:00
} else {
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setBackgroundState(-1, animated);
2014-10-28 18:07:44 +01:00
}
2018-07-30 04:07:02 +02:00
if (a == 0) {
if (!exists) {
if (!FileLoader.getInstance(currentAccount).isLoadingFile(currentFileNames[a])) {
menuItem.hideSubItem(gallery_menu_cancel_loading);
} else {
menuItem.showSubItem(gallery_menu_cancel_loading);
}
} else {
menuItem.hideSubItem(gallery_menu_cancel_loading);
}
}
} else {
2016-03-06 02:49:31 +01:00
if (isVideo) {
2018-07-30 04:07:02 +02:00
if (!FileLoader.getInstance(currentAccount).isLoadingFile(currentFileNames[a])) {
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setBackgroundState(2, false);
} else {
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setBackgroundState(1, false);
}
} else {
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setBackgroundState(0, animated);
}
2015-01-02 23:15:07 +01:00
Float progress = ImageLoader.getInstance().getFileProgress(currentFileNames[a]);
2014-10-28 18:07:44 +01:00
if (progress == null) {
progress = 0.0f;
}
2017-03-31 01:58:05 +02:00
photoProgressViews[a].setProgress(progress, false);
2014-10-28 18:07:44 +01:00
}
if (a == 0) {
2019-01-23 18:03:33 +01:00
canZoom = !imagesArrLocals.isEmpty() || (currentFileNames[0] != null && /*!isVideo && */photoProgressViews[0].backgroundState != 0);
}
} else {
boolean isLocalVideo = false;
if (!imagesArrLocals.isEmpty() && index >= 0 && index < imagesArrLocals.size()) {
Object object = imagesArrLocals.get(index);
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = ((MediaController.PhotoEntry) object);
isLocalVideo = photoEntry.isVideo;
}
}
if (isLocalVideo) {
photoProgressViews[a].setBackgroundState(3, animated);
} else {
photoProgressViews[a].setBackgroundState(-1, animated);
}
}
}
2018-07-30 04:07:02 +02:00
public int getSelectiongLength() {
return captionEditText != null ? captionEditText.getSelectionLength() : 0;
}
private void setIndexToImage(ImageReceiver imageReceiver, int index) {
imageReceiver.setOrientation(0, false);
2018-07-30 04:07:02 +02:00
if (!secureDocuments.isEmpty()) {
if (index >= 0 && index < secureDocuments.size()) {
Object object = secureDocuments.get(index);
int size = (int) (AndroidUtilities.getPhotoSize() / AndroidUtilities.density);
ImageReceiver.BitmapHolder placeHolder = null;
if (currentThumb != null && imageReceiver == centerImage) {
placeHolder = currentThumb;
}
if (placeHolder == null) {
placeHolder = placeProvider.getThumbForPhoto(null, null, index);
}
SecureDocument document = secureDocuments.get(index);
int imageSize = document.secureFile.size;
2019-02-08 03:30:32 +01:00
imageReceiver.setImage(document, "d", placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : null, null, null, imageSize, null, null, 0);
2018-07-30 04:07:02 +02:00
}
} else if (!imagesArrLocals.isEmpty()) {
2014-06-12 03:13:15 +02:00
if (index >= 0 && index < imagesArrLocals.size()) {
2015-01-02 23:15:07 +01:00
Object object = imagesArrLocals.get(index);
int size = (int) (AndroidUtilities.getPhotoSize() / AndroidUtilities.density);
2018-07-30 04:07:02 +02:00
ImageReceiver.BitmapHolder placeHolder = null;
2014-06-12 03:13:15 +02:00
if (currentThumb != null && imageReceiver == centerImage) {
placeHolder = currentThumb;
}
2015-01-02 23:15:07 +01:00
if (placeHolder == null) {
placeHolder = placeProvider.getThumbForPhoto(null, null, index);
}
String path = null;
TLRPC.Document document = null;
2018-07-30 04:07:02 +02:00
WebFile webDocument = null;
2019-01-23 18:03:33 +01:00
TLRPC.PhotoSize photo = null;
2015-01-02 23:15:07 +01:00
int imageSize = 0;
String filter = null;
2017-07-08 18:32:04 +02:00
boolean isVideo = false;
2018-07-30 04:07:02 +02:00
int cacheType = 0;
2015-01-02 23:15:07 +01:00
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = (MediaController.PhotoEntry) object;
2017-07-08 18:32:04 +02:00
isVideo = photoEntry.isVideo;
2016-10-11 13:57:01 +02:00
if (!photoEntry.isVideo) {
if (photoEntry.imagePath != null) {
path = photoEntry.imagePath;
} else {
imageReceiver.setOrientation(photoEntry.orientation, false);
path = photoEntry.path;
}
filter = String.format(Locale.US, "%d_%d", size, size);
2017-07-08 18:32:04 +02:00
} else {
2018-07-30 04:07:02 +02:00
if (photoEntry.thumbPath != null) {
path = photoEntry.thumbPath;
} else {
path = "vthumb://" + photoEntry.imageId + ":" + photoEntry.path;
}
2016-10-11 13:57:01 +02:00
}
2017-03-31 01:58:05 +02:00
} else if (object instanceof TLRPC.BotInlineResult) {
2018-07-30 04:07:02 +02:00
cacheType = 1;
2016-10-11 13:57:01 +02:00
TLRPC.BotInlineResult botInlineResult = ((TLRPC.BotInlineResult) object);
if (botInlineResult.type.equals("video") || MessageObject.isVideoDocument(botInlineResult.document)) {
if (botInlineResult.document != null) {
2019-01-23 18:03:33 +01:00
photo = FileLoader.getClosestPhotoSizeWithSize(botInlineResult.document.thumbs, 90);
2018-07-30 04:07:02 +02:00
} else if (botInlineResult.thumb instanceof TLRPC.TL_webDocument) {
webDocument = WebFile.createWithWebDocument(botInlineResult.thumb);
2016-10-11 13:57:01 +02:00
}
} else if (botInlineResult.type.equals("gif") && botInlineResult.document != null) {
document = botInlineResult.document;
imageSize = botInlineResult.document.size;
filter = "d";
} else if (botInlineResult.photo != null) {
TLRPC.PhotoSize sizeFull = FileLoader.getClosestPhotoSizeWithSize(botInlineResult.photo.sizes, AndroidUtilities.getPhotoSize());
2019-01-23 18:03:33 +01:00
photo = sizeFull;
2016-10-11 13:57:01 +02:00
imageSize = sizeFull.size;
filter = String.format(Locale.US, "%d_%d", size, size);
2018-07-30 04:07:02 +02:00
} else if (botInlineResult.content instanceof TLRPC.TL_webDocument) {
2016-10-11 13:57:01 +02:00
if (botInlineResult.type.equals("gif")) {
filter = "d";
} else {
filter = String.format(Locale.US, "%d_%d", size, size);
}
2018-07-30 04:07:02 +02:00
webDocument = WebFile.createWithWebDocument(botInlineResult.content);
}
2015-01-02 23:15:07 +01:00
} else if (object instanceof MediaController.SearchImage) {
2018-07-30 04:07:02 +02:00
cacheType = 1;
MediaController.SearchImage photoEntry = (MediaController.SearchImage) object;
2018-07-30 04:07:02 +02:00
if (photoEntry.photoSize != null) {
2019-01-23 18:03:33 +01:00
photo = photoEntry.photoSize;
2018-07-30 04:07:02 +02:00
imageSize = photoEntry.photoSize.size;
} else if (photoEntry.imagePath != null) {
path = photoEntry.imagePath;
} else if (photoEntry.document != null) {
document = photoEntry.document;
imageSize = photoEntry.document.size;
} else {
path = photoEntry.imageUrl;
imageSize = photoEntry.size;
}
filter = "d";
}
if (document != null) {
2019-01-23 18:03:33 +01:00
TLRPC.PhotoSize thumb = FileLoader.getClosestPhotoSizeWithSize(document.thumbs, 90);
2019-02-08 03:30:32 +01:00
imageReceiver.setImage(document, "d", placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : null, placeHolder == null ? thumb : null, String.format(Locale.US, "%d_%d", size, size), imageSize, null, object, cacheType);
2016-10-11 13:57:01 +02:00
} else if (photo != null) {
2019-02-08 03:30:32 +01:00
imageReceiver.setImage(photo, filter, placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : null, null, String.format(Locale.US, "%d_%d", size, size), imageSize, null, object, cacheType);
2018-07-30 04:07:02 +02:00
} else if (webDocument != null) {
2019-01-23 18:03:33 +01:00
imageReceiver.setImage(webDocument, filter, placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : (isVideo && parentActivity != null ? parentActivity.getResources().getDrawable(R.drawable.nophotos) : null), null, object, cacheType);
} else {
2018-07-30 04:07:02 +02:00
imageReceiver.setImage(path, filter, placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : (isVideo && parentActivity != null ? parentActivity.getResources().getDrawable(R.drawable.nophotos) : null), null, imageSize);
2015-01-02 23:15:07 +01:00
}
2014-06-12 03:13:15 +02:00
} else {
imageReceiver.setImageBitmap((Bitmap) null);
}
2014-06-12 03:13:15 +02:00
} else {
2019-01-23 18:03:33 +01:00
MessageObject messageObject;
if (!imagesArr.isEmpty() && index >= 0 && index < imagesArr.size()) {
messageObject = imagesArr.get(index);
imageReceiver.setShouldGenerateQualityThumb(true);
} else {
messageObject = null;
}
2019-01-23 18:03:33 +01:00
if (messageObject != null) {
if (messageObject.isVideo()) {
2015-02-01 19:51:02 +01:00
imageReceiver.setNeedsQualityThumb(true);
2016-03-06 02:49:31 +01:00
if (messageObject.photoThumbs != null && !messageObject.photoThumbs.isEmpty()) {
2018-07-30 04:07:02 +02:00
ImageReceiver.BitmapHolder placeHolder = null;
2014-06-12 03:13:15 +02:00
if (currentThumb != null && imageReceiver == centerImage) {
placeHolder = currentThumb;
}
2015-02-01 19:51:02 +01:00
TLRPC.PhotoSize thumbLocation = FileLoader.getClosestPhotoSizeWithSize(messageObject.photoThumbs, 100);
2019-02-08 03:30:32 +01:00
imageReceiver.setImage(null, null, placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : null, placeHolder == null ? thumbLocation : null, "b", 0, null, messageObject, 1);
2014-06-12 03:13:15 +02:00
} else {
imageReceiver.setImageBitmap(parentActivity.getResources().getDrawable(R.drawable.photoview_placeholder));
}
2019-01-23 18:03:33 +01:00
return;
} else if (currentAnimation != null) {
imageReceiver.setImageBitmap(currentAnimation);
currentAnimation.setSecondParentView(containerView);
2019-01-23 18:03:33 +01:00
return;
} else if (sharedMediaType == DataQuery.MEDIA_FILE) {
if (messageObject.canPreviewDocument()) {
TLRPC.Document document = messageObject.getDocument();
imageReceiver.setNeedsQualityThumb(true);
ImageReceiver.BitmapHolder placeHolder = null;
if (currentThumb != null && imageReceiver == centerImage) {
placeHolder = currentThumb;
}
TLRPC.PhotoSize thumbLocation = messageObject != null ? FileLoader.getClosestPhotoSizeWithSize(messageObject.photoThumbs, 100) : null;
2019-02-08 03:30:32 +01:00
imageReceiver.setImage(document, null, placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : null, placeHolder == null ? thumbLocation : null, "b", document.size, null, messageObject, 0);
2019-01-23 18:03:33 +01:00
} else {
OtherDocumentPlaceholderDrawable drawable = new OtherDocumentPlaceholderDrawable(parentActivity, containerView, messageObject);
imageReceiver.setImageBitmap(drawable);
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
return;
}
}
int size[] = new int[1];
TLObject fileLocation = getFileLocation(index, size);
if (fileLocation != null) {
imageReceiver.setNeedsQualityThumb(true);
ImageReceiver.BitmapHolder placeHolder = null;
if (currentThumb != null && imageReceiver == centerImage) {
placeHolder = currentThumb;
}
if (size[0] == 0) {
size[0] = -1;
}
2019-01-23 18:03:33 +01:00
TLRPC.PhotoSize thumbLocation = messageObject != null ? FileLoader.getClosestPhotoSizeWithSize(messageObject.photoThumbs, 100) : null;
if (thumbLocation != null && thumbLocation == fileLocation) {
thumbLocation = null;
}
boolean cacheOnly = messageObject != null && messageObject.isWebpage() || avatarsDialogId != 0 || isEvent;
2019-02-08 03:30:32 +01:00
imageReceiver.setImage(fileLocation, null, placeHolder != null ? new BitmapDrawable(placeHolder.bitmap) : null, placeHolder == null ? thumbLocation : null, "b", size[0], null, messageObject, cacheOnly ? 1 : 0);
} else {
imageReceiver.setNeedsQualityThumb(true);
2014-06-12 03:13:15 +02:00
if (size[0] == 0) {
imageReceiver.setImageBitmap((Bitmap) null);
} else {
imageReceiver.setImageBitmap(parentActivity.getResources().getDrawable(R.drawable.photoview_placeholder));
}
2014-06-11 02:22:42 +02:00
}
}
}
2018-07-30 04:07:02 +02:00
public static boolean isShowingImage(MessageObject object) {
boolean result = false;
if (Instance != null) {
2019-03-03 21:40:48 +01:00
result = !Instance.pipAnimationInProgress && Instance.isVisible && !Instance.disableShowCheck && object != null && Instance.currentMessageObject != null && Instance.currentMessageObject.getId() == object.getId() && Instance.currentMessageObject.getDialogId() == object.getDialogId();
2018-07-30 04:07:02 +02:00
}
if (!result && PipInstance != null) {
2019-03-03 21:40:48 +01:00
result = PipInstance.isVisible && !PipInstance.disableShowCheck && object != null && PipInstance.currentMessageObject != null && PipInstance.currentMessageObject.getId() == object.getId() && PipInstance.currentMessageObject.getDialogId() == object.getDialogId();
2018-07-30 04:07:02 +02:00
}
return result;
}
2019-03-03 21:40:48 +01:00
public static boolean isPlayingMessageInPip(MessageObject object) {
return PipInstance != null && object != null && PipInstance.currentMessageObject != null && PipInstance.currentMessageObject.getId() == object.getId() && PipInstance.currentMessageObject.getDialogId() == object.getDialogId();
}
public static boolean isPlayingMessage(MessageObject object) {
return Instance != null && !Instance.pipAnimationInProgress && Instance.isVisible && object != null && Instance.currentMessageObject != null && Instance.currentMessageObject.getId() == object.getId() && Instance.currentMessageObject.getDialogId() == object.getDialogId();
}
2018-07-30 04:07:02 +02:00
public static boolean isShowingImage(TLRPC.FileLocation object) {
boolean result = false;
if (Instance != null) {
result = Instance.isVisible && !Instance.disableShowCheck && object != null && Instance.currentFileLocation != null && object.local_id == Instance.currentFileLocation.local_id && object.volume_id == Instance.currentFileLocation.volume_id && object.dc_id == Instance.currentFileLocation.dc_id;
}
return result;
}
2018-07-30 04:07:02 +02:00
public static boolean isShowingImage(TLRPC.BotInlineResult object) {
boolean result = false;
if (Instance != null) {
result = Instance.isVisible && !Instance.disableShowCheck && object != null && Instance.currentBotInlineResult != null && object.id == Instance.currentBotInlineResult.id;
}
return result;
2017-07-08 18:32:04 +02:00
}
2018-07-30 04:07:02 +02:00
public static boolean isShowingImage(String object) {
boolean result = false;
if (Instance != null) {
2019-01-23 18:03:33 +01:00
result = Instance.isVisible && !Instance.disableShowCheck && object != null && object.equals(Instance.currentPathObject);
2018-07-30 04:07:02 +02:00
}
return result;
2014-06-12 03:13:15 +02:00
}
2016-10-11 13:57:01 +02:00
public void setParentChatActivity(ChatActivity chatActivity) {
parentChatActivity = chatActivity;
}
2018-07-30 04:07:02 +02:00
public void setMaxSelectedPhotos(int value) {
maxSelectedPhotos = value;
}
2016-10-11 13:57:01 +02:00
public boolean openPhoto(final MessageObject messageObject, long dialogId, long mergeDialogId, final PhotoViewerProvider provider) {
2018-07-30 04:07:02 +02:00
return openPhoto(messageObject, null, null, null, null, 0, provider, null, dialogId, mergeDialogId);
}
2016-10-11 13:57:01 +02:00
public boolean openPhoto(final TLRPC.FileLocation fileLocation, final PhotoViewerProvider provider) {
2018-07-30 04:07:02 +02:00
return openPhoto(null, fileLocation, null, null, null, 0, provider, null, 0, 0);
}
2016-10-11 13:57:01 +02:00
public boolean openPhoto(final ArrayList<MessageObject> messages, final int index, long dialogId, long mergeDialogId, final PhotoViewerProvider provider) {
2018-07-30 04:07:02 +02:00
return openPhoto(messages.get(index), null, messages, null, null, index, provider, null, dialogId, mergeDialogId);
}
public boolean openPhoto(final ArrayList<SecureDocument> documents, final int index, final PhotoViewerProvider provider) {
return openPhoto(null, null, null, documents, null, index, provider, null, 0, 0);
2014-06-12 03:13:15 +02:00
}
2016-10-11 13:57:01 +02:00
public boolean openPhotoForSelect(final ArrayList<Object> photos, final int index, int type, final PhotoViewerProvider provider, ChatActivity chatActivity) {
sendPhotoType = type;
if (pickerViewSendButton != null) {
2018-07-30 04:07:02 +02:00
FrameLayout.LayoutParams layoutParams2 = (FrameLayout.LayoutParams) pickerViewSendButton.getLayoutParams();
if (sendPhotoType == 4 || sendPhotoType == 5) {
pickerViewSendButton.setImageResource(R.drawable.ic_send);
pickerViewSendButton.setPadding(AndroidUtilities.dp(4), 0, 0, 0);
layoutParams2.bottomMargin = AndroidUtilities.dp(19);
2019-01-23 18:03:33 +01:00
} else if (sendPhotoType == SELECT_TYPE_AVATAR || sendPhotoType == SELECT_TYPE_WALLPAPER) {
pickerViewSendButton.setImageResource(R.drawable.bigcheck);
pickerViewSendButton.setPadding(0, AndroidUtilities.dp(1), 0, 0);
2018-07-30 04:07:02 +02:00
layoutParams2.bottomMargin = AndroidUtilities.dp(19);
} else {
pickerViewSendButton.setImageResource(R.drawable.ic_send);
pickerViewSendButton.setPadding(AndroidUtilities.dp(4), 0, 0, 0);
2018-07-30 04:07:02 +02:00
layoutParams2.bottomMargin = AndroidUtilities.dp(14);
}
2018-07-30 04:07:02 +02:00
pickerViewSendButton.setLayoutParams(layoutParams2);
}
2018-07-30 04:07:02 +02:00
return openPhoto(null, null, null, null, photos, index, provider, chatActivity, 0, 0);
}
private boolean checkAnimation() {
if (animationInProgress != 0) {
if (Math.abs(transitionAnimationStartTime - System.currentTimeMillis()) >= 500) {
if (animationEndRunnable != null) {
animationEndRunnable.run();
animationEndRunnable = null;
}
animationInProgress = 0;
}
}
return animationInProgress != 0;
}
2019-01-23 18:03:33 +01:00
private void setCropTranslations(boolean animated) {
if (sendPhotoType != SELECT_TYPE_AVATAR) {
return;
}
int bitmapWidth = centerImage.getBitmapWidth();
int bitmapHeight = centerImage.getBitmapHeight();
if (bitmapWidth == 0 || bitmapHeight == 0) {
return;
}
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
float scaleFinal = scaleX > scaleY ? scaleY : scaleX;
float minSide = Math.min(getContainerViewWidth(1), getContainerViewHeight(1));
float newScaleX = minSide / (float) bitmapWidth;
float newScaleY = minSide / (float) bitmapHeight;
float newScale = newScaleX > newScaleY ? newScaleX : newScaleY;
if (animated) {
animationStartTime = System.currentTimeMillis();
animateToX = getLeftInset() / 2 - getRightInset() / 2;
if (currentEditMode == 2) {
animateToY = AndroidUtilities.dp(92)-AndroidUtilities.dp(24 + 32);
} else if (currentEditMode == 3) {
animateToY = AndroidUtilities.dp(44)-AndroidUtilities.dp(24 + 32);
}
//animateToY = -AndroidUtilities.dp(24 + 32) + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight / 2 : 0);
animateToScale = newScale / scaleFinal;
zoomAnimation = true;
} else {
animationStartTime = 0;
translationX = getLeftInset() / 2 - getRightInset() / 2;
translationY = -AndroidUtilities.dp(24 + 32) + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight / 2 : 0);
scale = newScale / scaleFinal;
updateMinMax(scale);
}
}
private void setCropBitmap() {
if (sendPhotoType != SELECT_TYPE_AVATAR) {
return;
}
Bitmap bitmap = centerImage.getBitmap();
int orientation = centerImage.getOrientation();
if (bitmap == null) {
bitmap = animatingImageView.getBitmap();
orientation = animatingImageView.getOrientation();
}
if (bitmap != null) {
photoCropView.setBitmap(bitmap, orientation, false, false);
if (currentEditMode == 0) {
setCropTranslations(false);
}
}
}
private void initCropView() {
if (sendPhotoType != SELECT_TYPE_AVATAR) {
return;
}
photoCropView.setBitmap(null, 0, false, false);
photoCropView.onAppear();
photoCropView.setVisibility(View.VISIBLE);
photoCropView.setAlpha(1.0f);
photoCropView.onAppeared();
padImageForHorizontalInsets = true;
}
2018-07-30 04:07:02 +02:00
public boolean openPhoto(final MessageObject messageObject, final TLRPC.FileLocation fileLocation, final ArrayList<MessageObject> messages, final ArrayList<SecureDocument> documents, final ArrayList<Object> photos, final int index, final PhotoViewerProvider provider, ChatActivity chatActivity, long dialogId, long mDialogId) {
if (parentActivity == null || isVisible || provider == null && checkAnimation() || messageObject == null && fileLocation == null && messages == null && photos == null && documents == null) {
2016-10-11 13:57:01 +02:00
return false;
}
2019-03-03 21:40:48 +01:00
final PlaceProviderObject object = provider.getPlaceForPhoto(messageObject, fileLocation, index, true);
if (object == null && photos == null) {
2016-10-11 13:57:01 +02:00
return false;
}
2017-03-31 01:58:05 +02:00
lastInsets = null;
WindowManager wm = (WindowManager) parentActivity.getSystemService(Context.WINDOW_SERVICE);
2016-10-11 13:57:01 +02:00
if (attachedToWindow) {
try {
wm.removeView(windowView);
} catch (Exception e) {
//don't promt
}
2014-07-23 01:27:00 +02:00
}
2014-11-21 11:59:05 +01:00
try {
2015-10-29 18:10:07 +01:00
windowLayoutParams.type = WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
2016-10-11 13:57:01 +02:00
if (Build.VERSION.SDK_INT >= 21) {
windowLayoutParams.flags = WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN |
WindowManager.LayoutParams.FLAG_LAYOUT_INSET_DECOR |
2019-01-23 18:03:33 +01:00
WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM |
2016-10-11 13:57:01 +02:00
WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS;
} else {
2019-01-23 18:03:33 +01:00
windowLayoutParams.flags = WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM;
2016-10-11 13:57:01 +02:00
}
windowLayoutParams.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE | WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION;
2015-10-29 18:10:07 +01:00
windowView.setFocusable(false);
containerView.setFocusable(false);
2014-11-21 11:59:05 +01:00
wm.addView(windowView, windowLayoutParams);
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
2016-10-11 13:57:01 +02:00
return false;
2014-11-21 11:59:05 +01:00
}
2017-03-31 01:58:05 +02:00
doneButtonPressed = false;
parentChatActivity = chatActivity;
2014-11-21 11:59:05 +01:00
actionBar.setTitle(LocaleController.formatString("Of", R.string.Of, 1, 1));
2019-01-23 18:03:33 +01:00
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.fileDidFailedLoad);
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.fileDidLoad);
2018-07-30 04:07:02 +02:00
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.FileLoadProgressChanged);
2019-01-23 18:03:33 +01:00
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.mediaCountDidLoad);
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.mediaDidLoad);
2018-07-30 04:07:02 +02:00
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.dialogPhotosLoaded);
2019-01-23 18:03:33 +01:00
NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.emojiDidLoad);
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.filePreparingFailed);
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.fileNewChunkAvailable);
2014-11-21 11:59:05 +01:00
placeProvider = provider;
2015-11-26 22:04:02 +01:00
mergeDialogId = mDialogId;
currentDialogId = dialogId;
2017-12-08 18:35:59 +01:00
selectedPhotosAdapter.notifyDataSetChanged();
if (velocityTracker == null) {
velocityTracker = VelocityTracker.obtain();
}
isVisible = true;
2019-01-23 18:03:33 +01:00
2017-12-08 18:35:59 +01:00
togglePhotosListView(false, false);
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
createCropView();
toggleActionBar(false, false);
} else {
toggleActionBar(true, false);
}
2019-03-03 21:40:48 +01:00
seekToProgressPending2 = 0;
skipFirstBufferingProgress = false;
playerInjected = false;
if (object != null) {
disableShowCheck = true;
animationInProgress = 1;
if (messageObject != null) {
currentAnimation = object.imageReceiver.getAnimation();
2019-03-03 21:40:48 +01:00
if (currentAnimation != null && messageObject.isVideo()) {
object.imageReceiver.setAllowStartAnimation(false);
object.imageReceiver.stopAnimation();
if (MediaController.getInstance().isPlayingMessage(messageObject)) {
seekToProgressPending2 = messageObject.audioProgress;
}
skipFirstBufferingProgress = injectingVideoPlayer == null && !FileLoader.getInstance(messageObject.currentAccount).isLoadingVideo(messageObject.getDocument(), true) && (currentAnimation.hasBitmap() || !FileLoader.getInstance(messageObject.currentAccount).isLoadingVideo(messageObject.getDocument(), false));
currentAnimation = null;
}
}
2018-07-30 04:07:02 +02:00
onPhotoShow(messageObject, fileLocation, messages, documents, photos, index, object);
2019-01-23 18:03:33 +01:00
if (sendPhotoType == SELECT_TYPE_AVATAR) {
photoCropView.setVisibility(View.VISIBLE);
photoCropView.setAlpha(0.0f);
photoCropView.setFreeform(false);
}
windowView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener(){
@Override
2019-01-23 18:03:33 +01:00
public boolean onPreDraw() {
windowView.getViewTreeObserver().removeOnPreDrawListener(this);
final Rect drawRegion = object.imageReceiver.getDrawRegion();
int orientation = object.imageReceiver.getOrientation();
int animatedOrientation = object.imageReceiver.getAnimatedOrientation();
if (animatedOrientation != 0) {
orientation = animatedOrientation;
}
2019-01-23 18:03:33 +01:00
animatingImageView.setVisibility(View.VISIBLE);
animatingImageView.setRadius(object.radius);
animatingImageView.setOrientation(orientation);
animatingImageView.setNeedRadius(object.radius != 0);
animatingImageView.setImageBitmap(object.thumb);
initCropView();
if (sendPhotoType == SELECT_TYPE_AVATAR) {
photoCropView.hideBackView();
photoCropView.setAspectRatio(1.0f);
}
animatingImageView.setAlpha(1.0f);
animatingImageView.setPivotX(0.0f);
animatingImageView.setPivotY(0.0f);
animatingImageView.setScaleX(object.scale);
animatingImageView.setScaleY(object.scale);
animatingImageView.setTranslationX(object.viewX + drawRegion.left * object.scale);
animatingImageView.setTranslationY(object.viewY + drawRegion.top * object.scale);
final ViewGroup.LayoutParams layoutParams = animatingImageView.getLayoutParams();
layoutParams.width = drawRegion.width();
layoutParams.height = drawRegion.height();
animatingImageView.setLayoutParams(layoutParams);
float scaleX;
float scaleY;
float scale;
float yPos;
float xPos;
if (sendPhotoType == SELECT_TYPE_AVATAR) {
float statusBarHeight = (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0);
float measuredHeight = (float) photoCropView.getMeasuredHeight() - AndroidUtilities.dp(64) - statusBarHeight;
float minSide = Math.min(photoCropView.getMeasuredWidth(), measuredHeight) - 2 * AndroidUtilities.dp(16);
float centerX = photoCropView.getMeasuredWidth() / 2.0f;
float centerY = statusBarHeight + measuredHeight / 2.0f;
float left = centerX - (minSide / 2.0f);
float top = centerY - (minSide / 2.0f);
float right = centerX + (minSide / 2.0f);
float bottom = centerY + (minSide / 2.0f);
scaleX = (right - left) / layoutParams.width;
scaleY = (bottom - top) / layoutParams.height;
scale = Math.max(scaleX, scaleY);
yPos = top + (bottom - top - layoutParams.height * scale) / 2;
xPos = (windowView.getMeasuredWidth() - getLeftInset() - getRightInset() - layoutParams.width * scale) / 2.0f + getLeftInset();
} else {
scaleX = (float) windowView.getMeasuredWidth() / layoutParams.width;
scaleY = (float) (AndroidUtilities.displaySize.y + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0)) / layoutParams.height;
scale = scaleX > scaleY ? scaleY : scaleX;
yPos = ((AndroidUtilities.displaySize.y + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0)) - (layoutParams.height * scale)) / 2.0f;
xPos = (windowView.getMeasuredWidth() - layoutParams.width * scale) / 2.0f;
2015-06-29 19:12:11 +02:00
}
2019-01-23 18:03:33 +01:00
int clipHorizontal = Math.abs(drawRegion.left - object.imageReceiver.getImageX());
int clipVertical = Math.abs(drawRegion.top - object.imageReceiver.getImageY());
int coords2[] = new int[2];
object.parentView.getLocationInWindow(coords2);
int clipTop = coords2[1] - (Build.VERSION.SDK_INT >= 21 ? 0 : AndroidUtilities.statusBarHeight) - (object.viewY + drawRegion.top) + object.clipTopAddition;
if (clipTop < 0) {
clipTop = 0;
}
2019-01-23 18:03:33 +01:00
int clipBottom = (object.viewY + drawRegion.top + layoutParams.height) - (coords2[1] + object.parentView.getHeight() - (Build.VERSION.SDK_INT >= 21 ? 0 : AndroidUtilities.statusBarHeight)) + object.clipBottomAddition;
if (clipBottom < 0) {
clipBottom = 0;
}
2019-01-23 18:03:33 +01:00
clipTop = Math.max(clipTop, clipVertical);
clipBottom = Math.max(clipBottom, clipVertical);
animationValues[0][0] = animatingImageView.getScaleX();
animationValues[0][1] = animatingImageView.getScaleY();
animationValues[0][2] = animatingImageView.getTranslationX();
animationValues[0][3] = animatingImageView.getTranslationY();
animationValues[0][4] = clipHorizontal * object.scale;
animationValues[0][5] = clipTop * object.scale;
animationValues[0][6] = clipBottom * object.scale;
animationValues[0][7] = animatingImageView.getRadius();
2019-03-03 21:40:48 +01:00
animationValues[0][8] = clipVertical * object.scale;
animationValues[0][9] = clipHorizontal * object.scale;
2019-01-23 18:03:33 +01:00
animationValues[1][0] = scale;
animationValues[1][1] = scale;
animationValues[1][2] = xPos;
animationValues[1][3] = yPos;
animationValues[1][4] = 0;
animationValues[1][5] = 0;
animationValues[1][6] = 0;
animationValues[1][7] = 0;
2019-03-03 21:40:48 +01:00
animationValues[1][8] = 0;
animationValues[1][9] = 0;
2019-01-23 18:03:33 +01:00
animatingImageView.setAnimationProgress(0);
backgroundDrawable.setAlpha(0);
containerView.setAlpha(0);
final AnimatorSet animatorSet = new AnimatorSet();
ArrayList<Animator> animators = new ArrayList<>(sendPhotoType == SELECT_TYPE_AVATAR ? 4 : 3);
animators.add(ObjectAnimator.ofFloat(animatingImageView, AnimationProperties.CLIPPING_IMAGE_VIEW_PROGRESS, 0.0f, 1.0f));
animators.add(ObjectAnimator.ofInt(backgroundDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 0, 255));
animators.add(ObjectAnimator.ofFloat(containerView, View.ALPHA, 0.0f, 1.0f));
if (sendPhotoType == SELECT_TYPE_AVATAR) {
animators.add(ObjectAnimator.ofFloat(photoCropView, View.ALPHA, 0, 1));
}
animatorSet.playTogether(animators);
animationEndRunnable = () -> {
if (containerView == null || windowView == null) {
return;
2016-10-11 13:57:01 +02:00
}
2019-01-23 18:03:33 +01:00
if (Build.VERSION.SDK_INT >= 18) {
containerView.setLayerType(View.LAYER_TYPE_NONE, null);
}
animationInProgress = 0;
transitionAnimationStartTime = 0;
setImages();
setCropBitmap();
if (sendPhotoType == SELECT_TYPE_AVATAR) {
photoCropView.showBackView();
}
containerView.invalidate();
animatingImageView.setVisibility(View.GONE);
if (showAfterAnimation != null) {
showAfterAnimation.imageReceiver.setVisible(true, true);
}
if (hideAfterAnimation != null) {
hideAfterAnimation.imageReceiver.setVisible(false, true);
}
if (photos != null && sendPhotoType != 3) {
if (Build.VERSION.SDK_INT >= 21) {
windowLayoutParams.flags = WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN |
WindowManager.LayoutParams.FLAG_LAYOUT_INSET_DECOR |
WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS;
} else {
windowLayoutParams.flags = 0;
}
windowLayoutParams.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE | WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION;
WindowManager wm1 = (WindowManager) parentActivity.getSystemService(Context.WINDOW_SERVICE);
wm1.updateViewLayout(windowView, windowLayoutParams);
windowView.setFocusable(true);
containerView.setFocusable(true);
}
};
2019-01-23 18:03:33 +01:00
animatorSet.setDuration(200);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
2019-01-23 18:03:33 +01:00
public void onAnimationEnd(Animator animation) {
AndroidUtilities.runOnUIThread(() -> {
NotificationCenter.getInstance(currentAccount).setAnimationInProgress(false);
if (animationEndRunnable != null) {
animationEndRunnable.run();
animationEndRunnable = null;
}
});
}
});
2019-01-23 18:03:33 +01:00
transitionAnimationStartTime = System.currentTimeMillis();
AndroidUtilities.runOnUIThread(() -> {
NotificationCenter.getInstance(currentAccount).setAllowedNotificationsDutingAnimation(new int[]{NotificationCenter.dialogsNeedReload, NotificationCenter.closeChats, NotificationCenter.mediaCountDidLoad, NotificationCenter.mediaDidLoad, NotificationCenter.dialogPhotosLoaded});
NotificationCenter.getInstance(currentAccount).setAnimationInProgress(true);
animatorSet.start();
});
if (Build.VERSION.SDK_INT >= 18) {
containerView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
}
backgroundDrawable.drawRunnable = () -> {
disableShowCheck = false;
object.imageReceiver.setVisible(false, true);
};
return true;
}
});
} else {
2016-10-11 13:57:01 +02:00
if (photos != null && sendPhotoType != 3) {
if (Build.VERSION.SDK_INT >= 21) {
windowLayoutParams.flags = WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN |
WindowManager.LayoutParams.FLAG_LAYOUT_INSET_DECOR |
WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS;
} else {
windowLayoutParams.flags = 0;
}
windowLayoutParams.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE | WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION;
2015-10-29 18:10:07 +01:00
wm.updateViewLayout(windowView, windowLayoutParams);
windowView.setFocusable(true);
containerView.setFocusable(true);
}
backgroundDrawable.setAlpha(255);
containerView.setAlpha(1.0f);
2018-07-30 04:07:02 +02:00
onPhotoShow(messageObject, fileLocation, messages, documents, photos, index, object);
2019-01-23 18:03:33 +01:00
initCropView();
setCropBitmap();
}
2016-10-11 13:57:01 +02:00
return true;
}
public void closePhoto(boolean animated, boolean fromEditMode) {
if (!fromEditMode && currentEditMode != 0) {
2016-10-11 13:57:01 +02:00
if (currentEditMode == 3 && photoPaintView != null) {
2018-08-27 10:33:11 +02:00
photoPaintView.maybeShowDismissalAlert(this, parentActivity, () -> switchToEditMode(0));
2016-10-11 13:57:01 +02:00
return;
}
switchToEditMode(0);
return;
}
if (qualityChooseView != null && qualityChooseView.getTag() != null) {
2017-03-31 01:58:05 +02:00
qualityPicker.cancelButton.callOnClick();
return;
}
try {
if (visibleDialog != null) {
visibleDialog.dismiss();
visibleDialog = null;
}
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
2018-07-30 04:07:02 +02:00
if (Build.VERSION.SDK_INT >= 21 && actionBar != null) {
2019-01-23 18:03:33 +01:00
int flagsToClear = containerView.getSystemUiVisibility() & (View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
if (flagsToClear != 0) {
containerView.setSystemUiVisibility(containerView.getSystemUiVisibility() & ~flagsToClear);
2018-07-30 04:07:02 +02:00
}
}
if (currentEditMode != 0) {
if (currentEditMode == 2) {
photoFilterView.shutdown();
containerView.removeView(photoFilterView);
photoFilterView = null;
} else if (currentEditMode == 1) {
editorDoneLayout.setVisibility(View.GONE);
photoCropView.setVisibility(View.GONE);
2018-08-27 10:33:11 +02:00
} else if (currentEditMode == 3) {
photoPaintView.shutdown();
containerView.removeView(photoPaintView);
photoPaintView = null;
}
currentEditMode = 0;
2019-01-23 18:03:33 +01:00
} else if (sendPhotoType == SELECT_TYPE_AVATAR) {
photoCropView.setVisibility(View.GONE);
}
2018-07-30 04:07:02 +02:00
if (parentActivity == null || !isInline && !isVisible || checkAnimation() || placeProvider == null) {
return;
}
2016-04-22 15:49:00 +02:00
if (captionEditText.hideActionMode() && !fromEditMode) {
return;
}
2019-03-03 21:40:48 +01:00
final PlaceProviderObject object = placeProvider.getPlaceForPhoto(currentMessageObject, currentFileLocation, currentIndex, true);
if (videoPlayer != null && object != null) {
AnimatedFileDrawable animation = object.imageReceiver.getAnimation();
if (animation != null) {
if (textureUploaded) {
Bitmap bitmap = animation.getAnimatedBitmap();
if (bitmap != null) {
try {
Bitmap src = videoTextureView.getBitmap(bitmap.getWidth(), bitmap.getHeight());
Canvas canvas = new Canvas(bitmap);
canvas.drawBitmap(src, 0, 0, null);
src.recycle();
} catch (Throwable e) {
FileLog.e(e);
}
}
}
animation.seekTo(videoPlayer.getCurrentPosition(), !FileLoader.getInstance(currentMessageObject.currentAccount).isLoadingVideo(currentMessageObject.getDocument(), true));
object.imageReceiver.setAllowStartAnimation(true);
object.imageReceiver.startAnimation();
}
}
releasePlayer();
captionEditText.onDestroy();
parentChatActivity = null;
2018-07-30 04:07:02 +02:00
removeObservers();
isActionBarVisible = false;
if (velocityTracker != null) {
velocityTracker.recycle();
velocityTracker = null;
}
2018-07-30 04:07:02 +02:00
if (isInline) {
isInline = false;
animationInProgress = 0;
onPhotoClosed(object);
containerView.setScaleX(1.0f);
containerView.setScaleY(1.0f);
} else {
if (animated) {
animationInProgress = 1;
animatingImageView.setVisibility(View.VISIBLE);
containerView.invalidate();
2018-07-30 04:07:02 +02:00
AnimatorSet animatorSet = new AnimatorSet();
final ViewGroup.LayoutParams layoutParams = animatingImageView.getLayoutParams();
Rect drawRegion = null;
if (object != null) {
animatingImageView.setNeedRadius(object.radius != 0);
drawRegion = object.imageReceiver.getDrawRegion();
layoutParams.width = drawRegion.right - drawRegion.left;
layoutParams.height = drawRegion.bottom - drawRegion.top;
2019-01-23 18:03:33 +01:00
int orientation = object.imageReceiver.getOrientation();
int animatedOrientation = object.imageReceiver.getAnimatedOrientation();
if (animatedOrientation != 0) {
orientation = animatedOrientation;
}
animatingImageView.setOrientation(orientation);
2018-07-30 04:07:02 +02:00
animatingImageView.setImageBitmap(object.thumb);
} else {
animatingImageView.setNeedRadius(false);
layoutParams.width = centerImage.getImageWidth();
layoutParams.height = centerImage.getImageHeight();
2019-01-23 18:03:33 +01:00
animatingImageView.setOrientation(centerImage.getOrientation());
2018-07-30 04:07:02 +02:00
animatingImageView.setImageBitmap(centerImage.getBitmapSafe());
}
animatingImageView.setLayoutParams(layoutParams);
2019-01-23 18:03:33 +01:00
float scaleX = (float) windowView.getMeasuredWidth() / layoutParams.width;
2018-07-30 04:07:02 +02:00
float scaleY = (float) (AndroidUtilities.displaySize.y + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0)) / layoutParams.height;
float scale2 = scaleX > scaleY ? scaleY : scaleX;
float width = layoutParams.width * scale * scale2;
float height = layoutParams.height * scale * scale2;
2019-01-23 18:03:33 +01:00
float xPos = (windowView.getMeasuredWidth() - width) / 2.0f;
2018-07-30 04:07:02 +02:00
float yPos = ((AndroidUtilities.displaySize.y + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0)) - height) / 2.0f;
animatingImageView.setTranslationX(xPos + translationX);
animatingImageView.setTranslationY(yPos + translationY);
animatingImageView.setScaleX(scale * scale2);
animatingImageView.setScaleY(scale * scale2);
if (object != null) {
object.imageReceiver.setVisible(false, true);
int clipHorizontal = Math.abs(drawRegion.left - object.imageReceiver.getImageX());
int clipVertical = Math.abs(drawRegion.top - object.imageReceiver.getImageY());
int coords2[] = new int[2];
object.parentView.getLocationInWindow(coords2);
int clipTop = coords2[1] - (Build.VERSION.SDK_INT >= 21 ? 0 : AndroidUtilities.statusBarHeight) - (object.viewY + drawRegion.top) + object.clipTopAddition;
if (clipTop < 0) {
clipTop = 0;
}
int clipBottom = (object.viewY + drawRegion.top + (drawRegion.bottom - drawRegion.top)) - (coords2[1] + object.parentView.getHeight() - (Build.VERSION.SDK_INT >= 21 ? 0 : AndroidUtilities.statusBarHeight)) + object.clipBottomAddition;
if (clipBottom < 0) {
clipBottom = 0;
}
clipTop = Math.max(clipTop, clipVertical);
clipBottom = Math.max(clipBottom, clipVertical);
animationValues[0][0] = animatingImageView.getScaleX();
animationValues[0][1] = animatingImageView.getScaleY();
animationValues[0][2] = animatingImageView.getTranslationX();
animationValues[0][3] = animatingImageView.getTranslationY();
animationValues[0][4] = 0;
animationValues[0][5] = 0;
animationValues[0][6] = 0;
animationValues[0][7] = 0;
2019-03-03 21:40:48 +01:00
animationValues[0][8] = 0;
animationValues[0][9] = 0;
2018-07-30 04:07:02 +02:00
animationValues[1][0] = object.scale;
animationValues[1][1] = object.scale;
2019-01-23 18:03:33 +01:00
animationValues[1][2] = object.viewX + drawRegion.left * object.scale;
2018-07-30 04:07:02 +02:00
animationValues[1][3] = object.viewY + drawRegion.top * object.scale;
animationValues[1][4] = clipHorizontal * object.scale;
animationValues[1][5] = clipTop * object.scale;
animationValues[1][6] = clipBottom * object.scale;
animationValues[1][7] = object.radius;
2019-03-03 21:40:48 +01:00
animationValues[1][8] = clipVertical * object.scale;
animationValues[1][9] = clipHorizontal * object.scale;
2018-07-30 04:07:02 +02:00
2019-01-23 18:03:33 +01:00
ArrayList<Animator> animators = new ArrayList<>(sendPhotoType == SELECT_TYPE_AVATAR ? 4 : 3);
animators.add(ObjectAnimator.ofFloat(animatingImageView, AnimationProperties.CLIPPING_IMAGE_VIEW_PROGRESS, 0.0f, 1.0f));
animators.add(ObjectAnimator.ofInt(backgroundDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 0));
animators.add(ObjectAnimator.ofFloat(containerView, View.ALPHA, 0.0f));
if (sendPhotoType == SELECT_TYPE_AVATAR) {
animators.add(ObjectAnimator.ofFloat(photoCropView, View.ALPHA, 0.0f));
}
animatorSet.playTogether(animators);
2018-07-30 04:07:02 +02:00
} else {
int h = (AndroidUtilities.displaySize.y + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0));
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofInt(backgroundDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 0),
ObjectAnimator.ofFloat(animatingImageView, View.ALPHA, 0.0f),
ObjectAnimator.ofFloat(animatingImageView, View.TRANSLATION_Y, translationY >= 0 ? h : -h),
ObjectAnimator.ofFloat(containerView, View.ALPHA, 0.0f)
2018-07-30 04:07:02 +02:00
);
}
2019-01-23 18:03:33 +01:00
animationEndRunnable = () -> {
if (Build.VERSION.SDK_INT >= 18) {
containerView.setLayerType(View.LAYER_TYPE_NONE, null);
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
animationInProgress = 0;
onPhotoClosed(object);
2018-07-30 04:07:02 +02:00
};
2018-07-30 04:07:02 +02:00
animatorSet.setDuration(200);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(() -> {
if (animationEndRunnable != null) {
animationEndRunnable.run();
animationEndRunnable = null;
2018-07-30 04:07:02 +02:00
}
});
}
});
transitionAnimationStartTime = System.currentTimeMillis();
if (Build.VERSION.SDK_INT >= 18) {
containerView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
}
animatorSet.start();
} else {
2018-07-30 04:07:02 +02:00
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(containerView, View.SCALE_X, 0.9f),
ObjectAnimator.ofFloat(containerView, View.SCALE_Y, 0.9f),
ObjectAnimator.ofInt(backgroundDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 0),
ObjectAnimator.ofFloat(containerView, View.ALPHA, 0.0f)
);
2018-07-30 04:07:02 +02:00
animationInProgress = 2;
2019-01-23 18:03:33 +01:00
animationEndRunnable = () -> {
if (containerView == null) {
return;
}
if (Build.VERSION.SDK_INT >= 18) {
containerView.setLayerType(View.LAYER_TYPE_NONE, null);
2015-06-29 19:12:11 +02:00
}
2019-01-23 18:03:33 +01:00
animationInProgress = 0;
onPhotoClosed(object);
containerView.setScaleX(1.0f);
containerView.setScaleY(1.0f);
2018-07-30 04:07:02 +02:00
};
animatorSet.setDuration(200);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animationEndRunnable != null) {
animationEndRunnable.run();
animationEndRunnable = null;
}
2014-06-13 00:37:05 +02:00
}
2018-07-30 04:07:02 +02:00
});
transitionAnimationStartTime = System.currentTimeMillis();
if (Build.VERSION.SDK_INT >= 18) {
containerView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
}
2018-07-30 04:07:02 +02:00
animatorSet.start();
}
if (currentAnimation != null) {
currentAnimation.setSecondParentView(null);
currentAnimation = null;
centerImage.setImageBitmap((Drawable) null);
}
if (placeProvider != null && !placeProvider.canScrollAway()) {
placeProvider.cancelButtonPressed();
2015-06-29 19:12:11 +02:00
}
2016-10-11 13:57:01 +02:00
}
}
2018-07-30 04:07:02 +02:00
private void removeObservers() {
2019-01-23 18:03:33 +01:00
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.fileDidFailedLoad);
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.fileDidLoad);
2018-07-30 04:07:02 +02:00
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.FileLoadProgressChanged);
2019-01-23 18:03:33 +01:00
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.mediaCountDidLoad);
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.mediaDidLoad);
2018-07-30 04:07:02 +02:00
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.dialogPhotosLoaded);
2019-01-23 18:03:33 +01:00
NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.emojiDidLoad);
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.filePreparingFailed);
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.fileNewChunkAvailable);
2018-07-30 04:07:02 +02:00
ConnectionsManager.getInstance(currentAccount).cancelRequestsForGuid(classGuid);
}
public void destroyPhotoViewer() {
if (parentActivity == null || windowView == null) {
return;
}
2018-07-30 04:07:02 +02:00
if (pipVideoView != null) {
pipVideoView.close();
pipVideoView = null;
}
removeObservers();
releasePlayer();
try {
if (windowView.getParent() != null) {
2014-07-23 01:27:00 +02:00
WindowManager wm = (WindowManager) parentActivity.getSystemService(Context.WINDOW_SERVICE);
wm.removeViewImmediate(windowView);
}
windowView = null;
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
2018-07-30 04:07:02 +02:00
if (currentThumb != null) {
currentThumb.release();
currentThumb = null;
}
animatingImageView.setImageBitmap(null);
if (captionEditText != null) {
captionEditText.onDestroy();
}
2018-07-30 04:07:02 +02:00
if (this == PipInstance) {
PipInstance = null;
} else {
Instance = null;
}
}
private void onPhotoClosed(PlaceProviderObject object) {
2014-12-04 21:27:06 +01:00
isVisible = false;
2014-06-11 02:22:42 +02:00
disableShowCheck = true;
currentMessageObject = null;
2016-10-11 13:57:01 +02:00
currentBotInlineResult = null;
currentFileLocation = null;
2018-07-30 04:07:02 +02:00
currentSecureDocument = null;
2014-06-12 03:13:15 +02:00
currentPathObject = null;
2019-01-23 18:03:33 +01:00
sendPhotoType = 0;
2018-07-30 04:07:02 +02:00
if (currentThumb != null) {
currentThumb.release();
currentThumb = null;
}
2017-03-31 01:58:05 +02:00
parentAlert = null;
if (currentAnimation != null) {
currentAnimation.setSecondParentView(null);
currentAnimation = null;
}
2014-10-28 18:07:44 +01:00
for (int a = 0; a < 3; a++) {
2017-03-31 01:58:05 +02:00
if (photoProgressViews[a] != null) {
photoProgressViews[a].setBackgroundState(-1, false);
2014-10-28 18:07:44 +01:00
}
}
2017-03-31 01:58:05 +02:00
requestVideoPreview(0);
if (videoTimelineView != null) {
videoTimelineView.destroy();
}
2015-02-01 19:51:02 +01:00
centerImage.setImageBitmap((Bitmap) null);
leftImage.setImageBitmap((Bitmap) null);
rightImage.setImageBitmap((Bitmap) null);
2019-01-23 18:03:33 +01:00
containerView.post(() -> {
animatingImageView.setImageBitmap(null);
try {
if (windowView.getParent() != null) {
WindowManager wm = (WindowManager) parentActivity.getSystemService(Context.WINDOW_SERVICE);
wm.removeView(windowView);
}
2019-01-23 18:03:33 +01:00
} catch (Exception e) {
FileLog.e(e);
}
});
2014-06-11 02:22:42 +02:00
if (placeProvider != null) {
placeProvider.willHidePhotoViewer();
}
2017-12-08 18:35:59 +01:00
groupedPhotosListView.clear();
2014-06-11 02:22:42 +02:00
placeProvider = null;
2017-12-08 18:35:59 +01:00
selectedPhotosAdapter.notifyDataSetChanged();
2014-06-11 02:22:42 +02:00
disableShowCheck = false;
2014-12-04 21:27:06 +01:00
if (object != null) {
object.imageReceiver.setVisible(true, true);
}
}
private void redraw(final int count) {
if (count < 6) {
if (containerView != null) {
containerView.invalidate();
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(() -> redraw(count + 1), 100);
}
}
}
public void onResume() {
redraw(0); //workaround for camera bug
2017-03-31 01:58:05 +02:00
if (videoPlayer != null) {
videoPlayer.seekTo(videoPlayer.getCurrentPosition() + 1);
}
}
2018-07-30 04:07:02 +02:00
public void onConfigurationChanged(Configuration newConfig) {
if (pipVideoView != null) {
pipVideoView.onConfigurationChanged();
}
}
2016-05-25 23:49:47 +02:00
public void onPause() {
if (currentAnimation != null) {
closePhoto(false, false);
return;
}
2017-03-31 01:58:05 +02:00
if (lastTitle != null) {
2016-05-25 23:49:47 +02:00
closeCaptionEnter(true);
}
}
public boolean isVisible() {
2015-01-02 23:15:07 +01:00
return isVisible && placeProvider != null;
}
private void updateMinMax(float scale) {
int maxW = (int) (centerImage.getImageWidth() * scale - getContainerViewWidth()) / 2;
int maxH = (int) (centerImage.getImageHeight() * scale - getContainerViewHeight()) / 2;
if (maxW > 0) {
minX = -maxW;
maxX = maxW;
} else {
minX = maxX = 0;
}
if (maxH > 0) {
minY = -maxH;
maxY = maxH;
} else {
minY = maxY = 0;
}
}
private int getAdditionX() {
2016-10-11 13:57:01 +02:00
if (currentEditMode != 0 && currentEditMode != 3) {
return AndroidUtilities.dp(14);
}
return 0;
}
private int getAdditionY() {
2016-10-11 13:57:01 +02:00
if (currentEditMode == 3) {
return AndroidUtilities.dp(8) + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0);
2016-10-11 13:57:01 +02:00
} else if (currentEditMode != 0) {
return AndroidUtilities.dp(14) + (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0);
}
return 0;
}
private int getContainerViewWidth() {
return getContainerViewWidth(currentEditMode);
}
private int getContainerViewWidth(int mode) {
int width = containerView.getWidth();
2016-10-11 13:57:01 +02:00
if (mode != 0 && mode != 3) {
width -= AndroidUtilities.dp(28);
}
return width;
}
private int getContainerViewHeight() {
return getContainerViewHeight(currentEditMode);
}
private int getContainerViewHeight(int mode) {
2016-10-11 13:57:01 +02:00
int height = AndroidUtilities.displaySize.y;
if (mode == 0 && Build.VERSION.SDK_INT >= 21) {
height += AndroidUtilities.statusBarHeight;
}
if (mode == 1) {
2017-03-31 01:58:05 +02:00
height -= AndroidUtilities.dp(48 + 32 + 64);
} else if (mode == 2) {
height -= AndroidUtilities.dp(154 + 60);
2016-10-11 13:57:01 +02:00
} else if (mode == 3) {
height -= AndroidUtilities.dp(48) + ActionBar.getCurrentActionBarHeight();
}
return height;
}
private boolean onTouchEvent(MotionEvent ev) {
if (animationInProgress != 0 || animationStartTime != 0) {
2014-11-19 16:17:24 +01:00
return false;
}
if (currentEditMode == 2) {
photoFilterView.onTouch(ev);
return true;
2019-01-23 18:03:33 +01:00
} else if (currentEditMode == 1 || sendPhotoType == SELECT_TYPE_AVATAR) {
2017-03-31 01:58:05 +02:00
return true;
}
2015-06-29 19:12:11 +02:00
if (captionEditText.isPopupShowing() || captionEditText.isKeyboardVisible()) {
2016-10-11 13:57:01 +02:00
if (ev.getAction() == MotionEvent.ACTION_UP) {
closeCaptionEnter(true);
}
return true;
}
2019-01-23 18:03:33 +01:00
if (currentEditMode == 0 && sendPhotoType != SELECT_TYPE_AVATAR && ev.getPointerCount() == 1 && gestureDetector.onTouchEvent(ev)) {
2015-01-02 23:15:07 +01:00
if (doubleTap) {
doubleTap = false;
moving = false;
zooming = false;
checkMinMax(false);
return true;
}
}
if (ev.getActionMasked() == MotionEvent.ACTION_DOWN || ev.getActionMasked() == MotionEvent.ACTION_POINTER_DOWN) {
2015-01-02 23:15:07 +01:00
discardTap = false;
if (!scroller.isFinished()) {
scroller.abortAnimation();
}
2014-11-19 16:17:24 +01:00
if (!draggingDown && !changingPage) {
if (canZoom && ev.getPointerCount() == 2) {
pinchStartDistance = (float) Math.hypot(ev.getX(1) - ev.getX(0), ev.getY(1) - ev.getY(0));
pinchStartScale = scale;
pinchCenterX = (ev.getX(0) + ev.getX(1)) / 2.0f;
pinchCenterY = (ev.getY(0) + ev.getY(1)) / 2.0f;
pinchStartX = translationX;
pinchStartY = translationY;
zooming = true;
moving = false;
if (velocityTracker != null) {
velocityTracker.clear();
}
} else if (ev.getPointerCount() == 1) {
moveStartX = ev.getX();
dragY = moveStartY = ev.getY();
draggingDown = false;
canDragDown = true;
if (velocityTracker != null) {
velocityTracker.clear();
}
}
}
} else if (ev.getActionMasked() == MotionEvent.ACTION_MOVE) {
if (canZoom && ev.getPointerCount() == 2 && !draggingDown && zooming && !changingPage) {
2015-02-01 19:51:02 +01:00
discardTap = true;
scale = (float) Math.hypot(ev.getX(1) - ev.getX(0), ev.getY(1) - ev.getY(0)) / pinchStartDistance * pinchStartScale;
translationX = (pinchCenterX - getContainerViewWidth() / 2) - ((pinchCenterX - getContainerViewWidth() / 2) - pinchStartX) * (scale / pinchStartScale);
translationY = (pinchCenterY - getContainerViewHeight() / 2) - ((pinchCenterY - getContainerViewHeight() / 2) - pinchStartY) * (scale / pinchStartScale);
updateMinMax(scale);
containerView.invalidate();
} else if (ev.getPointerCount() == 1) {
if (velocityTracker != null) {
velocityTracker.addMovement(ev);
}
float dx = Math.abs(ev.getX() - moveStartX);
float dy = Math.abs(ev.getY() - dragY);
2015-02-01 19:51:02 +01:00
if (dx > AndroidUtilities.dp(3) || dy > AndroidUtilities.dp(3)) {
discardTap = true;
if (qualityChooseView != null && qualityChooseView.getVisibility() == View.VISIBLE) {
return true;
}
2015-02-01 19:51:02 +01:00
}
2019-01-23 18:03:33 +01:00
if (placeProvider.canScrollAway() && currentEditMode == 0 && sendPhotoType != SELECT_TYPE_AVATAR && canDragDown && !draggingDown && scale == 1 && dy >= AndroidUtilities.dp(30) && dy / 2 > dx) {
draggingDown = true;
moving = false;
dragY = ev.getY();
2018-07-30 04:07:02 +02:00
if (isActionBarVisible && containerView.getTag() != null) {
toggleActionBar(false, true);
} else if (pickerView.getVisibility() == View.VISIBLE) {
2015-02-01 19:51:02 +01:00
toggleActionBar(false, true);
2017-12-08 18:35:59 +01:00
togglePhotosListView(false, true);
2015-01-02 23:15:07 +01:00
toggleCheckImageView(false);
}
return true;
} else if (draggingDown) {
translationY = ev.getY() - dragY;
containerView.invalidate();
2014-11-19 16:17:24 +01:00
} else if (!invalidCoords && animationStartTime == 0) {
float moveDx = moveStartX - ev.getX();
float moveDy = moveStartY - ev.getY();
if (moving || currentEditMode != 0 || scale == 1 && Math.abs(moveDy) + AndroidUtilities.dp(12) < Math.abs(moveDx) || scale != 1) {
if (!moving) {
moveDx = 0;
moveDy = 0;
moving = true;
canDragDown = false;
}
moveStartX = ev.getX();
moveStartY = ev.getY();
updateMinMax(scale);
2019-03-03 21:40:48 +01:00
if (translationX < minX && (currentEditMode != 0 || !rightImage.hasImageSet()) || translationX > maxX && (currentEditMode != 0 || !leftImage.hasImageSet())) {
moveDx /= 3.0f;
}
2019-01-23 18:03:33 +01:00
if (maxY == 0 && minY == 0 && currentEditMode == 0 && sendPhotoType != SELECT_TYPE_AVATAR) {
if (translationY - moveDy < minY) {
translationY = minY;
moveDy = 0;
} else if (translationY - moveDy > maxY) {
translationY = maxY;
moveDy = 0;
}
} else {
if (translationY < minY || translationY > maxY) {
moveDy /= 3.0f;
}
}
translationX -= moveDx;
if (scale != 1 || currentEditMode != 0) {
translationY -= moveDy;
}
containerView.invalidate();
}
} else {
invalidCoords = false;
moveStartX = ev.getX();
moveStartY = ev.getY();
}
}
} else if (ev.getActionMasked() == MotionEvent.ACTION_CANCEL || ev.getActionMasked() == MotionEvent.ACTION_UP || ev.getActionMasked() == MotionEvent.ACTION_POINTER_UP) {
if (zooming) {
invalidCoords = true;
if (scale < 1.0f) {
updateMinMax(1.0f);
animateTo(1.0f, 0, 0, true);
2015-02-01 19:51:02 +01:00
} else if (scale > 3.0f) {
float atx = (pinchCenterX - getContainerViewWidth() / 2) - ((pinchCenterX - getContainerViewWidth() / 2) - pinchStartX) * (3.0f / pinchStartScale);
float aty = (pinchCenterY - getContainerViewHeight() / 2) - ((pinchCenterY - getContainerViewHeight() / 2) - pinchStartY) * (3.0f / pinchStartScale);
updateMinMax(3.0f);
if (atx < minX) {
atx = minX;
} else if (atx > maxX) {
atx = maxX;
}
if (aty < minY) {
aty = minY;
} else if (aty > maxY) {
aty = maxY;
}
animateTo(3.0f, atx, aty, true);
} else {
checkMinMax(true);
}
zooming = false;
} else if (draggingDown) {
if (Math.abs(dragY - ev.getY()) > getContainerViewHeight() / 6.0f) {
closePhoto(true, false);
} else {
if (pickerView.getVisibility() == View.VISIBLE) {
2015-02-01 19:51:02 +01:00
toggleActionBar(true, true);
2015-01-02 23:15:07 +01:00
toggleCheckImageView(true);
}
animateTo(1, 0, 0, false);
}
draggingDown = false;
} else if (moving) {
float moveToX = translationX;
float moveToY = translationY;
updateMinMax(scale);
moving = false;
canDragDown = true;
float velocity = 0;
if (velocityTracker != null && scale == 1) {
velocityTracker.computeCurrentVelocity(1000);
velocity = velocityTracker.getXVelocity();
}
2019-01-23 18:03:33 +01:00
if (currentEditMode == 0 && sendPhotoType != SELECT_TYPE_AVATAR) {
2019-03-03 21:40:48 +01:00
if ((translationX < minX - getContainerViewWidth() / 3 || velocity < -AndroidUtilities.dp(650)) && rightImage.hasImageSet()) {
goToNext();
return true;
}
2019-03-03 21:40:48 +01:00
if ((translationX > maxX + getContainerViewWidth() / 3 || velocity > AndroidUtilities.dp(650)) && leftImage.hasImageSet()) {
goToPrev();
return true;
}
}
if (translationX < minX) {
moveToX = minX;
} else if (translationX > maxX) {
moveToX = maxX;
}
if (translationY < minY) {
moveToY = minY;
} else if (translationY > maxY) {
moveToY = maxY;
}
animateTo(scale, moveToX, moveToY, false);
}
}
return false;
}
private void checkMinMax(boolean zoom) {
float moveToX = translationX;
float moveToY = translationY;
updateMinMax(scale);
if (translationX < minX) {
moveToX = minX;
} else if (translationX > maxX) {
moveToX = maxX;
}
if (translationY < minY) {
moveToY = minY;
} else if (translationY > maxY) {
moveToY = maxY;
}
animateTo(scale, moveToX, moveToY, zoom);
}
private void goToNext() {
float extra = 0;
if (scale != 1) {
extra = (getContainerViewWidth() - centerImage.getImageWidth()) / 2 * scale;
}
switchImageAfterAnimation = 1;
2016-10-11 13:57:01 +02:00
animateTo(scale, minX - getContainerViewWidth() - extra - AndroidUtilities.dp(30) / 2, translationY, false);
}
private void goToPrev() {
float extra = 0;
if (scale != 1) {
extra = (getContainerViewWidth() - centerImage.getImageWidth()) / 2 * scale;
}
switchImageAfterAnimation = 2;
2016-10-11 13:57:01 +02:00
animateTo(scale, maxX + getContainerViewWidth() + extra + AndroidUtilities.dp(30) / 2, translationY, false);
}
private void animateTo(float newScale, float newTx, float newTy, boolean isZoom) {
animateTo(newScale, newTx, newTy, isZoom, 250);
}
private void animateTo(float newScale, float newTx, float newTy, boolean isZoom, int duration) {
if (scale == newScale && translationX == newTx && translationY == newTy) {
return;
}
zoomAnimation = isZoom;
animateToScale = newScale;
animateToX = newTx;
animateToY = newTy;
animationStartTime = System.currentTimeMillis();
imageMoveAnimation = new AnimatorSet();
imageMoveAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(this, AnimationProperties.PHOTO_VIEWER_ANIMATION_VALUE, 0, 1)
);
imageMoveAnimation.setInterpolator(interpolator);
imageMoveAnimation.setDuration(duration);
2017-03-31 01:58:05 +02:00
imageMoveAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
imageMoveAnimation = null;
containerView.invalidate();
}
});
imageMoveAnimation.start();
}
2018-07-30 04:07:02 +02:00
@Keep
public void setAnimationValue(float value) {
animationValue = value;
containerView.invalidate();
}
2018-07-30 04:07:02 +02:00
@Keep
public float getAnimationValue() {
return animationValue;
}
2017-12-08 18:35:59 +01:00
private void hideHint() {
hintAnimation = new AnimatorSet();
hintAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(hintTextView, View.ALPHA, 0.0f)
2017-12-08 18:35:59 +01:00
);
hintAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animation.equals(hintAnimation)) {
hintAnimation = null;
hintHideRunnable = null;
if (hintTextView != null) {
hintTextView.setVisibility(View.GONE);
}
}
}
@Override
public void onAnimationCancel(Animator animation) {
if (animation.equals(hintAnimation)) {
hintHideRunnable = null;
hintHideRunnable = null;
}
}
});
hintAnimation.setDuration(300);
hintAnimation.start();
}
private void showHint(boolean hide, boolean enabled) {
if (containerView == null || hide && hintTextView == null) {
return;
}
if (hintTextView == null) {
hintTextView = new TextView(containerView.getContext());
2018-07-30 04:07:02 +02:00
hintTextView.setBackgroundDrawable(Theme.createRoundRectDrawable(AndroidUtilities.dp(3), 0xcc111111));
hintTextView.setTextColor(0xffffffff);
2017-12-08 18:35:59 +01:00
hintTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
hintTextView.setPadding(AndroidUtilities.dp(8), AndroidUtilities.dp(7), AndroidUtilities.dp(8), AndroidUtilities.dp(7));
hintTextView.setGravity(Gravity.CENTER_VERTICAL);
hintTextView.setAlpha(0.0f);
containerView.addView(hintTextView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP, 5, 0, 5, 3));
}
if (hide) {
if (hintAnimation != null) {
hintAnimation.cancel();
hintAnimation = null;
}
AndroidUtilities.cancelRunOnUIThread(hintHideRunnable);
hintHideRunnable = null;
hideHint();
return;
}
hintTextView.setText(enabled ? LocaleController.getString("GroupPhotosHelp", R.string.GroupPhotosHelp) : LocaleController.getString("SinglePhotosHelp", R.string.SinglePhotosHelp));
if (hintHideRunnable != null) {
if (hintAnimation != null) {
hintAnimation.cancel();
hintAnimation = null;
} else {
AndroidUtilities.cancelRunOnUIThread(hintHideRunnable);
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(hintHideRunnable = this::hideHint, 2000);
2017-12-08 18:35:59 +01:00
return;
}
} else if (hintAnimation != null) {
return;
}
hintTextView.setVisibility(View.VISIBLE);
hintAnimation = new AnimatorSet();
hintAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(hintTextView, View.ALPHA, 1.0f)
2017-12-08 18:35:59 +01:00
);
hintAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animation.equals(hintAnimation)) {
hintAnimation = null;
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(hintHideRunnable = () -> hideHint(), 2000);
2017-12-08 18:35:59 +01:00
}
}
@Override
public void onAnimationCancel(Animator animation) {
if (animation.equals(hintAnimation)) {
hintAnimation = null;
}
}
});
hintAnimation.setDuration(300);
hintAnimation.start();
}
@SuppressLint({"NewApi", "DrawAllocation"})
private void onDraw(Canvas canvas) {
2018-07-30 04:07:02 +02:00
if (animationInProgress == 1 || !isVisible && animationInProgress != 2 && !pipAnimationInProgress) {
return;
}
2019-01-23 18:03:33 +01:00
if (padImageForHorizontalInsets) {
canvas.save();
canvas.translate(getLeftInset() / 2 - getRightInset() / 2, 0);
}
float currentTranslationY;
float currentTranslationX;
2015-01-02 23:15:07 +01:00
float currentScale;
float aty = -1;
2015-01-02 23:15:07 +01:00
if (imageMoveAnimation != null) {
if (!scroller.isFinished()) {
scroller.abortAnimation();
}
float ts = scale + (animateToScale - scale) * animationValue;
float tx = translationX + (animateToX - translationX) * animationValue;
float ty = translationY + (animateToY - translationY) * animationValue;
if (animateToScale == 1 && scale == 1 && translationX == 0) {
aty = ty;
}
2015-01-02 23:15:07 +01:00
currentScale = ts;
currentTranslationY = ty;
currentTranslationX = tx;
containerView.invalidate();
} else {
if (animationStartTime != 0) {
translationX = animateToX;
translationY = animateToY;
scale = animateToScale;
animationStartTime = 0;
updateMinMax(scale);
zoomAnimation = false;
}
if (!scroller.isFinished()) {
if (scroller.computeScrollOffset()) {
if (scroller.getStartX() < maxX && scroller.getStartX() > minX) {
translationX = scroller.getCurrX();
}
if (scroller.getStartY() < maxY && scroller.getStartY() > minY) {
translationY = scroller.getCurrY();
}
containerView.invalidate();
}
}
if (switchImageAfterAnimation != 0) {
if (switchImageAfterAnimation == 1) {
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(() -> setImageIndex(currentIndex + 1, false));
} else if (switchImageAfterAnimation == 2) {
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(() -> setImageIndex(currentIndex - 1, false));
}
switchImageAfterAnimation = 0;
}
2015-01-02 23:15:07 +01:00
currentScale = scale;
currentTranslationY = translationY;
currentTranslationX = translationX;
if (!moving) {
aty = translationY;
}
}
2018-07-30 04:07:02 +02:00
if (animationInProgress != 2 && !pipAnimationInProgress && !isInline) {
2019-01-23 18:03:33 +01:00
if (currentEditMode == 0 && sendPhotoType != SELECT_TYPE_AVATAR && scale == 1 && aty != -1 && !zoomAnimation) {
2017-12-08 18:35:59 +01:00
float maxValue = getContainerViewHeight() / 4.0f;
backgroundDrawable.setAlpha((int) Math.max(127, 255 * (1.0f - (Math.min(Math.abs(aty), maxValue) / maxValue))));
} else {
backgroundDrawable.setAlpha(255);
}
}
2015-01-02 23:15:07 +01:00
ImageReceiver sideImage = null;
2019-01-23 18:03:33 +01:00
if (currentEditMode == 0 && sendPhotoType != SELECT_TYPE_AVATAR) {
if (scale >= 1.0f && !zoomAnimation && !zooming) {
if (currentTranslationX > maxX + AndroidUtilities.dp(5)) {
sideImage = leftImage;
} else if (currentTranslationX < minX - AndroidUtilities.dp(5)) {
sideImage = rightImage;
2017-12-08 18:35:59 +01:00
} else {
groupedPhotosListView.setMoveProgress(0.0f);
}
2015-01-02 23:15:07 +01:00
}
changingPage = sideImage != null;
2015-01-02 23:15:07 +01:00
}
if (sideImage == rightImage) {
2018-07-30 04:07:02 +02:00
float translateX = currentTranslationX;
2015-01-02 23:15:07 +01:00
float scaleDiff = 0;
float alpha = 1;
2018-07-30 04:07:02 +02:00
if (!zoomAnimation && translateX < minX) {
2019-01-23 18:03:33 +01:00
alpha = Math.min(1.0f, (minX - translateX) / getContainerViewWidth());
2015-01-02 23:15:07 +01:00
scaleDiff = (1.0f - alpha) * 0.3f;
2019-01-23 18:03:33 +01:00
translateX = -getContainerViewWidth() - AndroidUtilities.dp(30) / 2;
2015-01-02 23:15:07 +01:00
}
if (sideImage.hasBitmapImage()) {
2015-01-02 23:15:07 +01:00
canvas.save();
canvas.translate(getContainerViewWidth() / 2, getContainerViewHeight() / 2);
2019-01-23 18:03:33 +01:00
canvas.translate(getContainerViewWidth() + AndroidUtilities.dp(30) / 2 + translateX, 0);
2015-01-02 23:15:07 +01:00
canvas.scale(1.0f - scaleDiff, 1.0f - scaleDiff);
int bitmapWidth = sideImage.getBitmapWidth();
int bitmapHeight = sideImage.getBitmapHeight();
2015-01-02 23:15:07 +01:00
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
2015-01-02 23:15:07 +01:00
float scale = scaleX > scaleY ? scaleY : scaleX;
int width = (int) (bitmapWidth * scale);
int height = (int) (bitmapHeight * scale);
sideImage.setAlpha(alpha);
sideImage.setImageCoords(-width / 2, -height / 2, width, height);
sideImage.draw(canvas);
canvas.restore();
}
2017-12-08 18:35:59 +01:00
groupedPhotosListView.setMoveProgress(-alpha);
2015-01-02 23:15:07 +01:00
canvas.save();
2018-07-30 04:07:02 +02:00
canvas.translate(translateX, currentTranslationY / currentScale);
2019-01-23 18:03:33 +01:00
canvas.translate((getContainerViewWidth() * (scale + 1) + AndroidUtilities.dp(30)) / 2, -currentTranslationY / currentScale);
2017-03-31 01:58:05 +02:00
photoProgressViews[1].setScale(1.0f - scaleDiff);
photoProgressViews[1].setAlpha(alpha);
photoProgressViews[1].onDraw(canvas);
2015-01-02 23:15:07 +01:00
canvas.restore();
}
float translateX = currentTranslationX;
2015-01-02 23:15:07 +01:00
float scaleDiff = 0;
float alpha = 1;
2019-01-23 18:03:33 +01:00
if (!zoomAnimation && translateX > maxX && currentEditMode == 0 && sendPhotoType != SELECT_TYPE_AVATAR) {
alpha = Math.min(1.0f, (translateX - maxX) / getContainerViewWidth());
2015-01-02 23:15:07 +01:00
scaleDiff = alpha * 0.3f;
alpha = 1.0f - alpha;
translateX = maxX;
2015-01-02 23:15:07 +01:00
}
boolean drawTextureView = aspectRatioFrameLayout != null && aspectRatioFrameLayout.getVisibility() == View.VISIBLE;
2019-03-03 21:40:48 +01:00
if (centerImage.hasBitmapImage() || drawTextureView && textureUploaded) {
2015-01-02 23:15:07 +01:00
canvas.save();
canvas.translate(getContainerViewWidth() / 2 + getAdditionX(), getContainerViewHeight() / 2 + getAdditionY());
canvas.translate(translateX, currentTranslationY);
2015-01-02 23:15:07 +01:00
canvas.scale(currentScale - scaleDiff, currentScale - scaleDiff);
2019-03-03 21:40:48 +01:00
int bitmapWidth;
int bitmapHeight;
if (drawTextureView && textureUploaded) {
2019-03-03 21:40:48 +01:00
bitmapWidth = videoTextureView.getMeasuredWidth();
bitmapHeight = videoTextureView.getMeasuredHeight();
} else {
bitmapWidth = centerImage.getBitmapWidth();
bitmapHeight = centerImage.getBitmapHeight();
}
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
float scale = scaleX > scaleY ? scaleY : scaleX;
int width = (int) (bitmapWidth * scale);
int height = (int) (bitmapHeight * scale);
if (!drawTextureView || !textureUploaded || !videoCrossfadeStarted || videoCrossfadeAlpha != 1.0f) {
centerImage.setAlpha(alpha);
centerImage.setImageCoords(-width / 2, -height / 2, width, height);
centerImage.draw(canvas);
}
if (drawTextureView) {
2019-01-23 18:03:33 +01:00
scaleX = (float) canvas.getWidth() / (float) bitmapWidth;
scaleY = (float) canvas.getHeight() / (float) bitmapHeight;
scale = scaleX > scaleY ? scaleY : scaleX;
height = (int) (bitmapHeight * scale);
if (!videoCrossfadeStarted && textureUploaded) {
videoCrossfadeStarted = true;
videoCrossfadeAlpha = 0.0f;
videoCrossfadeAlphaLastTime = System.currentTimeMillis();
}
canvas.translate(-width / 2, -height / 2);
videoTextureView.setAlpha(alpha * videoCrossfadeAlpha);
aspectRatioFrameLayout.draw(canvas);
if (videoCrossfadeStarted && videoCrossfadeAlpha < 1.0f) {
long newUpdateTime = System.currentTimeMillis();
long dt = newUpdateTime - videoCrossfadeAlphaLastTime;
videoCrossfadeAlphaLastTime = newUpdateTime;
2019-03-03 21:40:48 +01:00
videoCrossfadeAlpha += dt / (playerInjected ? 100.0f : 200.0f);
containerView.invalidate();
if (videoCrossfadeAlpha > 1.0f) {
videoCrossfadeAlpha = 1.0f;
}
}
}
canvas.restore();
}
boolean drawProgress;
if (isCurrentVideo) {
drawProgress = progressView.getVisibility() != View.VISIBLE && (videoPlayer == null || !videoPlayer.isPlaying());
} else {
drawProgress = !drawTextureView && videoPlayerControlFrameLayout.getVisibility() != View.VISIBLE;
}
if (drawProgress) {
canvas.save();
canvas.translate(translateX, currentTranslationY / currentScale);
2017-03-31 01:58:05 +02:00
photoProgressViews[0].setScale(1.0f - scaleDiff);
photoProgressViews[0].setAlpha(alpha);
photoProgressViews[0].onDraw(canvas);
2015-01-02 23:15:07 +01:00
canvas.restore();
}
2018-07-30 04:07:02 +02:00
if (!pipAnimationInProgress && (miniProgressView.getVisibility() == View.VISIBLE || miniProgressAnimator != null)) {
canvas.save();
canvas.translate(miniProgressView.getLeft() + translateX, miniProgressView.getTop() + currentTranslationY / currentScale);
miniProgressView.draw(canvas);
canvas.restore();
}
2015-01-02 23:15:07 +01:00
if (sideImage == leftImage) {
if (sideImage.hasBitmapImage()) {
2015-01-02 23:15:07 +01:00
canvas.save();
canvas.translate(getContainerViewWidth() / 2, getContainerViewHeight() / 2);
2019-01-23 18:03:33 +01:00
canvas.translate(-(getContainerViewWidth() * (scale + 1) + AndroidUtilities.dp(30)) / 2 + currentTranslationX, 0);
int bitmapWidth = sideImage.getBitmapWidth();
int bitmapHeight = sideImage.getBitmapHeight();
2015-01-02 23:15:07 +01:00
float scaleX = (float) getContainerViewWidth() / (float) bitmapWidth;
float scaleY = (float) getContainerViewHeight() / (float) bitmapHeight;
2015-01-02 23:15:07 +01:00
float scale = scaleX > scaleY ? scaleY : scaleX;
int width = (int) (bitmapWidth * scale);
int height = (int) (bitmapHeight * scale);
2014-10-28 18:07:44 +01:00
2015-01-02 23:15:07 +01:00
sideImage.setAlpha(1.0f);
sideImage.setImageCoords(-width / 2, -height / 2, width, height);
sideImage.draw(canvas);
canvas.restore();
2014-10-28 18:07:44 +01:00
}
2017-12-08 18:35:59 +01:00
groupedPhotosListView.setMoveProgress(1.0f - alpha);
2015-01-02 23:15:07 +01:00
canvas.save();
canvas.translate(currentTranslationX, currentTranslationY / currentScale);
2019-01-23 18:03:33 +01:00
canvas.translate(-(getContainerViewWidth() * (scale + 1) + AndroidUtilities.dp(30)) / 2, -currentTranslationY / currentScale);
2017-03-31 01:58:05 +02:00
photoProgressViews[2].setScale(1.0f);
photoProgressViews[2].setAlpha(1.0f);
photoProgressViews[2].onDraw(canvas);
2015-01-02 23:15:07 +01:00
canvas.restore();
2014-10-28 18:07:44 +01:00
}
2018-07-30 04:07:02 +02:00
if (waitingForDraw != 0) {
waitingForDraw--;
if (waitingForDraw == 0) {
if (textureImageView != null) {
try {
currentBitmap = Bitmaps.createBitmap(videoTextureView.getWidth(), videoTextureView.getHeight(), Bitmap.Config.ARGB_8888);
changedTextureView.getBitmap(currentBitmap);
} catch (Throwable e) {
if (currentBitmap != null) {
currentBitmap.recycle();
currentBitmap = null;
}
FileLog.e(e);
}
if (currentBitmap != null) {
textureImageView.setVisibility(View.VISIBLE);
textureImageView.setImageBitmap(currentBitmap);
} else {
textureImageView.setImageDrawable(null);
}
}
pipVideoView.close();
pipVideoView = null;
} else {
containerView.invalidate();
}
}
2019-01-23 18:03:33 +01:00
if (padImageForHorizontalInsets) {
canvas.restore();
}
if (aspectRatioFrameLayout != null && videoForwardDrawable.isAnimating()) {
int h = (int) (aspectRatioFrameLayout.getMeasuredHeight() * (scale - 1.0f)) / 2;
videoForwardDrawable.setBounds(aspectRatioFrameLayout.getLeft(), aspectRatioFrameLayout.getTop() - h + (int) (currentTranslationY / currentScale), aspectRatioFrameLayout.getRight(), aspectRatioFrameLayout.getBottom() + h + (int) (currentTranslationY / currentScale));
videoForwardDrawable.draw(canvas);
}
}
private void onActionClick(boolean download) {
2016-10-11 13:57:01 +02:00
if (currentMessageObject == null && currentBotInlineResult == null || currentFileNames[0] == null) {
return;
}
2018-07-30 04:07:02 +02:00
Uri uri = null;
File file = null;
2018-07-30 04:07:02 +02:00
isStreaming = false;
2016-10-11 13:57:01 +02:00
if (currentMessageObject != null) {
if (currentMessageObject.messageOwner.attachPath != null && currentMessageObject.messageOwner.attachPath.length() != 0) {
file = new File(currentMessageObject.messageOwner.attachPath);
if (!file.exists()) {
file = null;
}
}
2016-10-11 13:57:01 +02:00
if (file == null) {
file = FileLoader.getPathToMessage(currentMessageObject.messageOwner);
if (!file.exists()) {
file = null;
2018-07-30 04:07:02 +02:00
if (SharedConfig.streamMedia && (int) currentMessageObject.getDialogId() != 0 && currentMessageObject.isVideo() && currentMessageObject.canStreamVideo()) {
try {
2019-01-23 18:03:33 +01:00
int reference = FileLoader.getInstance(currentMessageObject.currentAccount).getFileReference(currentMessageObject);
FileLoader.getInstance(currentAccount).loadFile(currentMessageObject.getDocument(), currentMessageObject, 1, 0);
2018-07-30 04:07:02 +02:00
TLRPC.Document document = currentMessageObject.getDocument();
2019-01-23 18:03:33 +01:00
String params = "?account=" + currentMessageObject.currentAccount +
"&id=" + document.id +
"&hash=" + document.access_hash +
"&dc=" + document.dc_id +
"&size=" + document.size +
"&mime=" + URLEncoder.encode(document.mime_type, "UTF-8") +
"&rid=" + reference +
"&name=" + URLEncoder.encode(FileLoader.getDocumentFileName(document), "UTF-8") +
"&reference=" + Utilities.bytesToHex(document.file_reference != null ? document.file_reference : new byte[0]);
2018-07-30 04:07:02 +02:00
uri = Uri.parse("tg://" + currentMessageObject.getFileName() + params);
isStreaming = true;
checkProgress(0, false);
} catch (Exception ignore) {
}
}
2016-10-11 13:57:01 +02:00
}
}
} else if (currentBotInlineResult != null) {
if (currentBotInlineResult.document != null) {
file = FileLoader.getPathToAttach(currentBotInlineResult.document);
if (!file.exists()) {
file = null;
}
2018-07-30 04:07:02 +02:00
} else if (currentBotInlineResult.content instanceof TLRPC.TL_webDocument) {
file = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_CACHE), Utilities.MD5(currentBotInlineResult.content.url) + "." + ImageLoader.getHttpUrlExtension(currentBotInlineResult.content.url, "mp4"));
2016-10-11 13:57:01 +02:00
if (!file.exists()) {
file = null;
}
}
}
2018-07-30 04:07:02 +02:00
if (file != null && uri == null) {
uri = Uri.fromFile(file);
}
if (uri == null) {
if (download) {
2016-10-11 13:57:01 +02:00
if (currentMessageObject != null) {
2018-07-30 04:07:02 +02:00
if (!FileLoader.getInstance(currentAccount).isLoadingFile(currentFileNames[0])) {
2019-01-23 18:03:33 +01:00
FileLoader.getInstance(currentAccount).loadFile(currentMessageObject.getDocument(), currentMessageObject, 1, 0);
2016-10-11 13:57:01 +02:00
} else {
2018-07-30 04:07:02 +02:00
FileLoader.getInstance(currentAccount).cancelLoadFile(currentMessageObject.getDocument());
2016-10-11 13:57:01 +02:00
}
} else if (currentBotInlineResult != null) {
if (currentBotInlineResult.document != null) {
2018-07-30 04:07:02 +02:00
if (!FileLoader.getInstance(currentAccount).isLoadingFile(currentFileNames[0])) {
2019-01-23 18:03:33 +01:00
FileLoader.getInstance(currentAccount).loadFile(currentBotInlineResult.document, currentMessageObject, 1, 0);
2016-10-11 13:57:01 +02:00
} else {
2018-07-30 04:07:02 +02:00
FileLoader.getInstance(currentAccount).cancelLoadFile(currentBotInlineResult.document);
2016-10-11 13:57:01 +02:00
}
2018-07-30 04:07:02 +02:00
} else if (currentBotInlineResult.content instanceof TLRPC.TL_webDocument) {
if (!ImageLoader.getInstance().isLoadingHttpFile(currentBotInlineResult.content.url)) {
ImageLoader.getInstance().loadHttpFile(currentBotInlineResult.content.url, "mp4", currentAccount);
2016-10-11 13:57:01 +02:00
} else {
2018-07-30 04:07:02 +02:00
ImageLoader.getInstance().cancelLoadHttpFile(currentBotInlineResult.content.url);
2016-10-11 13:57:01 +02:00
}
}
}
2019-01-23 18:03:33 +01:00
Drawable drawable = centerImage.getStaticThumb();
if (drawable instanceof OtherDocumentPlaceholderDrawable) {
((OtherDocumentPlaceholderDrawable) drawable).checkFileExist();
}
}
} else {
2019-01-23 18:03:33 +01:00
if (sharedMediaType == DataQuery.MEDIA_FILE && !currentMessageObject.canPreviewDocument()) {
AndroidUtilities.openDocument(currentMessageObject, parentActivity, null);
return;
}
2018-07-30 04:07:02 +02:00
preparePlayer(uri, true, false);
}
}
@Override
public boolean onDown(MotionEvent e) {
return false;
}
@Override
public void onShowPress(MotionEvent e) {
}
@Override
public boolean onSingleTapUp(MotionEvent e) {
2019-01-23 18:03:33 +01:00
if (!canZoom && !doubleTapEnabled) {
return onSingleTapConfirmed(e);
}
return false;
}
@Override
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
return false;
}
@Override
public void onLongPress(MotionEvent e) {
}
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
if (scale != 1) {
scroller.abortAnimation();
scroller.fling(Math.round(translationX), Math.round(translationY), Math.round(velocityX), Math.round(velocityY), (int) minX, (int) maxX, (int) minY, (int) maxY);
containerView.postInvalidate();
}
return false;
}
@Override
public boolean onSingleTapConfirmed(MotionEvent e) {
2015-01-02 23:15:07 +01:00
if (discardTap) {
return false;
}
2018-07-30 04:07:02 +02:00
if (containerView.getTag() != null) {
boolean drawTextureView = aspectRatioFrameLayout != null && aspectRatioFrameLayout.getVisibility() == View.VISIBLE;
2018-07-30 04:07:02 +02:00
float x = e.getX();
float y = e.getY();
2019-01-23 18:03:33 +01:00
if (sharedMediaType == DataQuery.MEDIA_FILE && currentMessageObject != null) {
if (!currentMessageObject.canPreviewDocument()) {
float vy = (getContainerViewHeight() - AndroidUtilities.dp(360)) / 2.0f;
if (y >= vy && y <= vy + AndroidUtilities.dp(360)) {
onActionClick(true);
2014-10-28 18:07:44 +01:00
return true;
}
}
2019-01-23 18:03:33 +01:00
} else {
if (photoProgressViews[0] != null && containerView != null && !drawTextureView) {
int state = photoProgressViews[0].backgroundState;
if (state > 0 && state <= 3) {
if (x >= (getContainerViewWidth() - AndroidUtilities.dp(100)) / 2.0f && x <= (getContainerViewWidth() + AndroidUtilities.dp(100)) / 2.0f &&
y >= (getContainerViewHeight() - AndroidUtilities.dp(100)) / 2.0f && y <= (getContainerViewHeight() + AndroidUtilities.dp(100)) / 2.0f) {
onActionClick(true);
checkProgress(0, true);
return true;
}
}
}
2014-10-28 18:07:44 +01:00
}
2014-08-29 23:06:04 +02:00
toggleActionBar(!isActionBarVisible, true);
2018-07-30 04:07:02 +02:00
} else if (sendPhotoType == 0 || sendPhotoType == 4) {
if (isCurrentVideo) {
videoPlayButton.callOnClick();
} else {
checkImageView.performClick();
}
2016-10-11 13:57:01 +02:00
} else if (currentBotInlineResult != null && (currentBotInlineResult.type.equals("video") || MessageObject.isVideoDocument(currentBotInlineResult.document))) {
2017-03-31 01:58:05 +02:00
int state = photoProgressViews[0].backgroundState;
2016-10-11 13:57:01 +02:00
if (state > 0 && state <= 3) {
float x = e.getX();
float y = e.getY();
if (x >= (getContainerViewWidth() - AndroidUtilities.dp(100)) / 2.0f && x <= (getContainerViewWidth() + AndroidUtilities.dp(100)) / 2.0f &&
y >= (getContainerViewHeight() - AndroidUtilities.dp(100)) / 2.0f && y <= (getContainerViewHeight() + AndroidUtilities.dp(100)) / 2.0f) {
onActionClick(true);
checkProgress(0, true);
return true;
}
}
} else if (sendPhotoType == 2) {
if (isCurrentVideo) {
videoPlayButton.callOnClick();
}
2014-08-29 23:06:04 +02:00
}
return true;
}
@Override
public boolean onDoubleTap(MotionEvent e) {
2018-07-30 04:07:02 +02:00
if (videoPlayer != null && videoPlayerControlFrameLayout.getVisibility() == View.VISIBLE) {
long current = videoPlayer.getCurrentPosition();
long total = videoPlayer.getDuration();
if (total >= 0 && current >= 0 && total != C.TIME_UNSET && current != C.TIME_UNSET) {
int width = getContainerViewWidth();
float x = e.getX();
long old = current;
if (x >= width / 3 * 2) {
current += 10000;
} else if (x < width / 3) {
current -= 10000;
}
if (old != current) {
if (current > total) {
current = total;
} else if (current < 0) {
current = 0;
}
2019-01-23 18:03:33 +01:00
videoForwardDrawable.setLeftSide(x < width / 3);
2018-07-30 04:07:02 +02:00
videoPlayer.seekTo(current);
containerView.invalidate();
videoPlayerSeekbar.setProgress(current / (float) total);
videoPlayerControlFrameLayout.invalidate();
return true;
}
}
}
if (!canZoom || scale == 1.0f && (translationY != 0 || translationX != 0)) {
return false;
}
2014-11-19 02:23:46 +01:00
if (animationStartTime != 0 || animationInProgress != 0) {
return false;
}
if (scale == 1.0f) {
float atx = (e.getX() - getContainerViewWidth() / 2) - ((e.getX() - getContainerViewWidth() / 2) - translationX) * (3.0f / scale);
float aty = (e.getY() - getContainerViewHeight() / 2) - ((e.getY() - getContainerViewHeight() / 2) - translationY) * (3.0f / scale);
updateMinMax(3.0f);
if (atx < minX) {
atx = minX;
} else if (atx > maxX) {
atx = maxX;
}
if (aty < minY) {
aty = minY;
} else if (aty > maxY) {
aty = maxY;
}
2015-01-02 23:15:07 +01:00
animateTo(3.0f, atx, aty, true);
} else {
2015-01-02 23:15:07 +01:00
animateTo(1.0f, 0, 0, true);
}
doubleTap = true;
return true;
}
@Override
public boolean onDoubleTapEvent(MotionEvent e) {
return false;
}
2017-03-31 01:58:05 +02:00
// video edit start
private QualityChooseView qualityChooseView;
private PickerBottomLayoutViewer qualityPicker;
private RadialProgressView progressView;
private VideoTimelinePlayView videoTimelineView;
2017-03-31 01:58:05 +02:00
private AnimatorSet qualityChooseViewAnimation;
private int selectedCompression;
private int compressionsCount = -1;
private int previousCompression;
private int rotationValue;
private int originalWidth;
private int originalHeight;
private int resultWidth;
private int resultHeight;
private int bitrate;
private int originalBitrate;
private float videoDuration;
2018-07-30 04:07:02 +02:00
private int videoFramerate;
2017-12-08 18:35:59 +01:00
private boolean videoHasAudio;
2017-03-31 01:58:05 +02:00
private long startTime;
private long endTime;
private long audioFramesSize;
private long videoFramesSize;
private int estimatedSize;
private long estimatedDuration;
private long originalSize;
2017-07-08 18:32:04 +02:00
private Runnable currentLoadingVideoRunnable;
2017-03-31 01:58:05 +02:00
private MessageObject videoPreviewMessageObject;
private boolean tryStartRequestPreviewOnFinish;
private boolean loadInitialVideo;
private boolean inPreview;
private int previewViewEnd;
private boolean requestingPreview;
private String currentSubtitle;
private class QualityChooseView extends View {
private Paint paint;
private TextPaint textPaint;
private int circleSize;
private int gapSize;
private int sideSide;
private int lineSize;
private boolean moving;
private boolean startMoving;
private float startX;
private int startMovingQuality;
public QualityChooseView(Context context) {
super(context);
paint = new Paint(Paint.ANTI_ALIAS_FLAG);
textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG);
textPaint.setTextSize(AndroidUtilities.dp(12));
textPaint.setColor(0xffcdcdcd);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
float x = event.getX();
if (event.getAction() == MotionEvent.ACTION_DOWN) {
getParent().requestDisallowInterceptTouchEvent(true);
for (int a = 0; a < compressionsCount; a++) {
int cx = sideSide + (lineSize + gapSize * 2 + circleSize) * a + circleSize / 2;
if (x > cx - AndroidUtilities.dp(15) && x < cx + AndroidUtilities.dp(15)) {
startMoving = a == selectedCompression;
startX = x;
startMovingQuality = selectedCompression;
break;
}
}
} else if (event.getAction() == MotionEvent.ACTION_MOVE) {
if (startMoving) {
if (Math.abs(startX - x) >= AndroidUtilities.getPixelsInCM(0.5f, true)) {
moving = true;
startMoving = false;
}
} else if (moving) {
for (int a = 0; a < compressionsCount; a++) {
int cx = sideSide + (lineSize + gapSize * 2 + circleSize) * a + circleSize / 2;
int diff = lineSize / 2 + circleSize / 2 + gapSize;
if (x > cx - diff && x < cx + diff) {
if (selectedCompression != a) {
selectedCompression = a;
didChangedCompressionLevel(false);
invalidate();
}
break;
}
}
}
} else if (event.getAction() == MotionEvent.ACTION_UP || event.getAction() == MotionEvent.ACTION_CANCEL) {
if (!moving) {
for (int a = 0; a < compressionsCount; a++) {
int cx = sideSide + (lineSize + gapSize * 2 + circleSize) * a + circleSize / 2;
if (x > cx - AndroidUtilities.dp(15) && x < cx + AndroidUtilities.dp(15)) {
if (selectedCompression != a) {
selectedCompression = a;
didChangedCompressionLevel(true);
invalidate();
}
break;
}
}
} else {
if (selectedCompression != startMovingQuality) {
requestVideoPreview(1);
}
}
startMoving = false;
moving = false;
}
return true;
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
circleSize = AndroidUtilities.dp(12);
gapSize = AndroidUtilities.dp(2);
sideSide = AndroidUtilities.dp(18);
}
@Override
protected void onDraw(Canvas canvas) {
2017-07-08 18:32:04 +02:00
if (compressionsCount != 1) {
lineSize = (getMeasuredWidth() - circleSize * compressionsCount - gapSize * 8 - sideSide * 2) / (compressionsCount - 1);
} else {
lineSize = (getMeasuredWidth() - circleSize * compressionsCount - gapSize * 8 - sideSide * 2);
}
2017-03-31 01:58:05 +02:00
int cy = getMeasuredHeight() / 2 + AndroidUtilities.dp(6);
for (int a = 0; a < compressionsCount; a++) {
int cx = sideSide + (lineSize + gapSize * 2 + circleSize) * a + circleSize / 2;
if (a <= selectedCompression) {
paint.setColor(0xff53aeef);
} else {
paint.setColor(0x66ffffff);
}
String text;
if (a == compressionsCount - 1) {
2017-12-08 18:35:59 +01:00
text = Math.min(originalWidth, originalHeight) + "p";
2017-03-31 01:58:05 +02:00
} else if (a == 0) {
text = "240p";
} else if (a == 1) {
text = "360p";
} else if (a == 2) {
text = "480p";
} else {
text = "720p";
}
float width = textPaint.measureText(text);
canvas.drawCircle(cx, cy, a == selectedCompression ? AndroidUtilities.dp(8) : circleSize / 2, paint);
canvas.drawText(text, cx - width / 2, cy - AndroidUtilities.dp(16), textPaint);
if (a != 0) {
int x = cx - circleSize / 2 - gapSize - lineSize;
canvas.drawRect(x, cy - AndroidUtilities.dp(1), x + lineSize, cy + AndroidUtilities.dp(2), paint);
}
}
}
}
public void updateMuteButton() {
if (videoPlayer != null) {
videoPlayer.setMute(muteVideo);
}
2017-12-08 18:35:59 +01:00
if (!videoHasAudio) {
muteItem.setEnabled(false);
muteItem.setClickable(false);
muteItem.setAlpha(0.5f);
2017-03-31 01:58:05 +02:00
} else {
2017-12-08 18:35:59 +01:00
muteItem.setEnabled(true);
muteItem.setClickable(true);
muteItem.setAlpha(1.0f);
if (muteVideo) {
actionBar.setSubtitle(null);
muteItem.setImageResource(R.drawable.volume_off);
muteItem.setColorFilter(new PorterDuffColorFilter(0xff3dadee, PorterDuff.Mode.MULTIPLY));
if (compressItem.getTag() != null) {
compressItem.setClickable(false);
compressItem.setAlpha(0.5f);
compressItem.setEnabled(false);
}
videoTimelineView.setMaxProgressDiff(30000.0f / videoDuration);
} else {
muteItem.setColorFilter(null);
actionBar.setSubtitle(currentSubtitle);
muteItem.setImageResource(R.drawable.volume_on);
if (compressItem.getTag() != null) {
compressItem.setClickable(true);
compressItem.setAlpha(1.0f);
compressItem.setEnabled(true);
}
videoTimelineView.setMaxProgressDiff(1.0f);
2017-03-31 01:58:05 +02:00
}
}
}
private void didChangedCompressionLevel(boolean request) {
2018-07-30 04:07:02 +02:00
SharedPreferences preferences = MessagesController.getGlobalMainSettings();
2017-03-31 01:58:05 +02:00
SharedPreferences.Editor editor = preferences.edit();
editor.putInt("compress_video2", selectedCompression);
editor.commit();
updateWidthHeightBitrateForCompression();
updateVideoInfo();
if (request) {
requestVideoPreview(1);
}
}
private void updateVideoInfo() {
if (actionBar == null) {
return;
}
2017-12-08 18:35:59 +01:00
if (compressionsCount == 0) {
actionBar.setSubtitle(null);
return;
}
2017-03-31 01:58:05 +02:00
if (selectedCompression == 0) {
compressItem.setImageResource(R.drawable.video_240);
} else if (selectedCompression == 1) {
compressItem.setImageResource(R.drawable.video_360);
} else if (selectedCompression == 2) {
compressItem.setImageResource(R.drawable.video_480);
} else if (selectedCompression == 3) {
compressItem.setImageResource(R.drawable.video_720);
} else if (selectedCompression == 4) {
compressItem.setImageResource(R.drawable.video_1080);
}
estimatedDuration = (long) Math.ceil((videoTimelineView.getRightProgress() - videoTimelineView.getLeftProgress()) * videoDuration);
int width;
int height;
2017-07-08 18:32:04 +02:00
if (compressItem.getTag() == null || selectedCompression == compressionsCount - 1) {
2017-03-31 01:58:05 +02:00
width = rotationValue == 90 || rotationValue == 270 ? originalHeight : originalWidth;
height = rotationValue == 90 || rotationValue == 270 ? originalWidth : originalHeight;
estimatedSize = (int) (originalSize * ((float) estimatedDuration / videoDuration));
} else {
width = rotationValue == 90 || rotationValue == 270 ? resultHeight : resultWidth;
height = rotationValue == 90 || rotationValue == 270 ? resultWidth : resultHeight;
estimatedSize = (int) ((audioFramesSize + videoFramesSize) * ((float) estimatedDuration / videoDuration));
estimatedSize += estimatedSize / (32 * 1024) * 16;
}
if (videoTimelineView.getLeftProgress() == 0) {
startTime = -1;
} else {
startTime = (long) (videoTimelineView.getLeftProgress() * videoDuration) * 1000;
}
if (videoTimelineView.getRightProgress() == 1) {
endTime = -1;
} else {
endTime = (long) (videoTimelineView.getRightProgress() * videoDuration) * 1000;
}
String videoDimension = String.format("%dx%d", width, height);
int minutes = (int) (estimatedDuration / 1000 / 60);
int seconds = (int) Math.ceil(estimatedDuration / 1000) - minutes * 60;
String videoTimeSize = String.format("%d:%02d, ~%s", minutes, seconds, AndroidUtilities.formatFileSize(estimatedSize));
currentSubtitle = String.format("%s, %s", videoDimension, videoTimeSize);
actionBar.setSubtitle(muteVideo ? null : currentSubtitle);
}
private void requestVideoPreview(int request) {
if (videoPreviewMessageObject != null) {
MediaController.getInstance().cancelVideoConvert(videoPreviewMessageObject);
}
boolean wasRequestingPreview = requestingPreview && !tryStartRequestPreviewOnFinish;
requestingPreview = false;
loadInitialVideo = false;
progressView.setVisibility(View.INVISIBLE);
if (request == 1) {
if (selectedCompression == compressionsCount - 1) {
tryStartRequestPreviewOnFinish = false;
if (!wasRequestingPreview) {
preparePlayer(currentPlayingVideoFile, false, false);
} else {
progressView.setVisibility(View.VISIBLE);
loadInitialVideo = true;
}
} else {
requestingPreview = true;
releasePlayer();
if (videoPreviewMessageObject == null) {
TLRPC.TL_message message = new TLRPC.TL_message();
message.id = 0;
message.message = "";
message.media = new TLRPC.TL_messageMediaEmpty();
message.action = new TLRPC.TL_messageActionEmpty();
2018-07-30 04:07:02 +02:00
videoPreviewMessageObject = new MessageObject(UserConfig.selectedAccount, message, false);
videoPreviewMessageObject.messageOwner.attachPath = new File(FileLoader.getDirectory(FileLoader.MEDIA_DIR_CACHE), "video_preview.mp4").getAbsolutePath();
2017-03-31 01:58:05 +02:00
videoPreviewMessageObject.videoEditedInfo = new VideoEditedInfo();
videoPreviewMessageObject.videoEditedInfo.rotationValue = rotationValue;
videoPreviewMessageObject.videoEditedInfo.originalWidth = originalWidth;
videoPreviewMessageObject.videoEditedInfo.originalHeight = originalHeight;
2018-07-30 04:07:02 +02:00
videoPreviewMessageObject.videoEditedInfo.framerate = videoFramerate;
videoPreviewMessageObject.videoEditedInfo.originalPath = currentPlayingVideoFile.getPath();
2017-03-31 01:58:05 +02:00
}
long start = videoPreviewMessageObject.videoEditedInfo.startTime = startTime;
long end = videoPreviewMessageObject.videoEditedInfo.endTime = endTime;
if (start == -1) {
start = 0;
}
if (end == -1) {
end = (long) (videoDuration * 1000);
}
if (end - start > 5000000) {
videoPreviewMessageObject.videoEditedInfo.endTime = start + 5000000;
}
videoPreviewMessageObject.videoEditedInfo.bitrate = bitrate;
videoPreviewMessageObject.videoEditedInfo.resultWidth = resultWidth;
videoPreviewMessageObject.videoEditedInfo.resultHeight = resultHeight;
if (!MediaController.getInstance().scheduleVideoConvert(videoPreviewMessageObject, true)) {
tryStartRequestPreviewOnFinish = true;
}
requestingPreview = true;
progressView.setVisibility(View.VISIBLE);
}
} else {
tryStartRequestPreviewOnFinish = false;
if (request == 2) {
preparePlayer(currentPlayingVideoFile, false, false);
}
}
containerView.invalidate();
2017-03-31 01:58:05 +02:00
}
private void updateWidthHeightBitrateForCompression() {
2017-12-08 18:35:59 +01:00
if (compressionsCount <= 0) {
return;
}
2017-03-31 01:58:05 +02:00
if (selectedCompression >= compressionsCount) {
selectedCompression = compressionsCount - 1;
}
if (selectedCompression != compressionsCount - 1) {
float maxSize;
int targetBitrate;
switch (selectedCompression) {
case 0:
2018-07-30 04:07:02 +02:00
maxSize = 426.0f;
2017-03-31 01:58:05 +02:00
targetBitrate = 400000;
break;
case 1:
maxSize = 640.0f;
targetBitrate = 900000;
break;
case 2:
2018-07-30 04:07:02 +02:00
maxSize = 854.0f;
2017-03-31 01:58:05 +02:00
targetBitrate = 1100000;
break;
case 3:
default:
2017-12-08 18:35:59 +01:00
targetBitrate = 2500000;
2017-03-31 01:58:05 +02:00
maxSize = 1280.0f;
break;
}
float scale = originalWidth > originalHeight ? maxSize / originalWidth : maxSize / originalHeight;
resultWidth = Math.round(originalWidth * scale / 2) * 2;
resultHeight = Math.round(originalHeight * scale / 2) * 2;
if (bitrate != 0) {
bitrate = Math.min(targetBitrate, (int) (originalBitrate / scale));
videoFramesSize = (long) (bitrate / 8 * videoDuration / 1000);
}
}
}
private void showQualityView(final boolean show) {
if (show) {
previousCompression = selectedCompression;
}
if (qualityChooseViewAnimation != null) {
qualityChooseViewAnimation.cancel();
}
qualityChooseViewAnimation = new AnimatorSet();
if (show) {
qualityChooseView.setTag(1);
qualityChooseViewAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(pickerView, View.TRANSLATION_Y, 0, AndroidUtilities.dp(152)),
ObjectAnimator.ofFloat(pickerViewSendButton, View.TRANSLATION_Y, 0, AndroidUtilities.dp(152)),
ObjectAnimator.ofFloat(bottomLayout, View.TRANSLATION_Y, -AndroidUtilities.dp(48), AndroidUtilities.dp(104))
2017-03-31 01:58:05 +02:00
);
} else {
qualityChooseView.setTag(null);
qualityChooseViewAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(qualityChooseView, View.TRANSLATION_Y, 0, AndroidUtilities.dp(166)),
ObjectAnimator.ofFloat(qualityPicker, View.TRANSLATION_Y, 0, AndroidUtilities.dp(166)),
ObjectAnimator.ofFloat(bottomLayout, View.TRANSLATION_Y, -AndroidUtilities.dp(48), AndroidUtilities.dp(118))
2017-03-31 01:58:05 +02:00
);
}
qualityChooseViewAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (!animation.equals(qualityChooseViewAnimation)) {
return;
}
qualityChooseViewAnimation = new AnimatorSet();
if (show) {
qualityChooseView.setVisibility(View.VISIBLE);
qualityPicker.setVisibility(View.VISIBLE);
qualityChooseViewAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(qualityChooseView, View.TRANSLATION_Y, 0),
ObjectAnimator.ofFloat(qualityPicker, View.TRANSLATION_Y, 0),
ObjectAnimator.ofFloat(bottomLayout, View.TRANSLATION_Y, -AndroidUtilities.dp(48))
2017-03-31 01:58:05 +02:00
);
} else {
qualityChooseView.setVisibility(View.INVISIBLE);
qualityPicker.setVisibility(View.INVISIBLE);
qualityChooseViewAnimation.playTogether(
2019-01-23 18:03:33 +01:00
ObjectAnimator.ofFloat(pickerView, View.TRANSLATION_Y, 0),
ObjectAnimator.ofFloat(pickerViewSendButton, View.TRANSLATION_Y, 0),
ObjectAnimator.ofFloat(bottomLayout, View.TRANSLATION_Y, -AndroidUtilities.dp(48))
2017-03-31 01:58:05 +02:00
);
}
qualityChooseViewAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (animation.equals(qualityChooseViewAnimation)) {
qualityChooseViewAnimation = null;
}
}
});
qualityChooseViewAnimation.setDuration(200);
qualityChooseViewAnimation.setInterpolator(new AccelerateInterpolator());
qualityChooseViewAnimation.start();
}
@Override
public void onAnimationCancel(Animator animation) {
qualityChooseViewAnimation = null;
}
});
qualityChooseViewAnimation.setDuration(200);
qualityChooseViewAnimation.setInterpolator(new DecelerateInterpolator());
qualityChooseViewAnimation.start();
}
2018-07-30 04:07:02 +02:00
private ByteArrayInputStream cleanBuffer(byte[] data) {
byte[] output = new byte[data.length];
int inPos = 0;
int outPos = 0;
while (inPos < data.length) {
if (data[inPos] == 0 && data[inPos + 1] == 0 && data[inPos + 2] == 3) {
output[outPos] = 0;
output[outPos + 1] = 0;
inPos += 3;
outPos += 2;
} else {
output[outPos] = data[inPos];
inPos++;
outPos++;
}
}
return new ByteArrayInputStream(output, 0, outPos);
}
2017-12-08 18:35:59 +01:00
private void processOpenVideo(final String videoPath, boolean muted) {
2017-07-08 18:32:04 +02:00
if (currentLoadingVideoRunnable != null) {
Utilities.globalQueue.cancelRunnable(currentLoadingVideoRunnable);
currentLoadingVideoRunnable = null;
}
videoPreviewMessageObject = null;
setCompressItemEnabled(false, true);
2017-12-08 18:35:59 +01:00
muteVideo = muted;
2017-07-08 18:32:04 +02:00
videoTimelineView.setVideoPath(videoPath);
compressionsCount = -1;
rotationValue = 0;
2018-07-30 04:07:02 +02:00
videoFramerate = 25;
2017-07-08 18:32:04 +02:00
File file = new File(videoPath);
originalSize = file.length();
2017-03-31 01:58:05 +02:00
2017-07-08 18:32:04 +02:00
Utilities.globalQueue.postRunnable(currentLoadingVideoRunnable = new Runnable() {
@Override
public void run() {
if (currentLoadingVideoRunnable != this) {
return;
}
TrackHeaderBox trackHeaderBox = null;
boolean isAvc = true;
2017-03-31 01:58:05 +02:00
try {
2017-07-08 18:32:04 +02:00
IsoFile isoFile = new IsoFile(videoPath);
List<Box> boxes = Path.getPaths(isoFile, "/moov/trak/");
Box boxTest = Path.getPath(isoFile, "/moov/trak/mdia/minf/stbl/stsd/mp4a/");
if (boxTest == null) {
2018-07-30 04:07:02 +02:00
if (BuildVars.LOGS_ENABLED) {
FileLog.d("video hasn't mp4a atom");
}
2017-07-08 18:32:04 +02:00
}
boxTest = Path.getPath(isoFile, "/moov/trak/mdia/minf/stbl/stsd/avc1/");
if (boxTest == null) {
2018-07-30 04:07:02 +02:00
if (BuildVars.LOGS_ENABLED) {
FileLog.d("video hasn't avc1 atom");
}
2017-07-08 18:32:04 +02:00
isAvc = false;
}
2017-12-08 18:35:59 +01:00
audioFramesSize = 0;
videoFramesSize = 0;
2019-03-03 21:40:48 +01:00
videoDuration = 0;
2017-07-08 18:32:04 +02:00
for (int b = 0; b < boxes.size(); b++) {
if (currentLoadingVideoRunnable != this) {
return;
}
Box box = boxes.get(b);
TrackBox trackBox = (TrackBox) box;
long sampleSizes = 0;
long trackBitrate = 0;
2018-07-30 04:07:02 +02:00
MediaBox mediaBox = null;
MediaHeaderBox mediaHeaderBox = null;
2017-07-08 18:32:04 +02:00
try {
2018-07-30 04:07:02 +02:00
mediaBox = trackBox.getMediaBox();
mediaHeaderBox = mediaBox.getMediaHeaderBox();
2017-07-08 18:32:04 +02:00
SampleSizeBox sampleSizeBox = mediaBox.getMediaInformationBox().getSampleTableBox().getSampleSizeBox();
long[] sizes = sampleSizeBox.getSampleSizes();
for (int a = 0; a < sizes.length; a++) {
if (currentLoadingVideoRunnable != this) {
return;
}
sampleSizes += sizes[a];
}
2019-03-03 21:40:48 +01:00
if (videoDuration == 0) {
videoDuration = (float) mediaHeaderBox.getDuration() / (float) mediaHeaderBox.getTimescale();
if (videoDuration == 0) {
MediaPlayer player = null;
try {
player = new MediaPlayer();
player.setDataSource(videoPath);
player.prepare();
videoDuration = player.getDuration() / 1000.0f;
if (videoDuration < 0) {
videoDuration = 0;
}
} catch (Throwable ignore) {
} finally {
try {
if (player != null) {
player.release();
}
} catch (Throwable ignore) {
}
}
}
}
if (videoDuration != 0) {
trackBitrate = (int) (sampleSizes * 8 / videoDuration);
} else {
trackBitrate = 400000;
}
2017-07-08 18:32:04 +02:00
} catch (Exception e) {
FileLog.e(e);
}
if (currentLoadingVideoRunnable != this) {
return;
}
TrackHeaderBox headerBox = trackBox.getTrackHeaderBox();
if (headerBox.getWidth() != 0 && headerBox.getHeight() != 0) {
2017-12-08 18:35:59 +01:00
if (trackHeaderBox == null || trackHeaderBox.getWidth() < headerBox.getWidth() || trackHeaderBox.getHeight() < headerBox.getHeight()) {
trackHeaderBox = headerBox;
originalBitrate = bitrate = (int) (trackBitrate / 100000 * 100000);
if (bitrate > 900000) {
bitrate = 900000;
}
videoFramesSize += sampleSizes;
2018-07-30 04:07:02 +02:00
if (mediaBox != null && mediaHeaderBox != null) {
TimeToSampleBox timeToSampleBox = mediaBox.getMediaInformationBox().getSampleTableBox().getTimeToSampleBox();
if (timeToSampleBox != null) {
List<TimeToSampleBox.Entry> entries = timeToSampleBox.getEntries();
long delta = 0;
int size = Math.min(entries.size(), 11);
for (int a = 1; a < size; a++) {
delta += entries.get(a).getDelta();
}
if (delta != 0) {
videoFramerate = (int) ((double) mediaHeaderBox.getTimescale() / (delta / (size - 1)));
}
}
}
2017-07-08 18:32:04 +02:00
}
} else {
audioFramesSize += sampleSizes;
}
}
2017-03-31 01:58:05 +02:00
} catch (Exception e) {
FileLog.e(e);
2017-12-08 18:35:59 +01:00
isAvc = false;
2017-03-31 01:58:05 +02:00
}
2017-07-08 18:32:04 +02:00
if (trackHeaderBox == null) {
2018-07-30 04:07:02 +02:00
if (BuildVars.LOGS_ENABLED) {
FileLog.d("video hasn't trackHeaderBox atom");
}
2017-12-08 18:35:59 +01:00
isAvc = false;
2017-03-31 01:58:05 +02:00
}
2017-07-08 18:32:04 +02:00
final boolean isAvcFinal = isAvc;
final TrackHeaderBox trackHeaderBoxFinal = trackHeaderBox;
if (currentLoadingVideoRunnable != this) {
return;
}
currentLoadingVideoRunnable = null;
2019-01-23 18:03:33 +01:00
AndroidUtilities.runOnUIThread(() -> {
if (parentActivity == null) {
return;
}
videoHasAudio = isAvcFinal;
if (isAvcFinal) {
Matrix matrix = trackHeaderBoxFinal.getMatrix();
if (matrix.equals(Matrix.ROTATE_90)) {
rotationValue = 90;
} else if (matrix.equals(Matrix.ROTATE_180)) {
rotationValue = 180;
} else if (matrix.equals(Matrix.ROTATE_270)) {
rotationValue = 270;
} else {
rotationValue = 0;
2017-07-08 18:32:04 +02:00
}
2019-01-23 18:03:33 +01:00
resultWidth = originalWidth = (int) trackHeaderBoxFinal.getWidth();
resultHeight = originalHeight = (int) trackHeaderBoxFinal.getHeight();
2017-12-08 18:35:59 +01:00
2019-01-23 18:03:33 +01:00
videoDuration *= 1000;
SharedPreferences preferences = MessagesController.getGlobalMainSettings();
selectedCompression = preferences.getInt("compress_video2", 1);
if (originalWidth > 1280 || originalHeight > 1280) {
compressionsCount = 5;
} else if (originalWidth > 854 || originalHeight > 854) {
compressionsCount = 4;
} else if (originalWidth > 640 || originalHeight > 640) {
compressionsCount = 3;
} else if (originalWidth > 480 || originalHeight > 480) {
compressionsCount = 2;
} else {
compressionsCount = 1;
}
updateWidthHeightBitrateForCompression();
setCompressItemEnabled(compressionsCount > 1, true);
if (BuildVars.LOGS_ENABLED) {
FileLog.d("compressionsCount = " + compressionsCount + " w = " + originalWidth + " h = " + originalHeight);
}
if (Build.VERSION.SDK_INT < 18 && compressItem.getTag() != null) {
try {
MediaCodecInfo codecInfo = MediaController.selectCodec(MediaController.MIME_TYPE);
if (codecInfo == null) {
if (BuildVars.LOGS_ENABLED) {
FileLog.d("no codec info for " + MediaController.MIME_TYPE);
}
setCompressItemEnabled(false, true);
} else {
String name = codecInfo.getName();
if (name.equals("OMX.google.h264.encoder") ||
name.equals("OMX.ST.VFM.H264Enc") ||
name.equals("OMX.Exynos.avc.enc") ||
name.equals("OMX.MARVELL.VIDEO.HW.CODA7542ENCODER") ||
name.equals("OMX.MARVELL.VIDEO.H264ENCODER") ||
name.equals("OMX.k3.video.encoder.avc") ||
name.equals("OMX.TI.DUCATI1.VIDEO.H264E")) {
2018-07-30 04:07:02 +02:00
if (BuildVars.LOGS_ENABLED) {
2019-01-23 18:03:33 +01:00
FileLog.d("unsupported encoder = " + name);
2018-07-30 04:07:02 +02:00
}
2017-07-08 18:32:04 +02:00
setCompressItemEnabled(false, true);
} else {
2019-01-23 18:03:33 +01:00
if (MediaController.selectColorFormat(codecInfo, MediaController.MIME_TYPE) == 0) {
2018-07-30 04:07:02 +02:00
if (BuildVars.LOGS_ENABLED) {
2019-01-23 18:03:33 +01:00
FileLog.d("no color format for " + MediaController.MIME_TYPE);
2018-07-30 04:07:02 +02:00
}
2017-07-08 18:32:04 +02:00
setCompressItemEnabled(false, true);
}
}
}
2019-01-23 18:03:33 +01:00
} catch (Exception e) {
setCompressItemEnabled(false, true);
FileLog.e(e);
2017-07-08 18:32:04 +02:00
}
2017-03-31 01:58:05 +02:00
}
2019-01-23 18:03:33 +01:00
qualityChooseView.invalidate();
} else {
compressionsCount = 0;
2017-03-31 01:58:05 +02:00
}
2019-01-23 18:03:33 +01:00
updateVideoInfo();
updateMuteButton();
2017-07-08 18:32:04 +02:00
});
2017-03-31 01:58:05 +02:00
}
2017-07-08 18:32:04 +02:00
});
}
2017-03-31 01:58:05 +02:00
2017-07-08 18:32:04 +02:00
private void setCompressItemEnabled(boolean enabled, boolean animated) {
if (compressItem == null) {
return;
}
if (enabled && compressItem.getTag() != null || !enabled && compressItem.getTag() == null) {
return;
}
compressItem.setTag(enabled ? 1 : null);
compressItem.setEnabled(enabled);
compressItem.setClickable(enabled);
if (compressItemAnimation != null) {
compressItemAnimation.cancel();
compressItemAnimation = null;
}
if (animated) {
compressItemAnimation = new AnimatorSet();
2019-01-23 18:03:33 +01:00
compressItemAnimation.playTogether(ObjectAnimator.ofFloat(compressItem, View.ALPHA, enabled ? 1.0f : 0.5f));
2017-07-08 18:32:04 +02:00
compressItemAnimation.setDuration(180);
compressItemAnimation.setInterpolator(decelerateInterpolator);
compressItemAnimation.start();
} else {
compressItem.setAlpha(enabled ? 1.0f : 0.5f);
}
2017-03-31 01:58:05 +02:00
}
2017-12-08 18:35:59 +01:00
private class ListAdapter extends RecyclerListView.SelectionAdapter {
private Context mContext;
public ListAdapter(Context context) {
mContext = context;
}
@Override
public boolean isEnabled(RecyclerView.ViewHolder holder) {
return true;
}
@Override
public int getItemCount() {
if (placeProvider != null && placeProvider.getSelectedPhotosOrder() != null) {
if (placeProvider.allowGroupPhotos()) {
return 1 + placeProvider.getSelectedPhotosOrder().size();
} else {
return placeProvider.getSelectedPhotosOrder().size();
}
}
return 0;
}
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view;
switch (viewType) {
case 0:
PhotoPickerPhotoCell cell = new PhotoPickerPhotoCell(mContext, false);
2019-01-23 18:03:33 +01:00
cell.checkFrame.setOnClickListener(v -> {
Object photoEntry = ((View) v.getParent()).getTag();
int idx = imagesArrLocals.indexOf(photoEntry);
if (idx >= 0) {
int num = placeProvider.setPhotoChecked(idx, getCurrentVideoEditedInfo());
boolean checked = placeProvider.isPhotoChecked(idx);
if (idx == currentIndex) {
checkImageView.setChecked(-1, false, true);
}
if (num >= 0) {
if (placeProvider.allowGroupPhotos()) {
num++;
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
selectedPhotosAdapter.notifyItemRemoved(num);
}
updateSelectedCount();
} else {
int num = placeProvider.setPhotoUnchecked(photoEntry);
if (num >= 0) {
if (placeProvider.allowGroupPhotos()) {
num++;
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
selectedPhotosAdapter.notifyItemRemoved(num);
2017-12-08 18:35:59 +01:00
updateSelectedCount();
}
}
});
view = cell;
break;
case 1:
default:
ImageView imageView = new ImageView(mContext) {
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(66), MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(heightMeasureSpec), MeasureSpec.EXACTLY));
}
};
imageView.setScaleType(ImageView.ScaleType.CENTER);
imageView.setImageResource(R.drawable.photos_group);
view = imageView;
break;
}
return new RecyclerListView.Holder(view);
}
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
switch (holder.getItemViewType()) {
case 0: {
PhotoPickerPhotoCell cell = (PhotoPickerPhotoCell) holder.itemView;
cell.itemWidth = AndroidUtilities.dp(82);
BackupImageView imageView = cell.photoImage;
boolean showing;
imageView.setOrientation(0, true);
ArrayList<Object> order = placeProvider.getSelectedPhotosOrder();
if (placeProvider.allowGroupPhotos()) {
position--;
}
Object object = placeProvider.getSelectedPhotos().get(order.get(position));
if (object instanceof MediaController.PhotoEntry) {
MediaController.PhotoEntry photoEntry = (MediaController.PhotoEntry) object;
cell.setTag(photoEntry);
cell.videoInfoContainer.setVisibility(View.INVISIBLE);
if (photoEntry.thumbPath != null) {
imageView.setImage(photoEntry.thumbPath, null, mContext.getResources().getDrawable(R.drawable.nophotos));
} else if (photoEntry.path != null) {
imageView.setOrientation(photoEntry.orientation, true);
if (photoEntry.isVideo) {
cell.videoInfoContainer.setVisibility(View.VISIBLE);
int minutes = photoEntry.duration / 60;
int seconds = photoEntry.duration - minutes * 60;
cell.videoTextView.setText(String.format("%d:%02d", minutes, seconds));
imageView.setImage("vthumb://" + photoEntry.imageId + ":" + photoEntry.path, null, mContext.getResources().getDrawable(R.drawable.nophotos));
} else {
imageView.setImage("thumb://" + photoEntry.imageId + ":" + photoEntry.path, null, mContext.getResources().getDrawable(R.drawable.nophotos));
}
} else {
imageView.setImageResource(R.drawable.nophotos);
}
cell.setChecked(-1, true, false);
cell.checkBox.setVisibility(View.VISIBLE);
} else if (object instanceof MediaController.SearchImage) {
MediaController.SearchImage photoEntry = (MediaController.SearchImage) object;
cell.setTag(photoEntry);
2018-07-30 04:07:02 +02:00
cell.setImage(photoEntry);
2017-12-08 18:35:59 +01:00
cell.videoInfoContainer.setVisibility(View.INVISIBLE);
cell.setChecked(-1, true, false);
cell.checkBox.setVisibility(View.VISIBLE);
}
break;
}
case 1: {
ImageView imageView = (ImageView) holder.itemView;
2018-07-30 04:07:02 +02:00
imageView.setColorFilter(SharedConfig.groupPhotosEnabled ? new PorterDuffColorFilter(0xff66bffa, PorterDuff.Mode.MULTIPLY) : null);
2017-12-08 18:35:59 +01:00
break;
}
}
}
@Override
public int getItemViewType(int i) {
if (i == 0 && placeProvider.allowGroupPhotos()) {
return 1;
}
return 0;
}
}
}