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

1266 lines
64 KiB
Java
Raw Normal View History

2013-10-25 17:19:00 +02:00
/*
2019-01-23 18:03:33 +01:00
* This is the source code of Telegram for Android v. 5.x.x.
2013-10-25 17:19:00 +02:00
* 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.
2013-10-25 17:19:00 +02:00
*/
package org.telegram.ui;
import android.animation.Animator;
2017-03-31 01:58:05 +02:00
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
2015-02-01 19:51:02 +01:00
import android.animation.ObjectAnimator;
import android.animation.StateListAnimator;
2015-05-21 23:27:27 +02:00
import android.annotation.SuppressLint;
2013-10-25 17:19:00 +02:00
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
2014-11-11 23:16:17 +01:00
import android.content.res.Configuration;
2015-06-29 19:12:11 +02:00
import android.graphics.Canvas;
2015-02-01 19:51:02 +01:00
import android.graphics.Outline;
2019-01-23 18:03:33 +01:00
import android.graphics.Paint;
2017-03-31 01:58:05 +02:00
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
import android.graphics.drawable.Drawable;
2013-12-20 20:25:49 +01:00
import android.net.Uri;
2015-02-01 19:51:02 +01:00
import android.os.Build;
2013-10-25 17:19:00 +02:00
import android.os.Bundle;
2015-09-24 22:52:02 +02:00
import android.support.annotation.NonNull;
2017-12-08 18:35:59 +01:00
import android.support.v4.content.FileProvider;
2014-11-12 23:16:59 +01:00
import android.text.TextUtils;
2014-11-11 23:16:17 +01:00
import android.util.TypedValue;
import android.view.Gravity;
2013-10-25 17:19:00 +02:00
import android.view.View;
import android.view.ViewGroup;
2015-02-01 19:51:02 +01:00
import android.view.ViewOutlineProvider;
2014-11-11 23:16:17 +01:00
import android.view.ViewTreeObserver;
2015-06-29 19:12:11 +02:00
import android.view.animation.AccelerateInterpolator;
import android.view.animation.DecelerateInterpolator;
2014-11-11 23:16:17 +01:00
import android.widget.FrameLayout;
2013-10-25 17:19:00 +02:00
import android.widget.ImageView;
import android.widget.LinearLayout;
2013-10-25 17:19:00 +02:00
import android.widget.TextView;
import android.widget.Toast;
2013-10-25 17:19:00 +02:00
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.AndroidUtilities;
2013-10-25 17:19:00 +02:00
import org.telegram.PhoneFormat.PhoneFormat;
2017-12-08 18:35:59 +01:00
import org.telegram.messenger.BuildConfig;
import org.telegram.messenger.ContactsController;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.DataQuery;
2019-01-23 18:03:33 +01:00
import org.telegram.messenger.ImageLoader;
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;
import org.telegram.messenger.ApplicationLoader;
import org.telegram.messenger.BuildVars;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.LocaleController;
import org.telegram.messenger.FileLoader;
2019-01-23 18:03:33 +01:00
import org.telegram.messenger.Utilities;
2016-04-22 15:49:00 +02:00
import org.telegram.messenger.browser.Browser;
2016-10-11 13:57:01 +02:00
import org.telegram.messenger.support.widget.LinearLayoutManager;
import org.telegram.messenger.support.widget.RecyclerView;
2015-09-24 22:52:02 +02:00
import org.telegram.tgnet.ConnectionsManager;
import org.telegram.tgnet.TLRPC;
2013-12-20 20:25:49 +01:00
import org.telegram.messenger.FileLog;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.MessagesController;
import org.telegram.messenger.MessagesStorage;
import org.telegram.messenger.NotificationCenter;
2013-10-25 17:19:00 +02:00
import org.telegram.messenger.R;
import org.telegram.messenger.UserConfig;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.MessageObject;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.ActionBar.AlertDialog;
import org.telegram.ui.ActionBar.BottomSheet;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.ActionBar.ThemeDescription;
2014-11-11 23:16:17 +01:00
import org.telegram.ui.Cells.EmptyCell;
import org.telegram.ui.Cells.HeaderCell;
import org.telegram.ui.Cells.ShadowSectionCell;
2019-01-23 18:03:33 +01:00
import org.telegram.ui.Cells.TextCell;
import org.telegram.ui.Cells.TextDetailCell;
import org.telegram.ui.Cells.TextInfoPrivacyCell;
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;
2019-03-03 21:40:48 +01:00
import org.telegram.ui.Components.AlertsCreator;
import org.telegram.ui.Components.AvatarDrawable;
2018-07-30 04:07:02 +02:00
import org.telegram.ui.Components.ImageUpdater;
import org.telegram.ui.Components.BackupImageView;
2014-11-13 21:10:14 +01:00
import org.telegram.ui.ActionBar.BaseFragment;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Components.CombinedDrawable;
import org.telegram.ui.Components.LayoutHelper;
2016-04-22 15:49:00 +02:00
import org.telegram.ui.ActionBar.Theme;
2019-01-23 18:03:33 +01:00
import org.telegram.ui.Components.RadialProgressView;
2016-10-11 13:57:01 +02:00
import org.telegram.ui.Components.RecyclerListView;
2018-08-27 10:33:11 +02:00
import org.telegram.ui.Components.voip.VoIPHelper;
2013-10-25 17:19:00 +02:00
2019-01-23 18:03:33 +01:00
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
2013-12-20 20:25:49 +01:00
import java.io.File;
2019-01-23 18:03:33 +01:00
import java.io.FileInputStream;
import java.io.FileOutputStream;
2013-12-20 20:25:49 +01:00
import java.util.ArrayList;
import java.util.Locale;
2019-01-23 18:03:33 +01:00
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
2013-10-25 17:19:00 +02:00
2019-01-23 18:03:33 +01:00
public class SettingsActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate, ImageUpdater.ImageUpdaterDelegate {
2014-11-11 23:16:17 +01:00
2016-10-11 13:57:01 +02:00
private RecyclerListView listView;
2013-10-25 17:19:00 +02:00
private ListAdapter listAdapter;
2016-10-11 13:57:01 +02:00
private LinearLayoutManager layoutManager;
2019-01-23 18:03:33 +01:00
private FrameLayout avatarContainer;
2014-11-11 23:16:17 +01:00
private BackupImageView avatarImage;
2019-01-23 18:03:33 +01:00
private View avatarOverlay;
private AnimatorSet avatarAnimation;
private RadialProgressView avatarProgressView;
2014-11-11 23:16:17 +01:00
private TextView nameTextView;
private TextView onlineTextView;
private ImageView writeButton;
private AnimatorSet writeButtonAnimation;
2019-01-23 18:03:33 +01:00
private ImageUpdater imageUpdater;
2015-10-29 18:10:07 +01:00
private View extraHeightView;
private View shadowView;
2017-03-31 01:58:05 +02:00
private AvatarDrawable avatarDrawable;
2015-10-29 18:10:07 +01:00
2019-01-23 18:03:33 +01:00
private TLRPC.FileLocation avatar;
private TLRPC.FileLocation avatarBig;
private TLRPC.TL_userFull userInfo;
2015-10-29 18:10:07 +01:00
private int extraHeight;
2013-10-25 17:19:00 +02:00
2014-11-12 23:16:59 +01:00
private int overscrollRow;
private int numberSectionRow;
private int numberRow;
private int usernameRow;
private int bioRow;
private int settingsSectionRow;
2014-11-11 23:16:17 +01:00
private int settingsSectionRow2;
private int notificationRow;
2014-11-11 23:16:17 +01:00
private int languageRow;
2014-11-17 03:44:57 +01:00
private int privacyRow;
2017-03-31 01:58:05 +02:00
private int dataRow;
2019-01-23 18:03:33 +01:00
private int chatRow;
private int helpRow;
private int versionRow;
private int rowCount;
2013-10-25 17:19:00 +02:00
2014-11-11 23:16:17 +01:00
private final static int edit_name = 1;
private final static int logout = 2;
2017-12-08 18:35:59 +01:00
private PhotoViewer.PhotoViewerProvider provider = new PhotoViewer.EmptyPhotoViewerProvider() {
@Override
2019-03-03 21:40:48 +01:00
public PhotoViewer.PlaceProviderObject getPlaceForPhoto(MessageObject messageObject, TLRPC.FileLocation fileLocation, int index, boolean needPreview) {
2017-12-08 18:35:59 +01:00
if (fileLocation == null) {
return null;
}
2018-07-30 04:07:02 +02:00
TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(UserConfig.getInstance(currentAccount).getClientUserId());
2017-12-08 18:35:59 +01:00
if (user != null && user.photo != null && user.photo.photo_big != null) {
TLRPC.FileLocation photoBig = user.photo.photo_big;
if (photoBig.local_id == fileLocation.local_id && photoBig.volume_id == fileLocation.volume_id && photoBig.dc_id == fileLocation.dc_id) {
int coords[] = new int[2];
avatarImage.getLocationInWindow(coords);
PhotoViewer.PlaceProviderObject object = new PhotoViewer.PlaceProviderObject();
object.viewX = coords[0];
object.viewY = coords[1] - (Build.VERSION.SDK_INT >= 21 ? 0 : AndroidUtilities.statusBarHeight);
object.parentView = avatarImage;
object.imageReceiver = avatarImage.getImageReceiver();
2018-07-30 04:07:02 +02:00
object.dialogId = UserConfig.getInstance(currentAccount).getClientUserId();
object.thumb = object.imageReceiver.getBitmapSafe();
2017-12-08 18:35:59 +01:00
object.size = -1;
object.radius = avatarImage.getImageReceiver().getRoundRadius();
2019-01-23 18:03:33 +01:00
object.scale = avatarContainer.getScaleX();
2017-12-08 18:35:59 +01:00
return object;
}
}
return null;
}
@Override
public void willHidePhotoViewer() {
avatarImage.getImageReceiver().setVisible(true, true);
}
};
2013-10-25 17:19:00 +02:00
@Override
public boolean onFragmentCreate() {
super.onFragmentCreate();
2018-07-30 04:07:02 +02:00
2019-01-23 18:03:33 +01:00
imageUpdater = new ImageUpdater();
2018-07-30 04:07:02 +02:00
imageUpdater.parentFragment = this;
2019-01-23 18:03:33 +01:00
imageUpdater.delegate = this;
2018-07-30 04:07:02 +02:00
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.updateInterfaces);
2019-01-23 18:03:33 +01:00
NotificationCenter.getInstance(currentAccount).addObserver(this, NotificationCenter.userInfoDidLoad);
NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.emojiDidLoad);
2013-10-25 17:19:00 +02:00
rowCount = 0;
2014-11-12 23:16:59 +01:00
overscrollRow = rowCount++;
2013-10-25 17:19:00 +02:00
numberSectionRow = rowCount++;
numberRow = rowCount++;
usernameRow = rowCount++;
bioRow = rowCount++;
2013-10-25 17:19:00 +02:00
settingsSectionRow = rowCount++;
2014-11-11 23:16:17 +01:00
settingsSectionRow2 = rowCount++;
2013-10-25 17:19:00 +02:00
notificationRow = rowCount++;
2014-11-17 03:44:57 +01:00
privacyRow = rowCount++;
2017-03-31 01:58:05 +02:00
dataRow = rowCount++;
2019-01-23 18:03:33 +01:00
chatRow = rowCount++;
2014-11-11 23:16:17 +01:00
languageRow = rowCount++;
2019-01-23 18:03:33 +01:00
helpRow = rowCount++;
versionRow = rowCount++;
2013-10-25 17:19:00 +02:00
2018-07-30 04:07:02 +02:00
DataQuery.getInstance(currentAccount).checkFeaturedStickers();
2019-01-23 18:03:33 +01:00
userInfo = MessagesController.getInstance(currentAccount).getUserFull(UserConfig.getInstance(currentAccount).getClientUserId());
MessagesController.getInstance(currentAccount).loadUserInfo(UserConfig.getInstance(currentAccount).getCurrentUser(), true, classGuid);
2013-10-25 17:19:00 +02:00
return true;
}
@Override
public void onFragmentDestroy() {
super.onFragmentDestroy();
if (avatarImage != null) {
avatarImage.setImageDrawable(null);
}
2018-07-30 04:07:02 +02:00
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.updateInterfaces);
2019-01-23 18:03:33 +01:00
NotificationCenter.getInstance(currentAccount).removeObserver(this, NotificationCenter.userInfoDidLoad);
NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.emojiDidLoad);
2018-07-30 04:07:02 +02:00
imageUpdater.clear();
2013-10-25 17:19:00 +02:00
}
@Override
2015-07-22 20:56:37 +02:00
public View createView(Context context) {
2017-03-31 01:58:05 +02:00
actionBar.setBackgroundColor(Theme.getColor(Theme.key_avatar_backgroundActionBarBlue));
actionBar.setItemsBackgroundColor(Theme.getColor(Theme.key_avatar_actionBarSelectorBlue), false);
actionBar.setItemsColor(Theme.getColor(Theme.key_avatar_actionBarIconBlue), false);
2015-04-09 20:00:14 +02:00
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
2015-10-29 18:10:07 +01:00
actionBar.setAddToContainer(false);
extraHeight = 88;
2015-04-09 20:00:14 +02:00
if (AndroidUtilities.isTablet()) {
actionBar.setOccupyStatusBar(false);
}
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
@Override
public void onItemClick(int id) {
if (id == -1) {
finishFragment();
} else if (id == edit_name) {
presentFragment(new ChangeNameActivity());
} else if (id == logout) {
2019-03-03 21:40:48 +01:00
presentFragment(new LogoutActivity());
}
2015-04-09 20:00:14 +02:00
}
});
ActionBarMenu menu = actionBar.createMenu();
ActionBarMenuItem item = menu.addItem(0, R.drawable.ic_ab_other);
2017-03-31 01:58:05 +02:00
item.addSubItem(edit_name, LocaleController.getString("EditName", R.string.EditName));
item.addSubItem(logout, LocaleController.getString("LogOut", R.string.LogOut));
2015-04-09 20:00:14 +02:00
2019-01-23 18:03:33 +01:00
int scrollTo;
int scrollToPosition = 0;
Object writeButtonTag = null;
if (listView != null) {
scrollTo = layoutManager.findFirstVisibleItemPosition();
View topView = layoutManager.findViewByPosition(scrollTo);
if (topView != null) {
scrollToPosition = topView.getTop();
} else {
scrollTo = -1;
}
writeButtonTag = writeButton.getTag();
} else {
scrollTo = -1;
}
2015-04-09 20:00:14 +02:00
listAdapter = new ListAdapter(context);
2015-06-29 19:12:11 +02:00
fragmentView = new FrameLayout(context) {
@Override
2015-09-24 22:52:02 +02:00
protected boolean drawChild(@NonNull Canvas canvas, @NonNull View child, long drawingTime) {
2015-06-29 19:12:11 +02:00
if (child == listView) {
boolean result = super.drawChild(canvas, child, drawingTime);
if (parentLayout != null) {
int actionBarHeight = 0;
int childCount = getChildCount();
for (int a = 0; a < childCount; a++) {
View view = getChildAt(a);
if (view == child) {
continue;
}
if (view instanceof ActionBar && view.getVisibility() == VISIBLE) {
if (((ActionBar) view).getCastShadows()) {
actionBarHeight = view.getMeasuredHeight();
}
break;
}
}
parentLayout.drawHeaderShadow(canvas, actionBarHeight);
}
return result;
} else {
return super.drawChild(canvas, child, drawingTime);
}
}
};
2017-03-31 01:58:05 +02:00
fragmentView.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundGray));
2015-04-09 20:00:14 +02:00
FrameLayout frameLayout = (FrameLayout) fragmentView;
2016-10-11 13:57:01 +02:00
listView = new RecyclerListView(context);
2015-04-09 20:00:14 +02:00
listView.setVerticalScrollBarEnabled(false);
listView.setLayoutManager(layoutManager = new LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false) {
@Override
public boolean supportsPredictiveItemAnimations() {
return false;
}
});
2017-03-31 01:58:05 +02:00
listView.setGlowColor(Theme.getColor(Theme.key_avatar_backgroundActionBarBlue));
2015-05-21 23:27:27 +02:00
frameLayout.addView(listView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT));
2015-04-09 20:00:14 +02:00
listView.setAdapter(listAdapter);
listView.setItemAnimator(null);
listView.setLayoutAnimation(null);
2019-01-23 18:03:33 +01:00
listView.setOnItemClickListener((view, position) -> {
if (position == notificationRow) {
presentFragment(new NotificationsSettingsActivity());
} else if (position == privacyRow) {
presentFragment(new PrivacySettingsActivity());
} else if (position == dataRow) {
presentFragment(new DataSettingsActivity());
} else if (position == chatRow) {
2019-02-08 03:30:32 +01:00
presentFragment(new ThemeActivity(ThemeActivity.THEME_TYPE_BASIC));
2019-01-23 18:03:33 +01:00
} else if (position == helpRow) {
BottomSheet.Builder builder = new BottomSheet.Builder(context);
builder.setApplyTopPadding(false);
LinearLayout linearLayout = new LinearLayout(context);
linearLayout.setOrientation(LinearLayout.VERTICAL);
HeaderCell headerCell = new HeaderCell(context, true, 23, 15, false);
headerCell.setHeight(47);
headerCell.setText(LocaleController.getString("SettingsHelp", R.string.SettingsHelp));
linearLayout.addView(headerCell);
LinearLayout linearLayoutInviteContainer = new LinearLayout(context);
linearLayoutInviteContainer.setOrientation(LinearLayout.VERTICAL);
linearLayout.addView(linearLayoutInviteContainer, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT));
int count = 6;
for (int a = 0; a < count; a++) {
if (a >= 3 && a <= 4 && !BuildVars.LOGS_ENABLED || a == 5 && !BuildVars.DEBUG_VERSION) {
continue;
2015-04-09 20:00:14 +02:00
}
2019-01-23 18:03:33 +01:00
TextCell textCell = new TextCell(context);
String text;
switch (a) {
case 0:
text = LocaleController.getString("AskAQuestion", R.string.AskAQuestion);
break;
case 1:
text = LocaleController.getString("TelegramFAQ", R.string.TelegramFAQ);
break;
case 2:
text = LocaleController.getString("PrivacyPolicy", R.string.PrivacyPolicy);
break;
case 3:
text = LocaleController.getString("DebugSendLogs", R.string.DebugSendLogs);
break;
case 4:
text = LocaleController.getString("DebugClearLogs", R.string.DebugClearLogs);
break;
case 5:
default:
text = "Switch Backend";
break;
2015-04-09 20:00:14 +02:00
}
2019-01-23 18:03:33 +01:00
textCell.setText(text, BuildVars.LOGS_ENABLED || BuildVars.DEBUG_VERSION ? a != count - 1 : a != 2);
textCell.setTag(a);
textCell.setBackgroundDrawable(Theme.getSelectorDrawable(false));
linearLayoutInviteContainer.addView(textCell, LayoutHelper.createLinear(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT));
textCell.setOnClickListener(v2 -> {
Integer tag = (Integer) v2.getTag();
switch (tag) {
case 0: {
2019-03-03 21:40:48 +01:00
showDialog(AlertsCreator.createSupportAlert(SettingsActivity.this));
2019-01-23 18:03:33 +01:00
break;
2018-07-30 04:07:02 +02:00
}
2019-01-23 18:03:33 +01:00
case 1:
Browser.openUrl(getParentActivity(), LocaleController.getString("TelegramFaqUrl", R.string.TelegramFaqUrl));
break;
case 2:
Browser.openUrl(getParentActivity(), LocaleController.getString("PrivacyPolicyUrl", R.string.PrivacyPolicyUrl));
break;
case 3:
sendLogs();
break;
case 4:
FileLog.cleanupLogs();
break;
case 5: {
if (getParentActivity() == null) {
return;
}
AlertDialog.Builder builder1 = new AlertDialog.Builder(getParentActivity());
builder1.setMessage(LocaleController.getString("AreYouSure", R.string.AreYouSure));
builder1.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder1.setPositiveButton(LocaleController.getString("OK", R.string.OK), (dialogInterface, i) -> {
SharedConfig.pushAuthKey = null;
SharedConfig.pushAuthKeyId = null;
SharedConfig.saveConfig();
ConnectionsManager.getInstance(currentAccount).switchBackend();
});
builder1.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showDialog(builder1.create());
break;
2016-10-11 13:57:01 +02:00
}
}
2019-01-23 18:03:33 +01:00
builder.getDismissRunnable().run();
2016-10-11 13:57:01 +02:00
});
2014-11-11 23:16:17 +01:00
}
2019-01-23 18:03:33 +01:00
builder.setCustomView(linearLayout);
showDialog(builder.create());
} else if (position == languageRow) {
presentFragment(new LanguageSelectActivity());
} else if (position == usernameRow) {
presentFragment(new ChangeUsernameActivity());
} else if (position == bioRow) {
if (userInfo != null) {
presentFragment(new ChangeBioActivity());
}
} else if (position == numberRow) {
presentFragment(new ChangePhoneHelpActivity());
2015-04-09 20:00:14 +02:00
}
});
2014-11-11 23:16:17 +01:00
2016-10-11 13:57:01 +02:00
listView.setOnItemLongClickListener(new RecyclerListView.OnItemLongClickListener() {
private int pressCount = 0;
@Override
2016-10-11 13:57:01 +02:00
public boolean onItemClick(View view, int position) {
if (position == versionRow) {
pressCount++;
2017-12-08 18:35:59 +01:00
if (pressCount >= 2 || BuildVars.DEBUG_PRIVATE_VERSION) {
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
2017-03-31 01:58:05 +02:00
builder.setTitle(LocaleController.getString("DebugMenu", R.string.DebugMenu));
2017-12-08 18:35:59 +01:00
CharSequence[] items;
2018-07-30 04:07:02 +02:00
items = new CharSequence[]{
LocaleController.getString("DebugMenuImportContacts", R.string.DebugMenuImportContacts),
LocaleController.getString("DebugMenuReloadContacts", R.string.DebugMenuReloadContacts),
LocaleController.getString("DebugMenuResetContacts", R.string.DebugMenuResetContacts),
LocaleController.getString("DebugMenuResetDialogs", R.string.DebugMenuResetDialogs),
BuildVars.LOGS_ENABLED ? LocaleController.getString("DebugMenuDisableLogs", R.string.DebugMenuDisableLogs) : LocaleController.getString("DebugMenuEnableLogs", R.string.DebugMenuEnableLogs),
SharedConfig.inappCamera ? LocaleController.getString("DebugMenuDisableCamera", R.string.DebugMenuDisableCamera) : LocaleController.getString("DebugMenuEnableCamera", R.string.DebugMenuEnableCamera),
LocaleController.getString("DebugMenuClearMediaCache", R.string.DebugMenuClearMediaCache),
2018-08-27 10:33:11 +02:00
LocaleController.getString("DebugMenuCallSettings", R.string.DebugMenuCallSettings),
2018-07-30 04:07:02 +02:00
null,
BuildVars.DEBUG_PRIVATE_VERSION ? "Check for app updates" : null
};
2018-08-27 10:33:11 +02:00
builder.setItems(items, (dialog, which) -> {
if (which == 0) {
UserConfig.getInstance(currentAccount).syncContacts = true;
UserConfig.getInstance(currentAccount).saveConfig(false);
ContactsController.getInstance(currentAccount).forceImportContacts();
} else if (which == 1) {
ContactsController.getInstance(currentAccount).loadContacts(false, 0);
} else if (which == 2) {
ContactsController.getInstance(currentAccount).resetImportedContacts();
} else if (which == 3) {
MessagesController.getInstance(currentAccount).forceResetDialogs();
} else if (which == 4) {
BuildVars.LOGS_ENABLED = !BuildVars.LOGS_ENABLED;
SharedPreferences sharedPreferences = ApplicationLoader.applicationContext.getSharedPreferences("systemConfig", Context.MODE_PRIVATE);
sharedPreferences.edit().putBoolean("logsEnabled", BuildVars.LOGS_ENABLED).commit();
} else if (which == 5) {
SharedConfig.toggleInappCamera();
} else if (which == 6) {
MessagesStorage.getInstance(currentAccount).clearSentMedia();
2019-03-03 21:40:48 +01:00
SharedPreferences.Editor editor = MessagesController.getGlobalMainSettings().edit();
SharedConfig.setNoSoundHintShowed(false);
2018-08-27 10:33:11 +02:00
} else if (which == 7) {
VoIPHelper.showCallDebugSettings(getParentActivity());
} else if (which == 8) {
SharedConfig.toggleRoundCamera16to9();
} else if (which == 9) {
((LaunchActivity) getParentActivity()).checkAppUpdate(true);
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showDialog(builder.create());
} else {
try {
Toast.makeText(getParentActivity(), "¯\\_(ツ)_/¯", Toast.LENGTH_SHORT).show();
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
}
return true;
}
return false;
}
});
2015-04-09 20:00:14 +02:00
frameLayout.addView(actionBar);
2015-10-29 18:10:07 +01:00
extraHeightView = new View(context);
extraHeightView.setPivotY(0);
2017-03-31 01:58:05 +02:00
extraHeightView.setBackgroundColor(Theme.getColor(Theme.key_avatar_backgroundActionBarBlue));
2015-10-29 18:10:07 +01:00
frameLayout.addView(extraHeightView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 88));
shadowView = new View(context);
shadowView.setBackgroundResource(R.drawable.header_shadow);
frameLayout.addView(shadowView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 3));
2019-01-23 18:03:33 +01:00
avatarContainer = new FrameLayout(context);
avatarContainer.setPivotX(LocaleController.isRTL ? AndroidUtilities.dp(42) : 0);
avatarContainer.setPivotY(0);
frameLayout.addView(avatarContainer, LayoutHelper.createFrame(42, 42, Gravity.TOP | (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT), (LocaleController.isRTL ? 0 : 64), 0, (LocaleController.isRTL ? 64 : 0), 0));
avatarContainer.setOnClickListener(v -> {
if (avatar != null) {
return;
}
2018-08-27 10:33:11 +02:00
TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(UserConfig.getInstance(currentAccount).getClientUserId());
if (user != null && user.photo != null && user.photo.photo_big != null) {
PhotoViewer.getInstance().setParentActivity(getParentActivity());
PhotoViewer.getInstance().openPhoto(user.photo.photo_big, provider);
2015-10-29 18:10:07 +01:00
}
});
2019-01-23 18:03:33 +01:00
avatarImage = new BackupImageView(context);
avatarImage.setRoundRadius(AndroidUtilities.dp(21));
avatarContainer.addView(avatarImage, LayoutHelper.createFrame(42, 42));
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(0x55000000);
avatarProgressView = new RadialProgressView(context) {
@Override
protected void onDraw(Canvas canvas) {
if (avatarImage != null && avatarImage.getImageReceiver().hasNotThumb()) {
paint.setAlpha((int) (0x55 * avatarImage.getImageReceiver().getCurrentAlpha()));
canvas.drawCircle(getMeasuredWidth() / 2, getMeasuredHeight() / 2, AndroidUtilities.dp(21), paint);
}
super.onDraw(canvas);
}
};
avatarProgressView.setSize(AndroidUtilities.dp(26));
avatarProgressView.setProgressColor(0xffffffff);
avatarContainer.addView(avatarProgressView, LayoutHelper.createFrame(42, 42));
showAvatarProgress(false, false);
nameTextView = new TextView(context) {
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
setPivotX(LocaleController.isRTL ? getMeasuredWidth() : 0);
}
};
2017-03-31 01:58:05 +02:00
nameTextView.setTextColor(Theme.getColor(Theme.key_profile_title));
2015-10-29 18:10:07 +01:00
nameTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 18);
nameTextView.setLines(1);
nameTextView.setMaxLines(1);
nameTextView.setSingleLine(true);
nameTextView.setEllipsize(TextUtils.TruncateAt.END);
2019-01-23 18:03:33 +01:00
nameTextView.setGravity(LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT);
2015-10-29 18:10:07 +01:00
nameTextView.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
nameTextView.setPivotY(0);
2019-01-23 18:03:33 +01:00
frameLayout.addView(nameTextView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.TOP, LocaleController.isRTL ? 48 : 118, 0, LocaleController.isRTL ? 118 : 48, 0));
2015-10-29 18:10:07 +01:00
onlineTextView = new TextView(context);
2017-03-31 01:58:05 +02:00
onlineTextView.setTextColor(Theme.getColor(Theme.key_avatar_subtitleInProfileBlue));
2015-10-29 18:10:07 +01:00
onlineTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
onlineTextView.setLines(1);
onlineTextView.setMaxLines(1);
onlineTextView.setSingleLine(true);
onlineTextView.setEllipsize(TextUtils.TruncateAt.END);
2019-01-23 18:03:33 +01:00
onlineTextView.setGravity(LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT);
frameLayout.addView(onlineTextView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, (LocaleController.isRTL ? Gravity.RIGHT : Gravity.LEFT) | Gravity.TOP, LocaleController.isRTL ? 48 : 118, 0, LocaleController.isRTL ? 118 : 48, 0));
2015-10-29 18:10:07 +01:00
2015-04-09 20:00:14 +02:00
writeButton = new ImageView(context);
2017-03-31 01:58:05 +02:00
Drawable drawable = Theme.createSimpleSelectorCircleDrawable(AndroidUtilities.dp(56), Theme.getColor(Theme.key_profile_actionBackground), Theme.getColor(Theme.key_profile_actionPressedBackground));
if (Build.VERSION.SDK_INT < 21) {
Drawable shadowDrawable = context.getResources().getDrawable(R.drawable.floating_shadow_profile).mutate();
shadowDrawable.setColorFilter(new PorterDuffColorFilter(0xff000000, PorterDuff.Mode.MULTIPLY));
CombinedDrawable combinedDrawable = new CombinedDrawable(shadowDrawable, drawable, 0, 0);
combinedDrawable.setIconSize(AndroidUtilities.dp(56), AndroidUtilities.dp(56));
drawable = combinedDrawable;
}
writeButton.setBackgroundDrawable(drawable);
2019-01-23 18:03:33 +01:00
writeButton.setImageResource(R.drawable.menu_camera_av);
2017-03-31 01:58:05 +02:00
writeButton.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_profile_actionIcon), PorterDuff.Mode.MULTIPLY));
2015-04-09 20:00:14 +02:00
writeButton.setScaleType(ImageView.ScaleType.CENTER);
if (Build.VERSION.SDK_INT >= 21) {
StateListAnimator animator = new StateListAnimator();
animator.addState(new int[]{android.R.attr.state_pressed}, ObjectAnimator.ofFloat(writeButton, "translationZ", AndroidUtilities.dp(2), AndroidUtilities.dp(4)).setDuration(200));
animator.addState(new int[]{}, ObjectAnimator.ofFloat(writeButton, "translationZ", AndroidUtilities.dp(4), AndroidUtilities.dp(2)).setDuration(200));
writeButton.setStateListAnimator(animator);
writeButton.setOutlineProvider(new ViewOutlineProvider() {
2015-05-21 23:27:27 +02:00
@SuppressLint("NewApi")
2014-11-12 23:16:59 +01:00
@Override
2015-04-09 20:00:14 +02:00
public void getOutline(View view, Outline outline) {
outline.setOval(0, 0, AndroidUtilities.dp(56), AndroidUtilities.dp(56));
}
});
}
2019-01-23 18:03:33 +01:00
frameLayout.addView(writeButton, LayoutHelper.createFrame(Build.VERSION.SDK_INT >= 21 ? 56 : 60, Build.VERSION.SDK_INT >= 21 ? 56 : 60, (LocaleController.isRTL ? Gravity.LEFT : Gravity.RIGHT) | Gravity.TOP, LocaleController.isRTL ? 16 : 0, 0, LocaleController.isRTL ? 0 : 16, 0));
2018-08-27 10:33:11 +02:00
writeButton.setOnClickListener(v -> {
TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(UserConfig.getInstance(currentAccount).getClientUserId());
if (user == null) {
user = UserConfig.getInstance(currentAccount).getCurrentUser();
}
if (user == null) {
return;
2015-04-09 20:00:14 +02:00
}
2019-01-23 18:03:33 +01:00
imageUpdater.openMenu(user.photo != null && user.photo.photo_big != null && !(user.photo instanceof TLRPC.TL_userProfilePhotoEmpty), () -> MessagesController.getInstance(currentAccount).deleteUserPhoto(null));
2015-04-09 20:00:14 +02:00
});
2019-01-23 18:03:33 +01:00
if (scrollTo != -1) {
layoutManager.scrollToPositionWithOffset(scrollTo, scrollToPosition);
if (writeButtonTag != null) {
writeButton.setTag(0);
writeButton.setScaleX(0.2f);
writeButton.setScaleY(0.2f);
writeButton.setAlpha(0.0f);
writeButton.setVisibility(View.GONE);
}
}
2015-10-29 18:10:07 +01:00
needLayout();
2016-10-11 13:57:01 +02:00
listView.setOnScrollListener(new RecyclerView.OnScrollListener() {
2015-04-09 20:00:14 +02:00
@Override
2016-10-11 13:57:01 +02:00
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
if (layoutManager.getItemCount() == 0) {
2015-04-09 20:00:14 +02:00
return;
}
int height = 0;
2016-10-11 13:57:01 +02:00
View child = recyclerView.getChildAt(0);
2015-04-09 20:00:14 +02:00
if (child != null) {
2016-10-11 13:57:01 +02:00
if (layoutManager.findFirstVisibleItemPosition() == 0) {
2015-04-09 20:00:14 +02:00
height = AndroidUtilities.dp(88) + (child.getTop() < 0 ? child.getTop() : 0);
}
2015-10-29 18:10:07 +01:00
if (extraHeight != height) {
extraHeight = height;
2015-04-09 20:00:14 +02:00
needLayout();
}
}
}
});
2013-10-25 17:19:00 +02:00
return fragmentView;
}
2019-01-23 18:03:33 +01:00
@Override
public void didUploadPhoto(final TLRPC.InputFile file, final TLRPC.PhotoSize bigSize, final TLRPC.PhotoSize smallSize) {
AndroidUtilities.runOnUIThread(() -> {
if (file != null) {
TLRPC.TL_photos_uploadProfilePhoto req = new TLRPC.TL_photos_uploadProfilePhoto();
req.file = file;
ConnectionsManager.getInstance(currentAccount).sendRequest(req, (response, error) -> {
if (error == null) {
TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(UserConfig.getInstance(currentAccount).getClientUserId());
if (user == null) {
user = UserConfig.getInstance(currentAccount).getCurrentUser();
if (user == null) {
return;
}
MessagesController.getInstance(currentAccount).putUser(user, false);
} else {
UserConfig.getInstance(currentAccount).setCurrentUser(user);
}
TLRPC.TL_photos_photo photo = (TLRPC.TL_photos_photo) response;
ArrayList<TLRPC.PhotoSize> sizes = photo.photo.sizes;
TLRPC.PhotoSize small = FileLoader.getClosestPhotoSizeWithSize(sizes, 150);
TLRPC.PhotoSize big = FileLoader.getClosestPhotoSizeWithSize(sizes, 800);
user.photo = new TLRPC.TL_userProfilePhoto();
user.photo.photo_id = photo.photo.id;
if (small != null) {
user.photo.photo_small = small.location;
}
if (big != null) {
user.photo.photo_big = big.location;
} else if (small != null) {
user.photo.photo_small = small.location;
}
if (photo != null) {
if (small != null && avatar != null) {
File destFile = FileLoader.getPathToAttach(small, true);
File src = FileLoader.getPathToAttach(avatar, true);
src.renameTo(destFile);
String oldKey = avatar.volume_id + "_" + avatar.local_id + "@50_50";
String newKey = small.location.volume_id + "_" + small.location.local_id + "@50_50";
ImageLoader.getInstance().replaceImageInCache(oldKey, newKey, small.location, true);
}
if (big != null && avatarBig != null) {
File destFile = FileLoader.getPathToAttach(big, true);
File src = FileLoader.getPathToAttach(avatarBig, true);
src.renameTo(destFile);
}
}
MessagesStorage.getInstance(currentAccount).clearUserPhotos(user.id);
ArrayList<TLRPC.User> users = new ArrayList<>();
users.add(user);
MessagesStorage.getInstance(currentAccount).putUsersAndChats(users, null, false, true);
}
AndroidUtilities.runOnUIThread(() -> {
avatar = null;
avatarBig = null;
updateUserData();
showAvatarProgress(false, true);
NotificationCenter.getInstance(currentAccount).postNotificationName(NotificationCenter.updateInterfaces, MessagesController.UPDATE_MASK_ALL);
NotificationCenter.getInstance(currentAccount).postNotificationName(NotificationCenter.mainUserInfoChanged);
UserConfig.getInstance(currentAccount).saveConfig(true);
});
});
2018-08-27 10:33:11 +02:00
} else {
2019-01-23 18:03:33 +01:00
avatar = smallSize.location;
avatarBig = bigSize.location;
avatarImage.setImage(avatar, "50_50", avatarDrawable, null);
showAvatarProgress(true, false);
2018-08-27 10:33:11 +02:00
}
});
2019-01-23 18:03:33 +01:00
}
private void showAvatarProgress(boolean show, boolean animated) {
if (avatarProgressView == null) {
return;
}
if (avatarAnimation != null) {
avatarAnimation.cancel();
avatarAnimation = null;
}
if (animated) {
avatarAnimation = new AnimatorSet();
if (show) {
avatarProgressView.setVisibility(View.VISIBLE);
avatarAnimation.playTogether(ObjectAnimator.ofFloat(avatarProgressView, View.ALPHA, 1.0f));
} else {
avatarAnimation.playTogether(ObjectAnimator.ofFloat(avatarProgressView, View.ALPHA, 0.0f));
}
avatarAnimation.setDuration(180);
avatarAnimation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (avatarAnimation == null || avatarProgressView == null) {
return;
}
if (!show) {
avatarProgressView.setVisibility(View.INVISIBLE);
}
avatarAnimation = null;
}
@Override
public void onAnimationCancel(Animator animation) {
avatarAnimation = null;
}
});
avatarAnimation.start();
} else {
if (show) {
avatarProgressView.setAlpha(1.0f);
avatarProgressView.setVisibility(View.VISIBLE);
} else {
avatarProgressView.setAlpha(0.0f);
avatarProgressView.setVisibility(View.INVISIBLE);
2018-08-27 10:33:11 +02:00
}
}
2019-01-23 18:03:33 +01:00
}
2018-08-27 10:33:11 +02:00
2013-10-25 17:19:00 +02:00
@Override
public void onActivityResultFragment(int requestCode, int resultCode, Intent data) {
2018-07-30 04:07:02 +02:00
imageUpdater.onActivityResult(requestCode, resultCode, data);
2013-10-25 17:19:00 +02:00
}
@Override
public void saveSelfArgs(Bundle args) {
2018-07-30 04:07:02 +02:00
if (imageUpdater != null && imageUpdater.currentPicturePath != null) {
args.putString("path", imageUpdater.currentPicturePath);
}
}
@Override
public void restoreSelfArgs(Bundle args) {
2018-07-30 04:07:02 +02:00
if (imageUpdater != null) {
imageUpdater.currentPicturePath = args.getString("path");
}
}
2013-10-25 17:19:00 +02:00
@Override
2018-07-30 04:07:02 +02:00
public void didReceivedNotification(int id, int account, Object... args) {
if (id == NotificationCenter.updateInterfaces) {
2015-05-21 23:27:27 +02:00
int mask = (Integer) args[0];
if ((mask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (mask & MessagesController.UPDATE_MASK_NAME) != 0) {
2014-11-11 23:16:17 +01:00
updateUserData();
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.userInfoDidLoad) {
Integer uid = (Integer) args[0];
2018-07-30 04:07:02 +02:00
if (uid == UserConfig.getInstance(currentAccount).getClientUserId() && listAdapter != null) {
2019-01-23 18:03:33 +01:00
userInfo = (TLRPC.TL_userFull) args[1];
listAdapter.notifyItemChanged(bioRow);
}
2019-01-23 18:03:33 +01:00
} else if (id == NotificationCenter.emojiDidLoad) {
2017-12-08 18:35:59 +01:00
if (listView != null) {
listView.invalidateViews();
}
2014-11-11 23:16:17 +01:00
}
}
@Override
public void onResume() {
super.onResume();
if (listAdapter != null) {
listAdapter.notifyDataSetChanged();
}
2015-04-09 20:00:14 +02:00
updateUserData();
2014-11-11 23:16:17 +01:00
fixLayout();
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
fixLayout();
}
2014-11-12 23:16:59 +01:00
private void needLayout() {
FrameLayout.LayoutParams layoutParams;
2015-10-29 18:10:07 +01:00
int newTop = (actionBar.getOccupyStatusBar() ? AndroidUtilities.statusBarHeight : 0) + ActionBar.getCurrentActionBarHeight();
2014-11-12 23:16:59 +01:00
if (listView != null) {
layoutParams = (FrameLayout.LayoutParams) listView.getLayoutParams();
2015-10-29 18:10:07 +01:00
if (layoutParams.topMargin != newTop) {
layoutParams.topMargin = newTop;
listView.setLayoutParams(layoutParams);
extraHeightView.setTranslationY(newTop);
2015-10-29 18:10:07 +01:00
}
2014-11-12 23:16:59 +01:00
}
2019-01-23 18:03:33 +01:00
if (avatarContainer != null) {
2015-10-29 18:10:07 +01:00
float diff = extraHeight / (float) AndroidUtilities.dp(88);
extraHeightView.setScaleY(diff);
shadowView.setTranslationY(newTop + extraHeight);
writeButton.setTranslationY((actionBar.getOccupyStatusBar() ? AndroidUtilities.statusBarHeight : 0) + ActionBar.getCurrentActionBarHeight() + extraHeight - AndroidUtilities.dp(29.5f));
2015-10-29 18:10:07 +01:00
2015-06-29 19:12:11 +02:00
final boolean setVisible = diff > 0.2f;
boolean currentVisible = writeButton.getTag() == null;
if (setVisible != currentVisible) {
if (setVisible) {
writeButton.setTag(null);
writeButton.setVisibility(View.VISIBLE);
} else {
writeButton.setTag(0);
}
if (writeButtonAnimation != null) {
AnimatorSet old = writeButtonAnimation;
2015-06-29 19:12:11 +02:00
writeButtonAnimation = null;
old.cancel();
}
writeButtonAnimation = new AnimatorSet();
2015-06-29 19:12:11 +02:00
if (setVisible) {
writeButtonAnimation.setInterpolator(new DecelerateInterpolator());
writeButtonAnimation.playTogether(
ObjectAnimator.ofFloat(writeButton, "scaleX", 1.0f),
ObjectAnimator.ofFloat(writeButton, "scaleY", 1.0f),
ObjectAnimator.ofFloat(writeButton, "alpha", 1.0f)
2015-06-29 19:12:11 +02:00
);
} else {
writeButtonAnimation.setInterpolator(new AccelerateInterpolator());
writeButtonAnimation.playTogether(
ObjectAnimator.ofFloat(writeButton, "scaleX", 0.2f),
ObjectAnimator.ofFloat(writeButton, "scaleY", 0.2f),
ObjectAnimator.ofFloat(writeButton, "alpha", 0.0f)
2015-06-29 19:12:11 +02:00
);
}
writeButtonAnimation.setDuration(150);
2017-03-31 01:58:05 +02:00
writeButtonAnimation.addListener(new AnimatorListenerAdapter() {
2015-06-29 19:12:11 +02:00
@Override
public void onAnimationEnd(Animator animation) {
2015-06-29 19:12:11 +02:00
if (writeButtonAnimation != null && writeButtonAnimation.equals(animation)) {
writeButton.setVisibility(setVisible ? View.VISIBLE : View.GONE);
writeButtonAnimation = null;
}
}
});
writeButtonAnimation.start();
2014-11-19 02:23:46 +01:00
}
2014-11-12 23:16:59 +01:00
2019-01-23 18:03:33 +01:00
avatarContainer.setScaleX((42 + 18 * diff) / 42.0f);
avatarContainer.setScaleY((42 + 18 * diff) / 42.0f);
avatarProgressView.setSize(AndroidUtilities.dp(26 / avatarContainer.getScaleX()));
avatarProgressView.setStrokeWidth(3 / avatarContainer.getScaleX());
2015-10-29 18:10:07 +01:00
float avatarY = (actionBar.getOccupyStatusBar() ? AndroidUtilities.statusBarHeight : 0) + ActionBar.getCurrentActionBarHeight() / 2.0f * (1.0f + diff) - 21 * AndroidUtilities.density + 27 * AndroidUtilities.density * diff;
2019-01-23 18:03:33 +01:00
avatarContainer.setTranslationY((float) Math.ceil(avatarY));
nameTextView.setTranslationY((float) Math.floor(avatarY) - (float) Math.ceil(AndroidUtilities.density) + (float) Math.floor(7 * AndroidUtilities.density * diff));
onlineTextView.setTranslationY((float) Math.floor(avatarY) + AndroidUtilities.dp(22) + (float )Math.floor(11 * AndroidUtilities.density) * diff);
nameTextView.setScaleX(1.0f + 0.12f * diff);
nameTextView.setScaleY(1.0f + 0.12f * diff);
2019-01-23 18:03:33 +01:00
if (LocaleController.isRTL) {
avatarContainer.setTranslationX(AndroidUtilities.dp(47) * diff);
nameTextView.setTranslationX(21 * AndroidUtilities.density * diff);
onlineTextView.setTranslationX(21 * AndroidUtilities.density * diff);
} else {
avatarContainer.setTranslationX(-AndroidUtilities.dp(47) * diff);
nameTextView.setTranslationX(-21 * AndroidUtilities.density * diff);
onlineTextView.setTranslationX(-21 * AndroidUtilities.density * diff);
}
2014-11-12 23:16:59 +01:00
}
}
2014-11-11 23:16:17 +01:00
private void fixLayout() {
if (fragmentView == null) {
return;
}
fragmentView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
if (fragmentView != null) {
2014-11-12 23:16:59 +01:00
needLayout();
2014-11-11 23:16:17 +01:00
fragmentView.getViewTreeObserver().removeOnPreDrawListener(this);
}
2015-06-29 19:12:11 +02:00
return true;
2013-10-25 17:19:00 +02:00
}
2014-11-11 23:16:17 +01:00
});
}
private void updateUserData() {
2018-07-30 04:07:02 +02:00
TLRPC.User user = MessagesController.getInstance(currentAccount).getUser(UserConfig.getInstance(currentAccount).getClientUserId());
2019-03-03 21:40:48 +01:00
if (user == null) {
return;
}
2014-11-11 23:16:17 +01:00
TLRPC.FileLocation photo = null;
TLRPC.FileLocation photoBig = null;
if (user.photo != null) {
photo = user.photo.photo_small;
photoBig = user.photo.photo_big;
2013-10-25 17:19:00 +02:00
}
2017-03-31 01:58:05 +02:00
avatarDrawable = new AvatarDrawable(user, true);
2016-04-22 15:49:00 +02:00
2017-03-31 01:58:05 +02:00
avatarDrawable.setColor(Theme.getColor(Theme.key_avatar_backgroundInProfileBlue));
2015-02-26 15:36:15 +01:00
if (avatarImage != null) {
2019-01-23 18:03:33 +01:00
avatarImage.setImage(photo, "50_50", avatarDrawable, user);
2018-07-30 04:07:02 +02:00
avatarImage.getImageReceiver().setVisible(!PhotoViewer.isShowingImage(photoBig), false);
2014-11-11 23:16:17 +01:00
2015-06-29 19:12:11 +02:00
nameTextView.setText(UserObject.getUserName(user));
2015-02-26 15:36:15 +01:00
onlineTextView.setText(LocaleController.getString("Online", R.string.Online));
2014-11-11 23:16:17 +01:00
2018-07-30 04:07:02 +02:00
avatarImage.getImageReceiver().setVisible(!PhotoViewer.isShowingImage(photoBig), false);
2015-02-26 15:36:15 +01:00
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
private void sendLogs() {
2019-01-23 18:03:33 +01:00
if (getParentActivity() == null) {
return;
}
AlertDialog progressDialog = new AlertDialog(getParentActivity(), 3);
progressDialog.setCanCacnel(false);
progressDialog.show();
Utilities.globalQueue.postRunnable(() -> {
try {
File sdCard = ApplicationLoader.applicationContext.getExternalFilesDir(null);
File dir = new File(sdCard.getAbsolutePath() + "/logs");
File zipFile = new File(dir, "logs.zip");
if (zipFile.exists()) {
zipFile.delete();
2017-12-08 18:35:59 +01:00
}
2013-12-20 20:25:49 +01:00
2019-01-23 18:03:33 +01:00
File[] files = dir.listFiles();
boolean[] finished = new boolean[1];
BufferedInputStream origin = null;
ZipOutputStream out = null;
try {
FileOutputStream dest = new FileOutputStream(zipFile);
out = new ZipOutputStream(new BufferedOutputStream(dest));
byte data[] = new byte[1024 * 64];
for (int i = 0; i < files.length; i++) {
FileInputStream fi = new FileInputStream(files[i]);
origin = new BufferedInputStream(fi, data.length);
ZipEntry entry = new ZipEntry(files[i].getName());
out.putNextEntry(entry);
int count;
while ((count = origin.read(data, 0, data.length)) != -1) {
out.write(data, 0, count);
}
if (origin != null) {
origin.close();
origin = null;
}
}
finished[0] = true;
} catch (Exception e) {
e.printStackTrace();
} finally {
if (origin != null) {
origin.close();
}
if (out != null) {
out.close();
}
}
AndroidUtilities.runOnUIThread(() -> {
try {
progressDialog.dismiss();
} catch (Exception ignore) {
}
if (finished[0]) {
Uri uri;
if (Build.VERSION.SDK_INT >= 24) {
uri = FileProvider.getUriForFile(getParentActivity(), BuildConfig.APPLICATION_ID + ".provider", zipFile);
} else {
uri = Uri.fromFile(zipFile);
}
Intent i = new Intent(Intent.ACTION_SEND);
if (Build.VERSION.SDK_INT >= 24) {
i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
i.setType("message/rfc822");
i.putExtra(Intent.EXTRA_EMAIL, "");
i.putExtra(Intent.EXTRA_SUBJECT, "Logs from " + LocaleController.getInstance().formatterStats.format(System.currentTimeMillis()));
i.putExtra(Intent.EXTRA_STREAM, uri);
getParentActivity().startActivityForResult(Intent.createChooser(i, "Select email application."), 500);
} else {
Toast.makeText(getParentActivity(), LocaleController.getString("ErrorOccurred", R.string.ErrorOccurred), Toast.LENGTH_SHORT).show();
}
});
} catch (Exception e) {
e.printStackTrace();
2017-12-08 18:35:59 +01:00
}
2019-01-23 18:03:33 +01:00
});
2013-12-20 20:25:49 +01:00
}
2017-03-31 01:58:05 +02:00
private class ListAdapter extends RecyclerListView.SelectionAdapter {
2016-10-11 13:57:01 +02:00
2013-10-25 17:19:00 +02:00
private Context mContext;
2016-10-11 13:57:01 +02:00
public ListAdapter(Context context) {
mContext = context;
2013-10-25 17:19:00 +02:00
}
@Override
2016-10-11 13:57:01 +02:00
public int getItemCount() {
2013-10-25 17:19:00 +02:00
return rowCount;
}
@Override
2016-10-11 13:57:01 +02:00
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
switch (holder.getItemViewType()) {
case 0: {
if (position == overscrollRow) {
((EmptyCell) holder.itemView).setHeight(AndroidUtilities.dp(88));
}
break;
2013-10-25 17:19:00 +02:00
}
2016-10-11 13:57:01 +02:00
case 2: {
2019-01-23 18:03:33 +01:00
TextCell textCell = (TextCell) holder.itemView;
if (position == languageRow) {
textCell.setTextAndIcon(LocaleController.getString("Language", R.string.Language), R.drawable.menu_language, true);
2016-10-11 13:57:01 +02:00
} else if (position == notificationRow) {
2019-01-23 18:03:33 +01:00
textCell.setTextAndIcon(LocaleController.getString("NotificationsAndSounds", R.string.NotificationsAndSounds), R.drawable.menu_notifications, true);
2016-10-11 13:57:01 +02:00
} else if (position == privacyRow) {
2019-01-23 18:03:33 +01:00
textCell.setTextAndIcon(LocaleController.getString("PrivacySettings", R.string.PrivacySettings), R.drawable.menu_secret, true);
2017-03-31 01:58:05 +02:00
} else if (position == dataRow) {
2019-01-23 18:03:33 +01:00
textCell.setTextAndIcon(LocaleController.getString("DataSettings", R.string.DataSettings), R.drawable.menu_data, true);
} else if (position == chatRow) {
textCell.setTextAndIcon(LocaleController.getString("ChatSettings", R.string.ChatSettings), R.drawable.menu_chats, true);
} else if (position == helpRow) {
textCell.setTextAndIcon(LocaleController.getString("SettingsHelp", R.string.SettingsHelp), R.drawable.menu_help, false);
2014-11-11 23:16:17 +01:00
}
2016-10-11 13:57:01 +02:00
break;
2013-10-25 17:19:00 +02:00
}
2016-10-11 13:57:01 +02:00
case 4: {
if (position == settingsSectionRow2) {
((HeaderCell) holder.itemView).setText(LocaleController.getString("SETTINGS", R.string.SETTINGS));
} else if (position == numberSectionRow) {
2019-01-23 18:03:33 +01:00
((HeaderCell) holder.itemView).setText(LocaleController.getString("Account", R.string.Account));
2016-10-11 13:57:01 +02:00
}
break;
2013-10-25 17:19:00 +02:00
}
2016-10-11 13:57:01 +02:00
case 6: {
2019-01-23 18:03:33 +01:00
TextDetailCell textCell = (TextDetailCell) holder.itemView;
2016-10-11 13:57:01 +02:00
2017-03-31 01:58:05 +02:00
if (position == numberRow) {
2018-07-30 04:07:02 +02:00
TLRPC.User user = UserConfig.getInstance(currentAccount).getCurrentUser();
2016-10-11 13:57:01 +02:00
String value;
if (user != null && user.phone != null && user.phone.length() != 0) {
value = PhoneFormat.getInstance().format("+" + user.phone);
} else {
value = LocaleController.getString("NumberUnknown", R.string.NumberUnknown);
}
2018-08-27 10:33:11 +02:00
textCell.setTextAndValue(value, LocaleController.getString("TapToChangePhone", R.string.TapToChangePhone), true);
2016-10-11 13:57:01 +02:00
} else if (position == usernameRow) {
2018-07-30 04:07:02 +02:00
TLRPC.User user = UserConfig.getInstance(currentAccount).getCurrentUser();
2016-10-11 13:57:01 +02:00
String value;
if (user != null && !TextUtils.isEmpty(user.username)) {
2016-10-11 13:57:01 +02:00
value = "@" + user.username;
} else {
value = LocaleController.getString("UsernameEmpty", R.string.UsernameEmpty);
}
textCell.setTextAndValue(value, LocaleController.getString("Username", R.string.Username), true);
} else if (position == bioRow) {
String value;
2019-01-23 18:03:33 +01:00
if (userInfo == null || !TextUtils.isEmpty(userInfo.about)) {
value = userInfo == null ? LocaleController.getString("Loading", R.string.Loading) : userInfo.about;
textCell.setTextWithEmojiAndValue(value, LocaleController.getString("UserBio", R.string.UserBio), false);
} else {
2019-01-23 18:03:33 +01:00
textCell.setTextAndValue(LocaleController.getString("UserBio", R.string.UserBio), LocaleController.getString("UserBioDetail", R.string.UserBioDetail), false);
}
2016-10-11 13:57:01 +02:00
}
break;
2013-10-25 17:19:00 +02:00
}
2016-10-11 13:57:01 +02:00
}
}
2017-03-31 01:58:05 +02:00
@Override
public boolean isEnabled(RecyclerView.ViewHolder holder) {
int position = holder.getAdapterPosition();
2019-01-23 18:03:33 +01:00
return position == notificationRow || position == numberRow || position == privacyRow ||
position == languageRow || position == usernameRow || position == bioRow ||
position == versionRow || position == dataRow || position == chatRow ||
position == helpRow;
2017-03-31 01:58:05 +02:00
}
2016-10-11 13:57:01 +02:00
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = null;
switch (viewType) {
case 0:
view = new EmptyCell(mContext);
2017-03-31 01:58:05 +02:00
view.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite));
2016-10-11 13:57:01 +02:00
break;
case 1:
view = new ShadowSectionCell(mContext);
break;
case 2:
2019-01-23 18:03:33 +01:00
view = new TextCell(mContext);
2017-03-31 01:58:05 +02:00
view.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite));
2016-10-11 13:57:01 +02:00
break;
case 4:
2019-01-23 18:03:33 +01:00
view = new HeaderCell(mContext, 23);
2017-03-31 01:58:05 +02:00
view.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite));
2016-10-11 13:57:01 +02:00
break;
case 5:
2019-01-23 18:03:33 +01:00
TextInfoPrivacyCell cell = new TextInfoPrivacyCell(mContext, 10);
cell.getTextView().setGravity(Gravity.CENTER_HORIZONTAL);
cell.getTextView().setTextColor(Theme.getColor(Theme.key_windowBackgroundWhiteGrayText3));
cell.getTextView().setMovementMethod(null);
cell.setBackgroundDrawable(Theme.getThemedDrawable(mContext, R.drawable.greydivider_bottom, Theme.key_windowBackgroundGrayShadow));
try {
PackageInfo pInfo = ApplicationLoader.applicationContext.getPackageManager().getPackageInfo(ApplicationLoader.applicationContext.getPackageName(), 0);
2016-03-16 13:26:32 +01:00
int code = pInfo.versionCode / 10;
String abi = "";
switch (pInfo.versionCode % 10) {
case 1:
2017-03-31 01:58:05 +02:00
case 3:
2016-03-16 13:26:32 +01:00
abi = "arm-v7a";
break;
case 2:
2017-03-31 01:58:05 +02:00
case 4:
2016-03-16 13:26:32 +01:00
abi = "x86";
break;
2017-03-31 01:58:05 +02:00
case 5:
2018-07-30 04:07:02 +02:00
case 7:
abi = "arm64-v8a";
break;
case 6:
case 8:
abi = "x86_64";
break;
case 0:
case 9:
abi = "universal " + Build.CPU_ABI + " " + Build.CPU_ABI2;
2016-03-16 13:26:32 +01:00
break;
}
2019-01-23 18:03:33 +01:00
cell.setText(LocaleController.formatString("TelegramVersion", R.string.TelegramVersion, String.format(Locale.US, "v%s (%d) %s", pInfo.versionName, code, abi)));
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
2019-01-23 18:03:33 +01:00
cell.getTextView().setPadding(0, AndroidUtilities.dp(14), 0, AndroidUtilities.dp(14));
view = cell;
2016-10-11 13:57:01 +02:00
break;
case 6:
2019-01-23 18:03:33 +01:00
view = new TextDetailCell(mContext);
2017-03-31 01:58:05 +02:00
view.setBackgroundColor(Theme.getColor(Theme.key_windowBackgroundWhite));
2016-10-11 13:57:01 +02:00
break;
2013-10-25 17:19:00 +02:00
}
2016-10-11 13:57:01 +02:00
view.setLayoutParams(new RecyclerView.LayoutParams(RecyclerView.LayoutParams.MATCH_PARENT, RecyclerView.LayoutParams.WRAP_CONTENT));
2017-03-31 01:58:05 +02:00
return new RecyclerListView.Holder(view);
2013-10-25 17:19:00 +02:00
}
@Override
2016-10-11 13:57:01 +02:00
public int getItemViewType(int position) {
2019-01-23 18:03:33 +01:00
if (position == overscrollRow) {
2013-10-25 17:19:00 +02:00
return 0;
2019-01-23 18:03:33 +01:00
} else if (position == settingsSectionRow) {
2013-10-25 17:19:00 +02:00
return 1;
2019-01-23 18:03:33 +01:00
} else if (position == notificationRow || position == privacyRow || position == languageRow ||
position == dataRow || position == chatRow || position == helpRow) {
2013-10-25 17:19:00 +02:00
return 2;
2016-10-11 13:57:01 +02:00
} else if (position == versionRow) {
2014-11-11 23:16:17 +01:00
return 5;
} else if (position == numberRow || position == usernameRow || position == bioRow) {
return 6;
2019-01-23 18:03:33 +01:00
} else if (position == settingsSectionRow2 || position == numberSectionRow) {
2014-11-11 23:16:17 +01:00
return 4;
2013-10-25 17:19:00 +02:00
} else {
return 2;
}
}
}
2017-03-31 01:58:05 +02:00
@Override
public ThemeDescription[] getThemeDescriptions() {
return new ThemeDescription[]{
2019-01-23 18:03:33 +01:00
new ThemeDescription(listView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{EmptyCell.class, HeaderCell.class, TextDetailCell.class, TextCell.class}, null, null, null, Theme.key_windowBackgroundWhite),
2017-03-31 01:58:05 +02:00
new ThemeDescription(fragmentView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundGray),
new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_avatar_backgroundActionBarBlue),
new ThemeDescription(listView, ThemeDescription.FLAG_LISTGLOWCOLOR, null, null, null, null, Theme.key_avatar_backgroundActionBarBlue),
new ThemeDescription(extraHeightView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_avatar_backgroundActionBarBlue),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_avatar_actionBarIconBlue),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_TITLECOLOR, null, null, null, null, Theme.key_actionBarDefaultTitle),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SELECTORCOLOR, null, null, null, null, Theme.key_avatar_actionBarSelectorBlue),
new ThemeDescription(nameTextView, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_profile_title),
new ThemeDescription(onlineTextView, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_avatar_subtitleInProfileBlue),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUBACKGROUND, null, null, null, null, Theme.key_actionBarDefaultSubmenuBackground),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SUBMENUITEM, null, null, null, null, Theme.key_actionBarDefaultSubmenuItem),
new ThemeDescription(listView, ThemeDescription.FLAG_SELECTOR, null, null, null, null, Theme.key_listSelector),
new ThemeDescription(listView, 0, new Class[]{View.class}, Theme.dividerPaint, null, null, Theme.key_divider),
new ThemeDescription(listView, ThemeDescription.FLAG_BACKGROUNDFILTER, new Class[]{ShadowSectionCell.class}, null, null, null, Theme.key_windowBackgroundGrayShadow),
2019-01-23 18:03:33 +01:00
new ThemeDescription(listView, 0, new Class[]{TextCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText),
new ThemeDescription(listView, 0, new Class[]{TextCell.class}, new String[]{"valueTextView"}, null, null, null, Theme.key_windowBackgroundWhiteValueText),
new ThemeDescription(listView, 0, new Class[]{TextCell.class}, new String[]{"imageView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayIcon),
2017-03-31 01:58:05 +02:00
new ThemeDescription(listView, 0, new Class[]{HeaderCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlueHeader),
2019-01-23 18:03:33 +01:00
new ThemeDescription(listView, 0, new Class[]{TextDetailCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText),
new ThemeDescription(listView, 0, new Class[]{TextDetailCell.class}, new String[]{"valueTextView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText2),
2017-03-31 01:58:05 +02:00
2019-01-23 18:03:33 +01:00
new ThemeDescription(listView, ThemeDescription.FLAG_BACKGROUNDFILTER, new Class[]{TextInfoPrivacyCell.class}, null, null, null, Theme.key_windowBackgroundGrayShadow),
new ThemeDescription(listView, 0, new Class[]{TextInfoPrivacyCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText3),
2017-03-31 01:58:05 +02:00
2019-01-23 18:03:33 +01:00
new ThemeDescription(avatarImage, 0, null, null, new Drawable[]{Theme.avatar_broadcastDrawable, Theme.avatar_savedDrawable}, null, Theme.key_avatar_text),
2017-03-31 01:58:05 +02:00
new ThemeDescription(avatarImage, 0, null, null, new Drawable[]{avatarDrawable}, null, Theme.key_avatar_backgroundInProfileBlue),
new ThemeDescription(writeButton, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_profile_actionIcon),
new ThemeDescription(writeButton, ThemeDescription.FLAG_BACKGROUNDFILTER, null, null, null, null, Theme.key_profile_actionBackground),
new ThemeDescription(writeButton, ThemeDescription.FLAG_BACKGROUNDFILTER | ThemeDescription.FLAG_DRAWABLESELECTEDSTATE, null, null, null, null, Theme.key_profile_actionPressedBackground),
};
}
2013-10-25 17:19:00 +02:00
}