1
0
mirror of https://github.com/MGislv/NekoX.git synced 2024-07-06 23:53:47 +00:00

Update to 7.4.2 (2227)

This commit is contained in:
DrKLO 2021-01-30 22:47:24 +03:00
parent eb2bbd32c1
commit 3480f19272
16 changed files with 145 additions and 74 deletions

View File

@ -290,7 +290,7 @@ android {
} }
} }
defaultConfig.versionCode = 2226 defaultConfig.versionCode = 2227
applicationVariants.all { variant -> applicationVariants.all { variant ->
variant.outputs.all { output -> variant.outputs.all { output ->

View File

@ -209,6 +209,7 @@ public class DefaultItemAnimator extends SimpleItemAnimator {
return true; return true;
} }
public void setDelayAnimations(boolean value) { public void setDelayAnimations(boolean value) {
delayAnimations = value; delayAnimations = value;
} }

View File

@ -18,7 +18,7 @@ public class BuildVars {
public static boolean LOGS_ENABLED = false; public static boolean LOGS_ENABLED = false;
public static boolean USE_CLOUD_STRINGS = true; public static boolean USE_CLOUD_STRINGS = true;
public static boolean CHECK_UPDATES = true; public static boolean CHECK_UPDATES = true;
public static int BUILD_VERSION = 2226; public static int BUILD_VERSION = 2227;
public static String BUILD_VERSION_STRING = "7.4.0"; public static String BUILD_VERSION_STRING = "7.4.0";
public static int APP_ID = 4; public static int APP_ID = 4;
public static String APP_HASH = "014b35b6184100b085b0d0572f9b5103"; public static String APP_HASH = "014b35b6184100b085b0d0572f9b5103";

View File

@ -475,6 +475,9 @@ public class MessagesController extends BaseController implements NotificationCe
} }
public boolean includesDialog(AccountInstance accountInstance, int lowerId, TLRPC.Dialog d) { public boolean includesDialog(AccountInstance accountInstance, int lowerId, TLRPC.Dialog d) {
if (neverShow.contains(lowerId)) {
return false;
}
if (alwaysShow.contains(lowerId)) { if (alwaysShow.contains(lowerId)) {
return true; return true;
} }
@ -485,8 +488,7 @@ public class MessagesController extends BaseController implements NotificationCe
ContactsController contactsController = accountInstance.getContactsController(); ContactsController contactsController = accountInstance.getContactsController();
boolean skip = false; boolean skip = false;
if ((flags & DIALOG_FILTER_FLAG_EXCLUDE_MUTED) != 0 && messagesController.isDialogMuted(d.id) && d.unread_mentions_count == 0 || if ((flags & DIALOG_FILTER_FLAG_EXCLUDE_MUTED) != 0 && messagesController.isDialogMuted(d.id) && d.unread_mentions_count == 0 ||
(flags & DIALOG_FILTER_FLAG_EXCLUDE_READ) != 0 && d.unread_count == 0 && !d.unread_mark && d.unread_mentions_count == 0 || (flags & DIALOG_FILTER_FLAG_EXCLUDE_READ) != 0 && d.unread_count == 0 && !d.unread_mark && d.unread_mentions_count == 0) {
neverShow.contains(lowerId)) {
return false; return false;
} }
if (lowerId > 0) { if (lowerId > 0) {
@ -2915,7 +2917,7 @@ public class MessagesController extends BaseController implements NotificationCe
value = 0; value = 0;
} }
dialogs_read_outbox_max.put(dialog.id, Math.max(dialog.read_outbox_max_id, value)); dialogs_read_outbox_max.put(dialog.id, Math.max(dialog.read_outbox_max_id, value));
if (value == 0) { if (dialog.read_outbox_max_id > value) {
if (dialog.peer.channel_id != 0) { if (dialog.peer.channel_id != 0) {
TLRPC.TL_updateReadChannelOutbox update = new TLRPC.TL_updateReadChannelOutbox(); TLRPC.TL_updateReadChannelOutbox update = new TLRPC.TL_updateReadChannelOutbox();
update.channel_id = dialog.peer.channel_id; update.channel_id = dialog.peer.channel_id;
@ -3042,7 +3044,7 @@ public class MessagesController extends BaseController implements NotificationCe
} }
dialogs_read_inbox_max.put(dialog_id, Math.max(res.full_chat.read_inbox_max_id, value)); dialogs_read_inbox_max.put(dialog_id, Math.max(res.full_chat.read_inbox_max_id, value));
if (value == 0) { if (res.full_chat.read_inbox_max_id > value) {
ArrayList<TLRPC.Update> arrayList = new ArrayList<>(); ArrayList<TLRPC.Update> arrayList = new ArrayList<>();
TLRPC.TL_updateReadChannelInbox update = new TLRPC.TL_updateReadChannelInbox(); TLRPC.TL_updateReadChannelInbox update = new TLRPC.TL_updateReadChannelInbox();
update.channel_id = chat_id; update.channel_id = chat_id;
@ -3056,7 +3058,7 @@ public class MessagesController extends BaseController implements NotificationCe
value = getMessagesStorage().getDialogReadMax(true, dialog_id); value = getMessagesStorage().getDialogReadMax(true, dialog_id);
} }
dialogs_read_outbox_max.put(dialog_id, Math.max(res.full_chat.read_outbox_max_id, value)); dialogs_read_outbox_max.put(dialog_id, Math.max(res.full_chat.read_outbox_max_id, value));
if (value == 0) { if (res.full_chat.read_outbox_max_id > value) {
ArrayList<TLRPC.Update> arrayList = new ArrayList<>(); ArrayList<TLRPC.Update> arrayList = new ArrayList<>();
TLRPC.TL_updateReadChannelOutbox update = new TLRPC.TL_updateReadChannelOutbox(); TLRPC.TL_updateReadChannelOutbox update = new TLRPC.TL_updateReadChannelOutbox();
update.channel_id = chat_id; update.channel_id = chat_id;
@ -11812,6 +11814,9 @@ public class MessagesController extends BaseController implements NotificationCe
dialogs_read_inbox_max.put(dialog_id, Math.max(value, update.max_id)); dialogs_read_inbox_max.put(dialog_id, Math.max(value, update.max_id));
} else if (baseUpdate instanceof TLRPC.TL_updateReadChannelOutbox) { } else if (baseUpdate instanceof TLRPC.TL_updateReadChannelOutbox) {
TLRPC.TL_updateReadChannelOutbox update = (TLRPC.TL_updateReadChannelOutbox) baseUpdate; TLRPC.TL_updateReadChannelOutbox update = (TLRPC.TL_updateReadChannelOutbox) baseUpdate;
if (BuildVars.LOGS_ENABLED) {
FileLog.d(baseUpdate + " channelId = " + update.channel_id);
}
long message_id = update.max_id; long message_id = update.max_id;
message_id |= ((long) update.channel_id) << 32; message_id |= ((long) update.channel_id) << 32;
long dialog_id = -update.channel_id; long dialog_id = -update.channel_id;

View File

@ -140,7 +140,7 @@ public class SendMessagesHelper extends BaseController implements NotificationCe
} }
}); });
} }
}); }, ConnectionsManager.RequestFlagFailOnServerErrors);
} }
public long getUploadedCount() { public long getUploadedCount() {
@ -237,7 +237,7 @@ public class SendMessagesHelper extends BaseController implements NotificationCe
} }
}); });
} }
}); }, ConnectionsManager.RequestFlagFailOnServerErrors);
} }
private void startImport() { private void startImport() {

View File

@ -51,6 +51,7 @@ class ShortcutRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactor
public ShortcutRemoteViewsFactory(Context context, Intent intent) { public ShortcutRemoteViewsFactory(Context context, Intent intent) {
mContext = context; mContext = context;
Theme.createDialogsResources(context);
appWidgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID); appWidgetId = intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID);
SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE); SharedPreferences preferences = context.getSharedPreferences("shortcut_widget", Activity.MODE_PRIVATE);
int accountId = preferences.getInt("account" + appWidgetId, -1); int accountId = preferences.getInt("account" + appWidgetId, -1);

View File

@ -424,7 +424,7 @@ public class MediaCodecVideoConvertor {
FileLog.e(e); //s20 ultra exception FileLog.e(e); //s20 ultra exception
} }
if (maxBufferSize <= 0) { if (maxBufferSize <= 0) {
maxBufferSize = 16 * 1024; maxBufferSize = 64 * 1024;
} }
audioBuffer = ByteBuffer.allocateDirect(maxBufferSize); audioBuffer = ByteBuffer.allocateDirect(maxBufferSize);
@ -487,10 +487,12 @@ public class MediaCodecVideoConvertor {
} }
} }
} else if (copyAudioBuffer && audioIndex != -1 && index == audioIndex) { } else if (copyAudioBuffer && audioIndex != -1 && index == audioIndex) {
long size = extractor.getSampleSize(); if (Build.VERSION.SDK_INT >= 28) {
if (size > maxBufferSize) { long size = extractor.getSampleSize();
maxBufferSize = (int) (size + 1024); if (size > maxBufferSize) {
audioBuffer = ByteBuffer.allocateDirect(maxBufferSize); maxBufferSize = (int) (size + 1024);
audioBuffer = ByteBuffer.allocateDirect(maxBufferSize);
}
} }
info.size = extractor.readSampleData(audioBuffer, 0); info.size = extractor.readSampleData(audioBuffer, 0);
if (Build.VERSION.SDK_INT < 21) { if (Build.VERSION.SDK_INT < 21) {
@ -834,7 +836,7 @@ public class MediaCodecVideoConvertor {
} }
} }
if (maxBufferSize <= 0) { if (maxBufferSize <= 0) {
maxBufferSize = 16 * 1024; maxBufferSize = 64 * 1024;
} }
ByteBuffer buffer = ByteBuffer.allocateDirect(maxBufferSize); ByteBuffer buffer = ByteBuffer.allocateDirect(maxBufferSize);
if (audioTrackIndex >= 0 || videoTrackIndex >= 0) { if (audioTrackIndex >= 0 || videoTrackIndex >= 0) {
@ -844,10 +846,12 @@ public class MediaCodecVideoConvertor {
checkConversionCanceled(); checkConversionCanceled();
boolean eof = false; boolean eof = false;
int muxerTrackIndex; int muxerTrackIndex;
long size = extractor.getSampleSize(); if (Build.VERSION.SDK_INT >= 28) {
if (size > maxBufferSize) { long size = extractor.getSampleSize();
maxBufferSize = (int) (size + 1024); if (size > maxBufferSize) {
buffer = ByteBuffer.allocateDirect(maxBufferSize); maxBufferSize = (int) (size + 1024);
buffer = ByteBuffer.allocateDirect(maxBufferSize);
}
} }
info.size = extractor.readSampleData(buffer, 0); info.size = extractor.readSampleData(buffer, 0);
int index = extractor.getSampleTrackIndex(); int index = extractor.getSampleTrackIndex();

View File

@ -447,10 +447,15 @@ public class ActionBar extends FrameLayout {
actionMode = null; actionMode = null;
} }
actionModeTag = tag; actionModeTag = tag;
actionMode = new ActionBarMenu(getContext(), this); actionMode = new ActionBarMenu(getContext(), this) {
@Override
public void setBackgroundColor(int color) {
super.setBackgroundColor(actionModeColor = color);
}
};
actionMode.isActionMode = true; actionMode.isActionMode = true;
actionMode.setClickable(true); actionMode.setClickable(true);
actionMode.setBackgroundColor(actionModeColor = Theme.getColor(Theme.key_actionBarActionModeDefault)); actionMode.setBackgroundColor(Theme.getColor(Theme.key_actionBarActionModeDefault));
addView(actionMode, indexOfChild(backButtonImageView)); addView(actionMode, indexOfChild(backButtonImageView));
actionMode.setPadding(0, occupyStatusBar ? AndroidUtilities.statusBarHeight : 0, 0, 0); actionMode.setPadding(0, occupyStatusBar ? AndroidUtilities.statusBarHeight : 0, 0, 0);
FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) actionMode.getLayoutParams(); FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) actionMode.getLayoutParams();
@ -680,10 +685,14 @@ public class ActionBar extends FrameLayout {
public void setActionModeColor(int color) { public void setActionModeColor(int color) {
if (actionMode != null) { if (actionMode != null) {
actionMode.setBackgroundColor(actionModeColor = color); actionMode.setBackgroundColor(color);
} }
} }
public void setActionModeOverrideColor(int color) {
actionModeColor = color;
}
@Override @Override
public void setBackgroundColor(int color) { public void setBackgroundColor(int color) {
super.setBackgroundColor(actionBarColor = color); super.setBackgroundColor(actionBarColor = color);

View File

@ -905,14 +905,23 @@ public class ChatUsersActivity extends BaseFragment implements NotificationCente
getMessagesController().putUser(user, false); getMessagesController().putUser(user, false);
if (map.get(user.id) == null) { if (map.get(user.id) == null) {
TLRPC.ChatParticipant participant = new TLRPC.TL_chatParticipant(); if (ChatObject.isChannel(currentChat)) {
participant.inviter_id = getUserConfig().getClientUserId(); TLRPC.TL_channelParticipant channelParticipant1 = new TLRPC.TL_channelParticipant();
participant.user_id = user.id; channelParticipant1.inviter_id = getUserConfig().getClientUserId();
participant.date = getConnectionsManager().getCurrentTime(); channelParticipant1.user_id = user.id;
channelParticipant1.date = getConnectionsManager().getCurrentTime();
array.add(k, channelParticipant1);
k++;
map.put(user.id, channelParticipant1);
} else {
TLRPC.ChatParticipant participant = new TLRPC.TL_chatParticipant();
participant.user_id = user.id;
participant.inviter_id = getUserConfig().getClientUserId();
array.add(k, participant);
k++;
map.put(user.id, participant);
}
array.add(k, participant);
k++;
map.put(user.id, participant);
} }
} }
if (array == participants) { if (array == participants) {

View File

@ -140,6 +140,8 @@ public class AlertsCreator {
showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportErrorFileLang", R.string.ImportErrorFileLang)); showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportErrorFileLang", R.string.ImportErrorFileLang));
} else if (error.text.contains("IMPORT_UPLOAD_FAILED")) { } else if (error.text.contains("IMPORT_UPLOAD_FAILED")) {
showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportFailedToUpload", R.string.ImportFailedToUpload)); showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ImportFailedToUpload", R.string.ImportFailedToUpload));
} else if (error.text.startsWith("FLOOD_WAIT")) {
showFloodWaitAlert(error.text, fragment);
} else { } else {
showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ErrorOccurred", R.string.ErrorOccurred) + "\n" + error.text); showSimpleAlert(fragment, LocaleController.getString("ImportErrorTitle", R.string.ImportErrorTitle), LocaleController.getString("ErrorOccurred", R.string.ErrorOccurred) + "\n" + error.text);
} }
@ -171,7 +173,7 @@ public class AlertsCreator {
} }
return null; return null;
} else if (fragment != null) { } else if (fragment != null) {
AlertsCreator.showAddUserAlert(error.text, fragment, args != null && args.length > 0 ? (Boolean) args[0] : false, request); showAddUserAlert(error.text, fragment, args != null && args.length > 0 ? (Boolean) args[0] : false, request);
} else { } else {
if (error.text.equals("PEER_FLOOD")) { if (error.text.equals("PEER_FLOOD")) {
NotificationCenter.getInstance(currentAccount).postNotificationName(NotificationCenter.needShowAlert, 1); NotificationCenter.getInstance(currentAccount).postNotificationName(NotificationCenter.needShowAlert, 1);
@ -182,18 +184,18 @@ public class AlertsCreator {
fragment.presentFragment(new TooManyCommunitiesActivity(TooManyCommunitiesActivity.TYPE_CREATE)); fragment.presentFragment(new TooManyCommunitiesActivity(TooManyCommunitiesActivity.TYPE_CREATE));
return null; return null;
} else if (error.text.startsWith("FLOOD_WAIT")) { } else if (error.text.startsWith("FLOOD_WAIT")) {
AlertsCreator.showFloodWaitAlert(error.text, fragment); showFloodWaitAlert(error.text, fragment);
} else { } else {
AlertsCreator.showAddUserAlert(error.text, fragment, false, request); showAddUserAlert(error.text, fragment, false, request);
} }
} else if (request instanceof TLRPC.TL_channels_createChannel) { } else if (request instanceof TLRPC.TL_channels_createChannel) {
if (error.text.equals("CHANNELS_TOO_MUCH")) { if (error.text.equals("CHANNELS_TOO_MUCH")) {
fragment.presentFragment(new TooManyCommunitiesActivity(TooManyCommunitiesActivity.TYPE_CREATE)); fragment.presentFragment(new TooManyCommunitiesActivity(TooManyCommunitiesActivity.TYPE_CREATE));
return null; return null;
} else if (error.text.startsWith("FLOOD_WAIT")) { } else if (error.text.startsWith("FLOOD_WAIT")) {
AlertsCreator.showFloodWaitAlert(error.text, fragment); showFloodWaitAlert(error.text, fragment);
} else { } else {
AlertsCreator.showAddUserAlert(error.text, fragment, false, request); showAddUserAlert(error.text, fragment, false, request);
} }
} else if (request instanceof TLRPC.TL_messages_editMessage) { } else if (request instanceof TLRPC.TL_messages_editMessage) {
if (!error.text.equals("MESSAGE_NOT_MODIFIED")) { if (!error.text.equals("MESSAGE_NOT_MODIFIED")) {
@ -484,7 +486,7 @@ public class AlertsCreator {
} }
} }
if (few) { if (few) {
AlertsCreator.createSimpleAlert(context, chat.title, LocaleController.getString("SlowmodeSendError", R.string.SlowmodeSendError)).show(); createSimpleAlert(context, chat.title, LocaleController.getString("SlowmodeSendError", R.string.SlowmodeSendError)).show();
return true; return true;
} }
} }

View File

@ -580,6 +580,17 @@ public class FilterTabsView extends FrameLayout {
info.addAction(AccessibilityNodeInfo.ACTION_LONG_CLICK); info.addAction(AccessibilityNodeInfo.ACTION_LONG_CLICK);
} }
} }
public void clearTransitionParams() {
animateChange = false;
animateTabCounter = false;
animateCounterChange = false;
animateTextChange = false;
animateTextX = false;
animateTabWidth = false;
changeAnimator = null;
invalidate();
}
} }
private TextPaint textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG); private TextPaint textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG);
@ -814,14 +825,7 @@ public class FilterTabsView extends FrameLayout {
valueAnimator.addListener(new AnimatorListenerAdapter() { valueAnimator.addListener(new AnimatorListenerAdapter() {
@Override @Override
public void onAnimationEnd(Animator animation) { public void onAnimationEnd(Animator animation) {
tabView.animateChange = false; tabView.clearTransitionParams();
tabView.animateTabCounter = false;
tabView.animateCounterChange = false;
tabView.animateTextChange = false;
tabView.animateTextX = false;
tabView.animateTabWidth = false;
tabView.changeAnimator = null;
tabView.invalidate();
} }
}); });
tabView.changeAnimator = valueAnimator; tabView.changeAnimator = valueAnimator;
@ -835,6 +839,18 @@ public class FilterTabsView extends FrameLayout {
public void onMoveFinished(RecyclerView.ViewHolder item) { public void onMoveFinished(RecyclerView.ViewHolder item) {
super.onMoveFinished(item); super.onMoveFinished(item);
item.itemView.setTranslationX(0); item.itemView.setTranslationX(0);
if (item.itemView instanceof TabView) {
((TabView) item.itemView).clearTransitionParams();
}
}
@Override
public void endAnimation(RecyclerView.ViewHolder item) {
super.endAnimation(item);
item.itemView.setTranslationX(0);
if (item.itemView instanceof TabView) {
((TabView) item.itemView).clearTransitionParams();
}
} }
}; };
itemAnimator.setDelayAnimations(false); itemAnimator.setDelayAnimations(false);

View File

@ -463,7 +463,7 @@ public class ContentPreviewViewer {
clearsInputField = stickerCell.isClearsInputField(); clearsInputField = stickerCell.isClearsInputField();
} else if (currentPreviewCell instanceof ContextLinkCell) { } else if (currentPreviewCell instanceof ContextLinkCell) {
ContextLinkCell contextLinkCell = (ContextLinkCell) currentPreviewCell; ContextLinkCell contextLinkCell = (ContextLinkCell) currentPreviewCell;
open(contextLinkCell.getDocument(), delegate != null ? delegate.getQuery(true) : null, contextLinkCell.getBotInlineResult(), contentType, false, contextLinkCell.getInlineBot()); open(contextLinkCell.getDocument(), delegate != null ? delegate.getQuery(true) : null, contextLinkCell.getBotInlineResult(), contentType, false, contextLinkCell.getBotInlineResult() != null ? contextLinkCell.getInlineBot() : contextLinkCell.getParentObject());
if (contentType != CONTENT_TYPE_GIF) { if (contentType != CONTENT_TYPE_GIF) {
contextLinkCell.setScaled(true); contextLinkCell.setScaled(true);
} }
@ -560,7 +560,7 @@ public class ContentPreviewViewer {
clearsInputField = stickerCell.isClearsInputField(); clearsInputField = stickerCell.isClearsInputField();
} else if (currentPreviewCell instanceof ContextLinkCell) { } else if (currentPreviewCell instanceof ContextLinkCell) {
ContextLinkCell contextLinkCell = (ContextLinkCell) currentPreviewCell; ContextLinkCell contextLinkCell = (ContextLinkCell) currentPreviewCell;
open(contextLinkCell.getDocument(), delegate != null ? delegate.getQuery(true) : null, contextLinkCell.getBotInlineResult(), contentTypeFinal, false, contextLinkCell.getInlineBot()); open(contextLinkCell.getDocument(), delegate != null ? delegate.getQuery(true) : null, contextLinkCell.getBotInlineResult(), contentTypeFinal, false, contextLinkCell.getBotInlineResult() != null ? contextLinkCell.getInlineBot() : contextLinkCell.getParentObject());
if (contentTypeFinal != CONTENT_TYPE_GIF) { if (contentTypeFinal != CONTENT_TYPE_GIF) {
contextLinkCell.setScaled(true); contextLinkCell.setScaled(true);
} }

View File

@ -1115,20 +1115,12 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter.
public void addView(View child, int index, ViewGroup.LayoutParams params) { public void addView(View child, int index, ViewGroup.LayoutParams params) {
super.addView(child, index, params); super.addView(child, index, params);
child.setTranslationY(viewOffset); child.setTranslationY(viewOffset);
int position = getChildAdapterPosition(child);
Float alpha = listAlphaItems.get(position);
if (alpha != null) {
child.setAlpha(alpha);
} else {
child.setAlpha(1f);
}
} }
@Override @Override
public void removeView(View view) { public void removeView(View view) {
super.removeView(view); super.removeView(view);
view.setTranslationY(0); view.setTranslationY(0);
view.setAlpha(1f);
} }
@Override @Override
@ -1150,6 +1142,16 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter.
@Override @Override
protected void dispatchDraw(Canvas canvas) { protected void dispatchDraw(Canvas canvas) {
for (int i = 0; i < getChildCount(); i++) {
View child = getChildAt(i);
int position = getChildAdapterPosition(child);
Float alpha = listAlphaItems.get(position, null);
if (alpha == null) {
child.setAlpha(1f);
} else {
child.setAlpha(alpha);
}
}
super.dispatchDraw(canvas); super.dispatchDraw(canvas);
if (slidingView != null && pacmanAnimation != null) { if (slidingView != null && pacmanAnimation != null) {
pacmanAnimation.draw(canvas, slidingView.getTop() + slidingView.getMeasuredHeight() / 2); pacmanAnimation.draw(canvas, slidingView.getTop() + slidingView.getMeasuredHeight() / 2);
@ -5411,6 +5413,7 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter.
updateAnimated = true; updateAnimated = true;
} else { } else {
createActionMode(); createActionMode();
actionBar.setActionModeOverrideColor(Theme.getColor(Theme.key_windowBackgroundWhite));
actionBar.showActionMode(); actionBar.showActionMode();
resetScroll(); resetScroll();
if (menuDrawable != null) { if (menuDrawable != null) {
@ -5939,7 +5942,6 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter.
listView.getViewTreeObserver().removeOnPreDrawListener(this); listView.getViewTreeObserver().removeOnPreDrawListener(this);
int n = listView.getChildCount(); int n = listView.getChildCount();
AnimatorSet animatorSet = new AnimatorSet(); AnimatorSet animatorSet = new AnimatorSet();
boolean animated = false;
for (int i = 0; i < n; i++) { for (int i = 0; i < n; i++) {
View child = listView.getChildAt(i); View child = listView.getChildAt(i);
int position = listView.getChildAdapterPosition(child); int position = listView.getChildAdapterPosition(child);
@ -5952,29 +5954,13 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter.
a.addUpdateListener(valueAnimator -> { a.addUpdateListener(valueAnimator -> {
Float alpha = (Float) valueAnimator.getAnimatedValue(); Float alpha = (Float) valueAnimator.getAnimatedValue();
listAlphaItems.put(position, alpha); listAlphaItems.put(position, alpha);
if (listView.getChildAdapterPosition(child) == position) { listView.invalidate();
child.setAlpha(alpha);
} else {
RecyclerView.ViewHolder vh = listView.findViewHolderForAdapterPosition(position);
if (vh != null) {
vh.itemView.setAlpha(1f);
}
}
}); });
a.addListener(new AnimatorListenerAdapter() { a.addListener(new AnimatorListenerAdapter() {
@Override @Override
public void onAnimationEnd(Animator animation) { public void onAnimationEnd(Animator animation) {
listAlphaItems.remove(position); listAlphaItems.remove(position);
if (listAlphaItems.size() == 0) { listView.invalidate();
for (int i = 0; i < listView.getChildCount(); i++) {
listView.getChildAt(i).setAlpha(1f);
}
} else {
RecyclerView.ViewHolder vh = listView.findViewHolderForAdapterPosition(position);
if (vh != null) {
vh.itemView.setAlpha(1f);
}
}
} }
}); });
a.setStartDelay(delay); a.setStartDelay(delay);

View File

@ -3887,6 +3887,9 @@ public class LaunchActivity extends Activity implements ActionBarLayout.ActionBa
@Override @Override
protected void onResume() { protected void onResume() {
super.onResume(); super.onResume();
if (Theme.selectedAutoNightType == Theme.AUTO_NIGHT_TYPE_SYSTEM) {
Theme.checkAutoNightThemeConditions();
}
//FileLog.d("UI resume time = " + (SystemClock.elapsedRealtime() - ApplicationLoader.startTime)); //FileLog.d("UI resume time = " + (SystemClock.elapsedRealtime() - ApplicationLoader.startTime));
NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.startAllHeavyOperations, 4096); NotificationCenter.getGlobalInstance().postNotificationName(NotificationCenter.startAllHeavyOperations, 4096);
MediaController.getInstance().setFeedbackView(actionBarLayout, true); MediaController.getInstance().setFeedbackView(actionBarLayout, true);

View File

@ -1910,6 +1910,11 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat
groupedPhotosHeight = 0; groupedPhotosHeight = 0;
} }
if (videoPlayerControlFrameLayout != null) {
videoPlayerControlFrameLayout.parentWidth = widthSize;
videoPlayerControlFrameLayout.parentHeight = heightSize;
}
widthSize -= (getPaddingRight() + getPaddingLeft()); widthSize -= (getPaddingRight() + getPaddingLeft());
heightSize -= getPaddingBottom(); heightSize -= getPaddingBottom();
@ -2208,6 +2213,9 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat
private float progress = 1f; private float progress = 1f;
private boolean seekBarTransitionEnabled; private boolean seekBarTransitionEnabled;
private boolean translationYAnimationEnabled = true; private boolean translationYAnimationEnabled = true;
private boolean ignoreLayout;
private int parentWidth;
private int parentHeight;
public VideoPlayerControlFrameLayout(@NonNull Context context) { public VideoPlayerControlFrameLayout(@NonNull Context context) {
super(context); super(context);
@ -2227,11 +2235,20 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat
return true; return true;
} }
@Override
public void requestLayout() {
if (ignoreLayout) {
return;
}
super.requestLayout();
}
@Override @Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int extraWidth; int extraWidth;
ignoreLayout = true;
FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) videoPlayerTime.getLayoutParams(); FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) videoPlayerTime.getLayoutParams();
if (containerView.getMeasuredWidth() > containerView.getMeasuredHeight()) { if (parentWidth > parentHeight) {
if (exitFullscreenButton.getVisibility() != VISIBLE) { if (exitFullscreenButton.getVisibility() != VISIBLE) {
exitFullscreenButton.setVisibility(VISIBLE); exitFullscreenButton.setVisibility(VISIBLE);
} }
@ -2244,6 +2261,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat
extraWidth = 0; extraWidth = 0;
layoutParams.rightMargin = AndroidUtilities.dp(12); layoutParams.rightMargin = AndroidUtilities.dp(12);
} }
ignoreLayout = false;
super.onMeasure(widthMeasureSpec, heightMeasureSpec); super.onMeasure(widthMeasureSpec, heightMeasureSpec);
long duration; long duration;
if (videoPlayer != null) { if (videoPlayer != null) {
@ -6885,7 +6903,7 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat
break; break;
} }
} }
if (containerView.getMeasuredHeight() > containerView.getMeasuredWidth() && !(videoTextureView instanceof VideoEditTextureView) && w > h) { if (AndroidUtilities.displaySize.y > AndroidUtilities.displaySize.x && !(videoTextureView instanceof VideoEditTextureView) && w > h) {
if (fullscreenButton[b].getVisibility() != View.VISIBLE) { if (fullscreenButton[b].getVisibility() != View.VISIBLE) {
fullscreenButton[b].setVisibility(View.VISIBLE); fullscreenButton[b].setVisibility(View.VISIBLE);
} }
@ -6898,6 +6916,22 @@ public class PhotoViewer implements NotificationCenter.NotificationCenterDelegat
fullscreenButton[b].setVisibility(View.INVISIBLE); fullscreenButton[b].setVisibility(View.INVISIBLE);
} }
} }
float currentTranslationX;
if (imageMoveAnimation != null) {
currentTranslationX = translationX + (animateToX - translationX) * animationValue;
} else {
currentTranslationX = translationX;
}
float offsetX;
if (b == 1) {
offsetX = 0;
} else if (b == 2) {
offsetX = -AndroidUtilities.displaySize.x - AndroidUtilities.dp(15) + (currentTranslationX - maxX);
} else {
offsetX = currentTranslationX < minX ? (currentTranslationX - minX) : 0;
}
fullscreenButton[b].setTranslationX(offsetX + AndroidUtilities.displaySize.x - AndroidUtilities.dp(48));
} }
} }

View File

@ -158,6 +158,7 @@ public class PopupNotificationActivity extends Activity implements NotificationC
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
Theme.createDialogsResources(this);
Theme.createChatResources(this, false); Theme.createChatResources(this, false);
AndroidUtilities.fillStatusBarHeight(this); AndroidUtilities.fillStatusBarHeight(this);