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

1748 lines
98 KiB
Java
Raw Normal View History

2013-10-25 17:19:00 +02:00
/*
2015-10-29 18:10:07 +01:00
* This is the source code of Telegram for Android v. 3.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).
*
2017-03-31 01:58:05 +02:00
* Copyright Nikolai Kudashov, 2013-2017.
2013-10-25 17:19:00 +02:00
*/
package org.telegram.ui;
2015-10-29 18:10:07 +01:00
import android.Manifest;
2017-12-08 18:35:59 +01:00
import android.animation.Animator;
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;
2015-10-29 18:10:07 +01:00
import android.annotation.TargetApi;
import android.app.Activity;
import android.app.Dialog;
2015-04-09 20:00:14 +02:00
import android.content.Context;
2013-10-25 17:19:00 +02:00
import android.content.DialogInterface;
2015-10-29 18:10:07 +01:00
import android.content.pm.PackageManager;
import android.content.res.Configuration;
2015-02-01 19:51:02 +01:00
import android.graphics.Outline;
2017-03-31 01:58:05 +02:00
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
import android.graphics.drawable.Drawable;
2014-10-31 20:02:29 +01:00
import android.os.Build;
2013-10-25 17:19:00 +02:00
import android.os.Bundle;
2017-12-08 18:35:59 +01:00
import android.text.TextUtils;
import android.view.Gravity;
2013-10-25 17:19:00 +02:00
import android.view.View;
2015-02-01 19:51:02 +01:00
import android.view.ViewOutlineProvider;
import android.view.ViewTreeObserver;
import android.view.animation.AccelerateDecelerateInterpolator;
2017-12-08 18:35:59 +01:00
import android.view.animation.DecelerateInterpolator;
import android.widget.EditText;
import android.widget.ImageView;
2013-10-25 17:19:00 +02:00
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.AndroidUtilities;
2016-03-06 02:49:31 +01:00
import org.telegram.messenger.BuildVars;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.ChatObject;
import org.telegram.messenger.DialogObject;
2015-10-29 18:10:07 +01:00
import org.telegram.messenger.ImageLoader;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.LocaleController;
import org.telegram.messenger.MessageObject;
import org.telegram.messenger.UserObject;
2016-05-25 23:49:47 +02:00
import org.telegram.messenger.query.SearchQuery;
2016-10-11 13:57:01 +02:00
import org.telegram.messenger.query.StickersQuery;
2015-09-24 22:52:02 +02:00
import org.telegram.messenger.support.widget.LinearLayoutManager;
import org.telegram.messenger.support.widget.RecyclerView;
2014-11-21 11:59:05 +01:00
import org.telegram.messenger.FileLog;
2017-12-08 18:35:59 +01:00
import org.telegram.tgnet.TLObject;
2015-09-24 22:52:02 +02:00
import org.telegram.tgnet.TLRPC;
import org.telegram.messenger.ContactsController;
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;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.ActionBar.AlertDialog;
2015-05-21 23:27:27 +02:00
import org.telegram.ui.ActionBar.BottomSheet;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.ActionBar.ThemeDescription;
2014-11-13 21:10:14 +01:00
import org.telegram.ui.Adapters.DialogsAdapter;
import org.telegram.ui.Adapters.DialogsSearchAdapter;
2017-12-08 18:35:59 +01:00
import org.telegram.ui.Cells.DialogsEmptyCell;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Cells.DividerCell;
import org.telegram.ui.Cells.DrawerActionCell;
import org.telegram.ui.Cells.DrawerProfileCell;
import org.telegram.ui.Cells.GraySectionCell;
import org.telegram.ui.Cells.HashtagSearchCell;
2016-05-25 23:49:47 +02:00
import org.telegram.ui.Cells.HintDialogCell;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Cells.LoadingCell;
2015-08-13 11:23:31 +02:00
import org.telegram.ui.Cells.ProfileSearchCell;
2014-11-10 12:05:22 +01:00
import org.telegram.ui.Cells.UserCell;
import org.telegram.ui.Cells.DialogCell;
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;
import org.telegram.ui.ActionBar.BaseFragment;
import org.telegram.ui.ActionBar.MenuDrawable;
2017-12-08 18:35:59 +01:00
import org.telegram.ui.Components.ChatActivityEnterView;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Components.CombinedDrawable;
import org.telegram.ui.Components.FragmentContextView;
2015-05-21 23:27:27 +02:00
import org.telegram.ui.Components.EmptyTextProgressView;
2017-12-08 18:35:59 +01:00
import org.telegram.ui.Components.JoinGroupAlert;
2015-05-21 23:27:27 +02:00
import org.telegram.ui.Components.LayoutHelper;
2017-03-31 01:58:05 +02:00
import org.telegram.ui.Components.RadialProgressView;
2015-05-21 23:27:27 +02:00
import org.telegram.ui.Components.RecyclerListView;
2016-04-22 15:49:00 +02:00
import org.telegram.ui.ActionBar.Theme;
2017-12-08 18:35:59 +01:00
import org.telegram.ui.Components.SizeNotifierFrameLayout;
import org.telegram.ui.Components.StickersAlert;
2013-10-25 17:19:00 +02:00
import java.util.ArrayList;
2015-07-22 20:56:37 +02:00
public class DialogsActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate {
2015-05-21 23:27:27 +02:00
private RecyclerListView listView;
private LinearLayoutManager layoutManager;
2014-11-13 21:10:14 +01:00
private DialogsAdapter dialogsAdapter;
private DialogsSearchAdapter dialogsSearchAdapter;
2015-05-21 23:27:27 +02:00
private EmptyTextProgressView searchEmptyView;
2017-03-31 01:58:05 +02:00
private RadialProgressView progressView;
private ActionBarMenuItem passcodeItem;
private ImageView floatingButton;
2017-03-31 01:58:05 +02:00
private RecyclerView sideMenu;
private FragmentContextView fragmentContextView;
2017-12-08 18:35:59 +01:00
private FragmentContextView fragmentLocationContextView;
private ChatActivityEnterView commentView;
2015-05-21 23:27:27 +02:00
2015-10-29 18:10:07 +01:00
private AlertDialog permissionDialog;
private int prevPosition;
private int prevTop;
private boolean scrollUpdated;
private boolean floatingHidden;
private final AccelerateDecelerateInterpolator floatingInterpolator = new AccelerateDecelerateInterpolator();
2014-10-31 20:02:29 +01:00
2015-10-29 18:10:07 +01:00
private boolean checkPermission = true;
private String selectAlertString;
2014-10-04 17:56:09 +02:00
private String selectAlertStringGroup;
2015-06-29 19:12:11 +02:00
private String addToGroupAlertString;
private int dialogsType;
2013-10-25 17:19:00 +02:00
2016-10-11 13:57:01 +02:00
public static boolean dialogsLoaded;
2015-05-21 23:27:27 +02:00
private boolean searching;
private boolean searchWas;
private boolean onlySelect;
2013-10-25 17:19:00 +02:00
private long selectedDialog;
private String searchString;
2015-05-21 23:27:27 +02:00
private long openedDialogId;
2016-10-11 13:57:01 +02:00
private boolean cantSendToChannels;
2013-10-25 17:19:00 +02:00
2016-04-22 15:49:00 +02:00
private DialogsActivityDelegate delegate;
2013-10-25 17:19:00 +02:00
2016-04-22 15:49:00 +02:00
public interface DialogsActivityDelegate {
2017-12-08 18:35:59 +01:00
void didSelectDialogs(DialogsActivity fragment, ArrayList<Long> dids, CharSequence message, boolean param);
2013-10-25 17:19:00 +02:00
}
2015-07-22 20:56:37 +02:00
public DialogsActivity(Bundle args) {
super(args);
}
2013-10-25 17:19:00 +02:00
@Override
public boolean onFragmentCreate() {
super.onFragmentCreate();
2015-02-01 19:51:02 +01:00
2013-10-25 17:19:00 +02:00
if (getArguments() != null) {
onlySelect = arguments.getBoolean("onlySelect", false);
2016-10-11 13:57:01 +02:00
cantSendToChannels = arguments.getBoolean("cantSendToChannels", false);
2015-06-29 19:12:11 +02:00
dialogsType = arguments.getInt("dialogsType", 0);
selectAlertString = arguments.getString("selectAlertString");
2014-10-04 17:56:09 +02:00
selectAlertStringGroup = arguments.getString("selectAlertStringGroup");
2015-06-29 19:12:11 +02:00
addToGroupAlertString = arguments.getString("addToGroupAlertString");
2013-10-25 17:19:00 +02:00
}
if (searchString == null) {
NotificationCenter.getInstance().addObserver(this, NotificationCenter.dialogsNeedReload);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.emojiDidLoaded);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.updateInterfaces);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.encryptedChatUpdated);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.contactsDidLoaded);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.appDidLogout);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.openedChatChanged);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.notificationsSettingsUpdated);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messageReceivedByAck);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messageReceivedByServer);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.messageSendError);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.didSetPasscode);
2015-09-24 22:52:02 +02:00
NotificationCenter.getInstance().addObserver(this, NotificationCenter.needReloadRecentDialogsSearch);
2016-03-16 13:26:32 +01:00
NotificationCenter.getInstance().addObserver(this, NotificationCenter.didLoadedReplyMessages);
2016-05-25 23:49:47 +02:00
NotificationCenter.getInstance().addObserver(this, NotificationCenter.reloadHints);
}
2013-12-20 20:25:49 +01:00
if (!dialogsLoaded) {
2015-11-26 22:04:02 +01:00
MessagesController.getInstance().loadDialogs(0, 100, true);
2017-12-08 18:35:59 +01:00
MessagesController.getInstance().loadHintDialogs();
2015-01-02 23:15:07 +01:00
ContactsController.getInstance().checkInviteText();
2017-03-31 01:58:05 +02:00
MessagesController.getInstance().loadPinnedDialogs(0, null);
2017-12-08 18:35:59 +01:00
StickersQuery.loadRecents(StickersQuery.TYPE_FAVE, false, true, false);
2016-10-11 13:57:01 +02:00
StickersQuery.checkFeaturedStickers();
2013-12-20 20:25:49 +01:00
dialogsLoaded = true;
}
2013-10-25 17:19:00 +02:00
return true;
}
@Override
public void onFragmentDestroy() {
super.onFragmentDestroy();
if (searchString == null) {
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.dialogsNeedReload);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.emojiDidLoaded);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.updateInterfaces);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.encryptedChatUpdated);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.contactsDidLoaded);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.appDidLogout);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.openedChatChanged);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.notificationsSettingsUpdated);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messageReceivedByAck);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messageReceivedByServer);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.messageSendError);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.didSetPasscode);
2015-09-24 22:52:02 +02:00
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.needReloadRecentDialogsSearch);
2016-03-16 13:26:32 +01:00
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.didLoadedReplyMessages);
2016-05-25 23:49:47 +02:00
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.reloadHints);
}
2017-12-08 18:35:59 +01:00
if (commentView != null) {
commentView.onDestroy();
}
2013-10-25 17:19:00 +02:00
delegate = null;
}
@Override
2015-07-22 20:56:37 +02:00
public View createView(final Context context) {
2015-04-09 20:00:14 +02:00
searching = false;
searchWas = false;
2016-05-25 23:49:47 +02:00
AndroidUtilities.runOnUIThread(new Runnable() {
@Override
public void run() {
2017-03-31 01:58:05 +02:00
Theme.createChatResources(context, false);
2016-05-25 23:49:47 +02:00
}
});
2015-04-09 20:00:14 +02:00
ActionBarMenu menu = actionBar.createMenu();
if (!onlySelect && searchString == null) {
2015-05-21 23:27:27 +02:00
passcodeItem = menu.addItem(1, R.drawable.lock_close);
2015-04-09 20:00:14 +02:00
updatePasscodeButton();
}
2015-11-26 22:04:02 +01:00
final ActionBarMenuItem item = menu.addItem(0, R.drawable.ic_ab_search).setIsSearchField(true).setActionBarMenuItemSearchListener(new ActionBarMenuItem.ActionBarMenuItemSearchListener() {
2015-04-09 20:00:14 +02:00
@Override
public void onSearchExpand() {
searching = true;
2015-05-21 23:27:27 +02:00
if (listView != null) {
if (searchString != null) {
2015-05-21 23:27:27 +02:00
listView.setEmptyView(searchEmptyView);
2015-06-29 19:12:11 +02:00
progressView.setVisibility(View.GONE);
}
2015-04-09 20:00:14 +02:00
if (!onlySelect) {
floatingButton.setVisibility(View.GONE);
}
}
2015-04-09 20:00:14 +02:00
updatePasscodeButton();
}
2015-04-09 20:00:14 +02:00
@Override
2015-06-29 19:12:11 +02:00
public boolean canCollapseSearch() {
2015-04-09 20:00:14 +02:00
if (searchString != null) {
finishFragment();
return false;
}
2015-06-29 19:12:11 +02:00
return true;
}
@Override
public void onSearchCollapse() {
2015-04-09 20:00:14 +02:00
searching = false;
searchWas = false;
2015-05-21 23:27:27 +02:00
if (listView != null) {
2015-04-09 20:00:14 +02:00
if (MessagesController.getInstance().loadingDialogs && MessagesController.getInstance().dialogs.isEmpty()) {
2015-05-21 23:27:27 +02:00
listView.setEmptyView(progressView);
2015-04-09 20:00:14 +02:00
} else {
2015-06-29 19:12:11 +02:00
progressView.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
listView.setEmptyView(null);
2014-10-31 20:02:29 +01:00
}
2017-12-08 18:35:59 +01:00
searchEmptyView.setVisibility(View.GONE);
2015-04-09 20:00:14 +02:00
if (!onlySelect) {
floatingButton.setVisibility(View.VISIBLE);
floatingHidden = true;
floatingButton.setTranslationY(AndroidUtilities.dp(100));
2015-04-09 20:00:14 +02:00
hideFloatingButton(false);
}
2015-05-21 23:27:27 +02:00
if (listView.getAdapter() != dialogsAdapter) {
listView.setAdapter(dialogsAdapter);
2015-04-09 20:00:14 +02:00
dialogsAdapter.notifyDataSetChanged();
}
}
2015-04-09 20:00:14 +02:00
if (dialogsSearchAdapter != null) {
2015-08-13 11:23:31 +02:00
dialogsSearchAdapter.searchDialogs(null);
}
2015-04-09 20:00:14 +02:00
updatePasscodeButton();
}
2015-04-09 20:00:14 +02:00
@Override
public void onTextChanged(EditText editText) {
String text = editText.getText().toString();
2015-08-13 11:23:31 +02:00
if (text.length() != 0 || dialogsSearchAdapter != null && dialogsSearchAdapter.hasRecentRearch()) {
2015-04-09 20:00:14 +02:00
searchWas = true;
2015-11-26 22:04:02 +01:00
if (dialogsSearchAdapter != null && listView.getAdapter() != dialogsSearchAdapter) {
2015-05-21 23:27:27 +02:00
listView.setAdapter(dialogsSearchAdapter);
2015-04-09 20:00:14 +02:00
dialogsSearchAdapter.notifyDataSetChanged();
}
2015-05-21 23:27:27 +02:00
if (searchEmptyView != null && listView.getEmptyView() != searchEmptyView) {
2015-06-29 19:12:11 +02:00
progressView.setVisibility(View.GONE);
2015-05-21 23:27:27 +02:00
searchEmptyView.showTextView();
listView.setEmptyView(searchEmptyView);
}
}
2015-04-09 20:00:14 +02:00
if (dialogsSearchAdapter != null) {
2015-08-13 11:23:31 +02:00
dialogsSearchAdapter.searchDialogs(text);
}
}
2015-04-09 20:00:14 +02:00
});
item.getSearchField().setHint(LocaleController.getString("Search", R.string.Search));
if (onlySelect) {
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
2017-12-08 18:35:59 +01:00
if (dialogsType == 3 && selectAlertString == null) {
actionBar.setTitle(LocaleController.getString("ForwardTo", R.string.ForwardTo));
} else {
actionBar.setTitle(LocaleController.getString("SelectChat", R.string.SelectChat));
}
2015-04-09 20:00:14 +02:00
} else {
if (searchString != null) {
2015-04-09 20:00:14 +02:00
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
} else {
actionBar.setBackButtonDrawable(new MenuDrawable());
2014-11-19 11:32:27 +01:00
}
2016-03-06 02:49:31 +01:00
if (BuildVars.DEBUG_VERSION) {
actionBar.setTitle(LocaleController.getString("AppNameBeta", R.string.AppNameBeta));
} else {
actionBar.setTitle(LocaleController.getString("AppName", R.string.AppName));
}
2015-04-09 20:00:14 +02:00
}
actionBar.setAllowOverlayTitle(true);
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
@Override
public void onItemClick(int id) {
if (id == -1) {
if (onlySelect) {
finishFragment();
} else if (parentLayout != null) {
parentLayout.getDrawerLayoutContainer().openDrawer(false);
2014-10-31 20:02:29 +01:00
}
2015-05-21 23:27:27 +02:00
} else if (id == 1) {
2015-04-09 20:00:14 +02:00
UserConfig.appLocked = !UserConfig.appLocked;
UserConfig.saveConfig(false);
updatePasscodeButton();
2014-10-31 20:02:29 +01:00
}
}
2015-04-09 20:00:14 +02:00
});
2013-10-25 17:19:00 +02:00
2017-03-31 01:58:05 +02:00
if (sideMenu != null) {
sideMenu.setBackgroundColor(Theme.getColor(Theme.key_chats_menuBackground));
sideMenu.setGlowColor(Theme.getColor(Theme.key_chats_menuBackground));
sideMenu.getAdapter().notifyDataSetChanged();
}
2015-04-09 20:00:14 +02:00
2017-12-08 18:35:59 +01:00
SizeNotifierFrameLayout contentView = new SizeNotifierFrameLayout(context) {
int inputFieldHeight = 0;
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int widthSize = MeasureSpec.getSize(widthMeasureSpec);
int heightSize = MeasureSpec.getSize(heightMeasureSpec);
setMeasuredDimension(widthSize, heightSize);
heightSize -= getPaddingTop();
measureChildWithMargins(actionBar, widthMeasureSpec, 0, heightMeasureSpec, 0);
int keyboardSize = getKeyboardHeight();
int childCount = getChildCount();
if (commentView != null) {
measureChildWithMargins(commentView, widthMeasureSpec, 0, heightMeasureSpec, 0);
Object tag = commentView.getTag();
if (tag != null && tag.equals(2)) {
if (keyboardSize <= AndroidUtilities.dp(20) && !AndroidUtilities.isInMultiwindow) {
heightSize -= commentView.getEmojiPadding();
}
inputFieldHeight = commentView.getMeasuredHeight();
} else {
inputFieldHeight = 0;
}
}
for (int i = 0; i < childCount; i++) {
View child = getChildAt(i);
if (child == null || child.getVisibility() == GONE || child == commentView || child == actionBar) {
continue;
}
if (child == listView || child == progressView || child == searchEmptyView) {
int contentWidthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
int contentHeightSpec = MeasureSpec.makeMeasureSpec(Math.max(AndroidUtilities.dp(10), heightSize - inputFieldHeight + AndroidUtilities.dp(2)), MeasureSpec.EXACTLY);
child.measure(contentWidthSpec, contentHeightSpec);
} else if (commentView != null && commentView.isPopupView(child)) {
if (AndroidUtilities.isInMultiwindow) {
if (AndroidUtilities.isTablet()) {
child.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(Math.min(AndroidUtilities.dp(320), heightSize - inputFieldHeight - AndroidUtilities.statusBarHeight + getPaddingTop()), MeasureSpec.EXACTLY));
} else {
child.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(heightSize - inputFieldHeight - AndroidUtilities.statusBarHeight + getPaddingTop(), MeasureSpec.EXACTLY));
}
} else {
child.measure(MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(child.getLayoutParams().height, MeasureSpec.EXACTLY));
}
} else {
measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
}
}
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
final int count = getChildCount();
int paddingBottom;
Object tag = commentView != null ? commentView.getTag() : null;
if (tag != null && tag.equals(2)) {
paddingBottom = getKeyboardHeight() <= AndroidUtilities.dp(20) && !AndroidUtilities.isInMultiwindow ? commentView.getEmojiPadding() : 0;
} else {
paddingBottom = 0;
}
setBottomClip(paddingBottom);
for (int i = 0; i < count; i++) {
final View child = getChildAt(i);
if (child.getVisibility() == GONE) {
continue;
}
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:
childLeft = r - width - lp.rightMargin;
break;
case Gravity.LEFT:
default:
childLeft = lp.leftMargin;
}
switch (verticalGravity) {
case Gravity.TOP:
childTop = lp.topMargin + getPaddingTop();
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 (commentView != null && commentView.isPopupView(child)) {
if (AndroidUtilities.isInMultiwindow) {
childTop = commentView.getTop() - child.getMeasuredHeight() + AndroidUtilities.dp(1);
} else {
childTop = commentView.getBottom();
}
}
child.layout(childLeft, childTop, childLeft + width, childTop + height);
}
notifyHeightChanged();
}
};
fragmentView = contentView;
2015-05-21 23:27:27 +02:00
listView = new RecyclerListView(context);
listView.setVerticalScrollBarEnabled(true);
listView.setItemAnimator(null);
listView.setInstantClick(true);
listView.setLayoutAnimation(null);
listView.setTag(4);
2015-05-21 23:27:27 +02:00
layoutManager = new LinearLayoutManager(context) {
2015-04-09 20:00:14 +02:00
@Override
2015-05-21 23:27:27 +02:00
public boolean supportsPredictiveItemAnimations() {
return false;
2015-04-09 20:00:14 +02:00
}
2015-05-21 23:27:27 +02:00
};
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
listView.setLayoutManager(layoutManager);
2017-03-31 01:58:05 +02:00
listView.setVerticalScrollbarPosition(LocaleController.isRTL ? RecyclerListView.SCROLLBAR_POSITION_LEFT : RecyclerListView.SCROLLBAR_POSITION_RIGHT);
2017-12-08 18:35:59 +01:00
contentView.addView(listView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT));
2015-05-21 23:27:27 +02:00
listView.setOnItemClickListener(new RecyclerListView.OnItemClickListener() {
2015-04-09 20:00:14 +02:00
@Override
2015-05-21 23:27:27 +02:00
public void onItemClick(View view, int position) {
2017-12-08 18:35:59 +01:00
if (listView == null || listView.getAdapter() == null || getParentActivity() == null) {
2015-04-09 20:00:14 +02:00
return;
}
long dialog_id = 0;
int message_id = 0;
2015-05-21 23:27:27 +02:00
RecyclerView.Adapter adapter = listView.getAdapter();
2015-04-09 20:00:14 +02:00
if (adapter == dialogsAdapter) {
2017-12-08 18:35:59 +01:00
TLObject object = dialogsAdapter.getItem(position);
if (object instanceof TLRPC.TL_dialog) {
dialog_id = ((TLRPC.TL_dialog) object).id;
} else if (object instanceof TLRPC.TL_recentMeUrlChat) {
dialog_id = -((TLRPC.TL_recentMeUrlChat) object).chat_id;
} else if (object instanceof TLRPC.TL_recentMeUrlUser) {
dialog_id = ((TLRPC.TL_recentMeUrlUser) object).user_id;
} else if (object instanceof TLRPC.TL_recentMeUrlChatInvite) {
TLRPC.TL_recentMeUrlChatInvite chatInvite = (TLRPC.TL_recentMeUrlChatInvite) object;
TLRPC.ChatInvite invite = chatInvite.chat_invite;
if (invite.chat == null && (!invite.channel || invite.megagroup) || invite.chat != null && (!ChatObject.isChannel(invite.chat) || invite.chat.megagroup)) {
String hash = chatInvite.url;
int index = hash.indexOf('/');
if (index > 0) {
hash = hash.substring(index + 1);
}
showDialog(new JoinGroupAlert(getParentActivity(), invite, hash, DialogsActivity.this));
return;
} else {
if (invite.chat != null) {
dialog_id = -invite.chat.id;
} else {
return;
}
}
} else if (object instanceof TLRPC.TL_recentMeUrlStickerSet) {
TLRPC.StickerSet stickerSet = ((TLRPC.TL_recentMeUrlStickerSet) object).set.set;
TLRPC.TL_inputStickerSetID set = new TLRPC.TL_inputStickerSetID();
set.id = stickerSet.id;
set.access_hash = stickerSet.access_hash;
showDialog(new StickersAlert(getParentActivity(), DialogsActivity.this, set, null, null));
return;
} else if (object instanceof TLRPC.TL_recentMeUrlUnknown) {
return;
} else {
2014-10-21 22:35:16 +02:00
return;
}
2015-04-09 20:00:14 +02:00
} else if (adapter == dialogsSearchAdapter) {
2015-05-21 23:27:27 +02:00
Object obj = dialogsSearchAdapter.getItem(position);
2015-04-09 20:00:14 +02:00
if (obj instanceof TLRPC.User) {
dialog_id = ((TLRPC.User) obj).id;
2015-05-21 23:27:27 +02:00
if (dialogsSearchAdapter.isGlobalSearch(position)) {
2015-04-09 20:00:14 +02:00
ArrayList<TLRPC.User> users = new ArrayList<>();
users.add((TLRPC.User) obj);
MessagesController.getInstance().putUsers(users, false);
MessagesStorage.getInstance().putUsersAndChats(users, null, false, true);
2013-10-25 17:19:00 +02:00
}
2015-12-09 19:27:52 +01:00
if (!onlySelect) {
dialogsSearchAdapter.putRecentSearch(dialog_id, (TLRPC.User) obj);
}
2015-04-09 20:00:14 +02:00
} else if (obj instanceof TLRPC.Chat) {
2015-09-24 22:52:02 +02:00
if (dialogsSearchAdapter.isGlobalSearch(position)) {
ArrayList<TLRPC.Chat> chats = new ArrayList<>();
chats.add((TLRPC.Chat) obj);
MessagesController.getInstance().putChats(chats, false);
MessagesStorage.getInstance().putUsersAndChats(null, chats, false, true);
}
2015-04-09 20:00:14 +02:00
if (((TLRPC.Chat) obj).id > 0) {
dialog_id = -((TLRPC.Chat) obj).id;
} else {
dialog_id = AndroidUtilities.makeBroadcastId(((TLRPC.Chat) obj).id);
2013-10-25 17:19:00 +02:00
}
2015-12-09 19:27:52 +01:00
if (!onlySelect) {
dialogsSearchAdapter.putRecentSearch(dialog_id, (TLRPC.Chat) obj);
}
2015-04-09 20:00:14 +02:00
} else if (obj instanceof TLRPC.EncryptedChat) {
dialog_id = ((long) ((TLRPC.EncryptedChat) obj).id) << 32;
2015-12-09 19:27:52 +01:00
if (!onlySelect) {
dialogsSearchAdapter.putRecentSearch(dialog_id, (TLRPC.EncryptedChat) obj);
}
2015-04-09 20:00:14 +02:00
} else if (obj instanceof MessageObject) {
MessageObject messageObject = (MessageObject) obj;
dialog_id = messageObject.getDialogId();
message_id = messageObject.getId();
dialogsSearchAdapter.addHashtagsFromMessage(dialogsSearchAdapter.getLastSearchString());
} else if (obj instanceof String) {
actionBar.openSearchField((String) obj);
2014-10-31 20:02:29 +01:00
}
2015-04-09 20:00:14 +02:00
}
2014-10-31 20:02:29 +01:00
2015-04-09 20:00:14 +02:00
if (dialog_id == 0) {
return;
}
2014-10-21 22:35:16 +02:00
2015-04-09 20:00:14 +02:00
if (onlySelect) {
2017-12-08 18:35:59 +01:00
if (dialogsAdapter.hasSelectedDialogs()) {
dialogsAdapter.addOrRemoveSelectedDialog(dialog_id, view);
updateSelectedCount();
} else {
didSelectResult(dialog_id, true, false);
}
2015-04-09 20:00:14 +02:00
} else {
Bundle args = new Bundle();
int lower_part = (int) dialog_id;
int high_id = (int) (dialog_id >> 32);
if (lower_part != 0) {
if (high_id == 1) {
args.putInt("chat_id", lower_part);
2014-11-24 15:14:40 +01:00
} else {
2015-04-09 20:00:14 +02:00
if (lower_part > 0) {
args.putInt("user_id", lower_part);
} else if (lower_part < 0) {
2015-11-26 22:04:02 +01:00
if (message_id != 0) {
TLRPC.Chat chat = MessagesController.getInstance().getChat(-lower_part);
if (chat != null && chat.migrated_to != null) {
args.putInt("migrated_to", lower_part);
lower_part = -chat.migrated_to.channel_id;
}
}
2015-04-09 20:00:14 +02:00
args.putInt("chat_id", -lower_part);
2014-11-24 15:14:40 +01:00
}
2014-10-31 20:02:29 +01:00
}
2015-04-09 20:00:14 +02:00
} else {
args.putInt("enc_id", high_id);
}
if (message_id != 0) {
args.putInt("message_id", message_id);
} else {
if (actionBar != null) {
actionBar.closeSearchField();
}
2015-04-09 20:00:14 +02:00
}
if (AndroidUtilities.isTablet()) {
2015-06-29 19:12:11 +02:00
if (openedDialogId == dialog_id && adapter != dialogsSearchAdapter) {
2015-04-09 20:00:14 +02:00
return;
}
if (dialogsAdapter != null) {
dialogsAdapter.setOpenedDialogId(openedDialogId = dialog_id);
updateVisibleRows(MessagesController.UPDATE_MASK_SELECT_DIALOG);
}
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
if (searchString != null) {
2016-03-16 13:26:32 +01:00
if (MessagesController.checkCanOpenChat(args, DialogsActivity.this)) {
NotificationCenter.getInstance().postNotificationName(NotificationCenter.closeChats);
presentFragment(new ChatActivity(args));
}
2015-04-09 20:00:14 +02:00
} else {
2016-03-16 13:26:32 +01:00
if (MessagesController.checkCanOpenChat(args, DialogsActivity.this)) {
presentFragment(new ChatActivity(args));
}
2015-04-09 20:00:14 +02:00
}
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
}
});
2015-05-21 23:27:27 +02:00
listView.setOnItemLongClickListener(new RecyclerListView.OnItemLongClickListener() {
2015-04-09 20:00:14 +02:00
@Override
2015-10-29 18:10:07 +01:00
public boolean onItemClick(View view, int position) {
2017-12-08 18:35:59 +01:00
if (getParentActivity() == null) {
return false;
}
RecyclerView.Adapter adapter = listView.getAdapter();
if (adapter == dialogsSearchAdapter) {
Object item = dialogsSearchAdapter.getItem(position);
if (item instanceof String || dialogsSearchAdapter.isRecentSearchDisplayed()) {
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
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(), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (dialogsSearchAdapter.isRecentSearchDisplayed()) {
dialogsSearchAdapter.clearRecentSearch();
} else {
dialogsSearchAdapter.clearRecentHashtags();
}
2015-03-26 18:34:47 +01:00
}
2017-12-08 18:35:59 +01:00
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showDialog(builder.create());
return true;
2015-04-09 20:00:14 +02:00
}
2015-10-29 18:10:07 +01:00
return false;
2015-04-09 20:00:14 +02:00
}
TLRPC.TL_dialog dialog;
ArrayList<TLRPC.TL_dialog> dialogs = getDialogsArray();
2015-06-29 19:12:11 +02:00
if (position < 0 || position >= dialogs.size()) {
2015-10-29 18:10:07 +01:00
return false;
2015-04-09 20:00:14 +02:00
}
2015-06-29 19:12:11 +02:00
dialog = dialogs.get(position);
2017-12-08 18:35:59 +01:00
if (onlySelect) {
if (dialogsType != 3 || selectAlertString != null) {
return false;
2015-11-26 22:04:02 +01:00
}
2017-12-08 18:35:59 +01:00
dialogsAdapter.addOrRemoveSelectedDialog(dialog.id, view);
updateSelectedCount();
} else {
selectedDialog = dialog.id;
final boolean pinned = dialog.pinned;
BottomSheet.Builder builder = new BottomSheet.Builder(getParentActivity());
int lower_id = (int) selectedDialog;
int high_id = (int) (selectedDialog >> 32);
if (DialogObject.isChannel(dialog)) {
final TLRPC.Chat chat = MessagesController.getInstance().getChat(-lower_id);
CharSequence items[];
int icons[] = new int[]{
dialog.pinned ? R.drawable.chats_unpin : R.drawable.chats_pin,
R.drawable.chats_clear,
R.drawable.chats_leave
};
if (chat != null && chat.megagroup) {
items = new CharSequence[]{
dialog.pinned || MessagesController.getInstance().canPinDialog(false) ? (dialog.pinned ? LocaleController.getString("UnpinFromTop", R.string.UnpinFromTop) : LocaleController.getString("PinToTop", R.string.PinToTop)) : null,
TextUtils.isEmpty(chat.username) ? LocaleController.getString("ClearHistory", R.string.ClearHistory) : LocaleController.getString("ClearHistoryCache", R.string.ClearHistoryCache),
LocaleController.getString("LeaveMegaMenu", R.string.LeaveMegaMenu)};
} else {
items = new CharSequence[]{
dialog.pinned || MessagesController.getInstance().canPinDialog(false) ? (dialog.pinned ? LocaleController.getString("UnpinFromTop", R.string.UnpinFromTop) : LocaleController.getString("PinToTop", R.string.PinToTop)) : null,
LocaleController.getString("ClearHistoryCache", R.string.ClearHistoryCache),
LocaleController.getString("LeaveChannelMenu", R.string.LeaveChannelMenu)};
}
builder.setItems(items, icons, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, final int which) {
if (which == 0) {
if (MessagesController.getInstance().pinDialog(selectedDialog, !pinned, null, 0) && !pinned) {
listView.smoothScrollToPosition(0);
2015-12-09 19:27:52 +01:00
}
2015-11-26 22:04:02 +01:00
} else {
2017-12-08 18:35:59 +01:00
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
if (which == 1) {
if (chat != null && chat.megagroup) {
if (TextUtils.isEmpty(chat.username)) {
builder.setMessage(LocaleController.getString("AreYouSureClearHistory", R.string.AreYouSureClearHistory));
} else {
builder.setMessage(LocaleController.getString("AreYouSureClearHistoryGroup", R.string.AreYouSureClearHistoryGroup));
}
2017-03-31 01:58:05 +02:00
} else {
2017-12-08 18:35:59 +01:00
builder.setMessage(LocaleController.getString("AreYouSureClearHistoryChannel", R.string.AreYouSureClearHistoryChannel));
2017-03-31 01:58:05 +02:00
}
2017-12-08 18:35:59 +01:00
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (chat != null && chat.megagroup && TextUtils.isEmpty(chat.username)) {
MessagesController.getInstance().deleteDialog(selectedDialog, 1);
} else {
MessagesController.getInstance().deleteDialog(selectedDialog, 2);
}
}
});
2015-12-09 19:27:52 +01:00
} else {
2017-12-08 18:35:59 +01:00
if (chat != null && chat.megagroup) {
builder.setMessage(LocaleController.getString("MegaLeaveAlert", R.string.MegaLeaveAlert));
2017-03-31 01:58:05 +02:00
} else {
2017-12-08 18:35:59 +01:00
builder.setMessage(LocaleController.getString("ChannelLeaveAlert", R.string.ChannelLeaveAlert));
2015-12-09 19:27:52 +01:00
}
2017-12-08 18:35:59 +01:00
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
MessagesController.getInstance().deleteUserFromChat((int) -selectedDialog, UserConfig.getCurrentUser(), null);
if (AndroidUtilities.isTablet()) {
NotificationCenter.getInstance().postNotificationName(NotificationCenter.closeChats, selectedDialog);
}
2017-03-31 01:58:05 +02:00
}
2017-12-08 18:35:59 +01:00
});
}
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showDialog(builder.create());
2017-03-31 01:58:05 +02:00
}
2015-12-09 19:27:52 +01:00
}
2017-12-08 18:35:59 +01:00
});
showDialog(builder.create());
} else {
final boolean isChat = lower_id < 0 && high_id != 1;
TLRPC.User user = null;
if (!isChat && lower_id > 0 && high_id != 1) {
user = MessagesController.getInstance().getUser(lower_id);
2015-09-24 22:52:02 +02:00
}
2017-12-08 18:35:59 +01:00
final boolean isBot = user != null && user.bot;
builder.setItems(new CharSequence[]{
dialog.pinned || MessagesController.getInstance().canPinDialog(lower_id == 0) ? (dialog.pinned ? LocaleController.getString("UnpinFromTop", R.string.UnpinFromTop) : LocaleController.getString("PinToTop", R.string.PinToTop)) : null,
LocaleController.getString("ClearHistory", R.string.ClearHistory),
isChat ? LocaleController.getString("DeleteChat", R.string.DeleteChat) : isBot ? LocaleController.getString("DeleteAndStop", R.string.DeleteAndStop) : LocaleController.getString("Delete", R.string.Delete)
}, new int[]{
dialog.pinned ? R.drawable.chats_unpin : R.drawable.chats_pin,
R.drawable.chats_clear,
isChat ? R.drawable.chats_leave : R.drawable.chats_delete
}, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, final int which) {
if (which == 0) {
if (MessagesController.getInstance().pinDialog(selectedDialog, !pinned, null, 0) && !pinned) {
listView.smoothScrollToPosition(0);
}
2015-04-09 20:00:14 +02:00
} else {
2017-12-08 18:35:59 +01:00
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
if (which == 1) {
builder.setMessage(LocaleController.getString("AreYouSureClearHistory", R.string.AreYouSureClearHistory));
2017-03-31 01:58:05 +02:00
} else {
2017-12-08 18:35:59 +01:00
if (isChat) {
builder.setMessage(LocaleController.getString("AreYouSureDeleteAndExit", R.string.AreYouSureDeleteAndExit));
} else {
builder.setMessage(LocaleController.getString("AreYouSureDeleteThisChat", R.string.AreYouSureDeleteThisChat));
}
2017-03-31 01:58:05 +02:00
}
2017-12-08 18:35:59 +01:00
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (which != 1) {
if (isChat) {
TLRPC.Chat currentChat = MessagesController.getInstance().getChat((int) -selectedDialog);
if (currentChat != null && ChatObject.isNotInChat(currentChat)) {
MessagesController.getInstance().deleteDialog(selectedDialog, 0);
} else {
MessagesController.getInstance().deleteUserFromChat((int) -selectedDialog, MessagesController.getInstance().getUser(UserConfig.getClientUserId()), null);
}
2017-03-31 01:58:05 +02:00
} else {
2017-12-08 18:35:59 +01:00
MessagesController.getInstance().deleteDialog(selectedDialog, 0);
}
if (isBot) {
MessagesController.getInstance().blockUser((int) selectedDialog);
}
if (AndroidUtilities.isTablet()) {
NotificationCenter.getInstance().postNotificationName(NotificationCenter.closeChats, selectedDialog);
2017-03-31 01:58:05 +02:00
}
2015-09-24 22:52:02 +02:00
} else {
2017-12-08 18:35:59 +01:00
MessagesController.getInstance().deleteDialog(selectedDialog, 1);
2017-03-31 01:58:05 +02:00
}
2015-09-24 22:52:02 +02:00
}
2017-12-08 18:35:59 +01:00
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showDialog(builder.create());
}
2017-03-31 01:58:05 +02:00
}
2017-12-08 18:35:59 +01:00
});
showDialog(builder.create());
}
2015-09-24 22:52:02 +02:00
}
2015-10-29 18:10:07 +01:00
return true;
2015-05-21 23:27:27 +02:00
}
});
searchEmptyView = new EmptyTextProgressView(context);
2015-06-29 19:12:11 +02:00
searchEmptyView.setVisibility(View.GONE);
2015-05-21 23:27:27 +02:00
searchEmptyView.setShowAtCenter(true);
searchEmptyView.setText(LocaleController.getString("NoResult", R.string.NoResult));
2017-12-08 18:35:59 +01:00
contentView.addView(searchEmptyView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT));
2017-03-31 01:58:05 +02:00
progressView = new RadialProgressView(context);
2015-06-29 19:12:11 +02:00
progressView.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
contentView.addView(progressView, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER));
2015-05-21 23:27:27 +02:00
floatingButton = new ImageView(context);
floatingButton.setVisibility(onlySelect ? View.GONE : View.VISIBLE);
floatingButton.setScaleType(ImageView.ScaleType.CENTER);
2017-03-31 01:58:05 +02:00
Drawable drawable = Theme.createSimpleSelectorCircleDrawable(AndroidUtilities.dp(56), Theme.getColor(Theme.key_chats_actionBackground), Theme.getColor(Theme.key_chats_actionPressedBackground));
if (Build.VERSION.SDK_INT < 21) {
Drawable shadowDrawable = context.getResources().getDrawable(R.drawable.floating_shadow).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;
}
floatingButton.setBackgroundDrawable(drawable);
floatingButton.setColorFilter(new PorterDuffColorFilter(Theme.getColor(Theme.key_chats_actionIcon), PorterDuff.Mode.MULTIPLY));
2015-05-21 23:27:27 +02:00
floatingButton.setImageResource(R.drawable.floating_pencil);
if (Build.VERSION.SDK_INT >= 21) {
StateListAnimator animator = new StateListAnimator();
animator.addState(new int[]{android.R.attr.state_pressed}, ObjectAnimator.ofFloat(floatingButton, "translationZ", AndroidUtilities.dp(2), AndroidUtilities.dp(4)).setDuration(200));
animator.addState(new int[]{}, ObjectAnimator.ofFloat(floatingButton, "translationZ", AndroidUtilities.dp(4), AndroidUtilities.dp(2)).setDuration(200));
floatingButton.setStateListAnimator(animator);
floatingButton.setOutlineProvider(new ViewOutlineProvider() {
@SuppressLint("NewApi")
@Override
public void getOutline(View view, Outline outline) {
outline.setOval(0, 0, AndroidUtilities.dp(56), AndroidUtilities.dp(56));
}
});
}
2017-12-08 18:35:59 +01:00
contentView.addView(floatingButton, LayoutHelper.createFrame(Build.VERSION.SDK_INT >= 21 ? 56 : 60, Build.VERSION.SDK_INT >= 21 ? 56 : 60, (LocaleController.isRTL ? Gravity.LEFT : Gravity.RIGHT) | Gravity.BOTTOM, LocaleController.isRTL ? 14 : 0, 0, LocaleController.isRTL ? 0 : 14, 14));
2015-05-21 23:27:27 +02:00
floatingButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Bundle args = new Bundle();
args.putBoolean("destroyAfterSelect", true);
presentFragment(new ContactsActivity(args));
}
});
listView.setOnScrollListener(new RecyclerView.OnScrollListener() {
2015-04-09 20:00:14 +02:00
@Override
2015-05-21 23:27:27 +02:00
public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
if (newState == RecyclerView.SCROLL_STATE_DRAGGING && searching && searchWas) {
2015-04-09 20:00:14 +02:00
AndroidUtilities.hideKeyboard(getParentActivity().getCurrentFocus());
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
}
2013-10-25 17:19:00 +02:00
2015-04-09 20:00:14 +02:00
@Override
2015-05-21 23:27:27 +02:00
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
int firstVisibleItem = layoutManager.findFirstVisibleItemPosition();
int visibleItemCount = Math.abs(layoutManager.findLastVisibleItemPosition() - firstVisibleItem) + 1;
int totalItemCount = recyclerView.getAdapter().getItemCount();
2015-04-09 20:00:14 +02:00
if (searching && searchWas) {
2015-05-21 23:27:27 +02:00
if (visibleItemCount > 0 && layoutManager.findLastVisibleItemPosition() == totalItemCount - 1 && !dialogsSearchAdapter.isMessagesSearchEndReached()) {
2015-04-09 20:00:14 +02:00
dialogsSearchAdapter.loadMoreSearchMessages();
}
return;
}
if (visibleItemCount > 0) {
2015-11-26 22:04:02 +01:00
if (layoutManager.findLastVisibleItemPosition() >= getDialogsArray().size() - 10) {
2017-03-31 01:58:05 +02:00
boolean fromCache = !MessagesController.getInstance().dialogsEndReached;
if (fromCache || !MessagesController.getInstance().serverDialogsEndReached) {
MessagesController.getInstance().loadDialogs(-1, 100, fromCache);
}
}
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
if (floatingButton.getVisibility() != View.GONE) {
2015-05-21 23:27:27 +02:00
final View topChild = recyclerView.getChildAt(0);
2015-04-09 20:00:14 +02:00
int firstViewTop = 0;
if (topChild != null) {
firstViewTop = topChild.getTop();
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
boolean goingDown;
boolean changed = true;
if (prevPosition == firstVisibleItem) {
final int topDelta = prevTop - firstViewTop;
goingDown = firstViewTop < prevTop;
changed = Math.abs(topDelta) > 1;
} else {
goingDown = firstVisibleItem > prevPosition;
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
if (changed && scrollUpdated) {
hideFloatingButton(goingDown);
}
2015-04-09 20:00:14 +02:00
prevPosition = firstVisibleItem;
prevTop = firstViewTop;
scrollUpdated = true;
2013-10-25 17:19:00 +02:00
}
}
2015-04-09 20:00:14 +02:00
});
2015-05-21 23:27:27 +02:00
if (searchString == null) {
2017-12-08 18:35:59 +01:00
dialogsAdapter = new DialogsAdapter(context, dialogsType, onlySelect);
2015-05-21 23:27:27 +02:00
if (AndroidUtilities.isTablet() && openedDialogId != 0) {
dialogsAdapter.setOpenedDialogId(openedDialogId);
}
listView.setAdapter(dialogsAdapter);
}
int type = 0;
if (searchString != null) {
type = 2;
} else if (!onlySelect) {
type = 1;
}
2015-08-13 11:23:31 +02:00
dialogsSearchAdapter = new DialogsSearchAdapter(context, type, dialogsType);
2016-05-25 23:49:47 +02:00
dialogsSearchAdapter.setDelegate(new DialogsSearchAdapter.DialogsSearchAdapterDelegate() {
2015-05-21 23:27:27 +02:00
@Override
public void searchStateChanged(boolean search) {
if (searching && searchWas && searchEmptyView != null) {
if (search) {
searchEmptyView.showProgress();
} else {
searchEmptyView.showTextView();
}
}
}
2016-05-25 23:49:47 +02:00
@Override
2017-12-08 18:35:59 +01:00
public void didPressedOnSubDialog(long did) {
2016-05-25 23:49:47 +02:00
if (onlySelect) {
2017-12-08 18:35:59 +01:00
if (dialogsAdapter.hasSelectedDialogs()) {
dialogsAdapter.addOrRemoveSelectedDialog(did, null);
updateSelectedCount();
actionBar.closeSearchField();
} else {
didSelectResult(did, true, false);
}
2016-05-25 23:49:47 +02:00
} else {
2017-12-08 18:35:59 +01:00
int lower_id = (int) did;
2016-05-25 23:49:47 +02:00
Bundle args = new Bundle();
2017-12-08 18:35:59 +01:00
if (lower_id > 0) {
args.putInt("user_id", lower_id);
2016-05-25 23:49:47 +02:00
} else {
2017-12-08 18:35:59 +01:00
args.putInt("chat_id", -lower_id);
2016-05-25 23:49:47 +02:00
}
if (actionBar != null) {
actionBar.closeSearchField();
}
if (AndroidUtilities.isTablet()) {
if (dialogsAdapter != null) {
dialogsAdapter.setOpenedDialogId(openedDialogId = did);
updateVisibleRows(MessagesController.UPDATE_MASK_SELECT_DIALOG);
}
}
if (searchString != null) {
if (MessagesController.checkCanOpenChat(args, DialogsActivity.this)) {
NotificationCenter.getInstance().postNotificationName(NotificationCenter.closeChats);
presentFragment(new ChatActivity(args));
}
} else {
if (MessagesController.checkCanOpenChat(args, DialogsActivity.this)) {
presentFragment(new ChatActivity(args));
}
}
}
}
@Override
public void needRemoveHint(final int did) {
if (getParentActivity() == null) {
return;
}
TLRPC.User user = MessagesController.getInstance().getUser(did);
if (user == null) {
return;
}
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setMessage(LocaleController.formatString("ChatHintsDelete", R.string.ChatHintsDelete, ContactsController.formatName(user.first_name, user.last_name)));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
SearchQuery.removePeer(did);
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
showDialog(builder.create());
}
2015-05-21 23:27:27 +02:00
});
if (MessagesController.getInstance().loadingDialogs && MessagesController.getInstance().dialogs.isEmpty()) {
2015-06-29 19:12:11 +02:00
searchEmptyView.setVisibility(View.GONE);
2015-05-21 23:27:27 +02:00
listView.setEmptyView(progressView);
} else {
2015-06-29 19:12:11 +02:00
searchEmptyView.setVisibility(View.GONE);
progressView.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
listView.setEmptyView(null);
2015-05-21 23:27:27 +02:00
}
2015-04-09 20:00:14 +02:00
if (searchString != null) {
actionBar.openSearchField(searchString);
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
2015-10-29 18:10:07 +01:00
if (!onlySelect && dialogsType == 0) {
2017-12-08 18:35:59 +01:00
contentView.addView(fragmentLocationContextView = new FragmentContextView(context, this, true), LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 39, Gravity.TOP | Gravity.LEFT, 0, -36, 0, 0));
contentView.addView(fragmentContextView = new FragmentContextView(context, this, false), LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, 39, Gravity.TOP | Gravity.LEFT, 0, -36, 0, 0));
fragmentContextView.setAdditionalContextView(fragmentLocationContextView);
fragmentLocationContextView.setAdditionalContextView(fragmentContextView);
} else if (dialogsType == 3 && selectAlertString == null) {
if (commentView != null) {
commentView.onDestroy();
}
commentView = new ChatActivityEnterView(getParentActivity(), contentView, null, false);
commentView.setAllowStickersAndGifs(false, false);
commentView.setForceShowSendButton(true, false);
commentView.setVisibility(View.GONE);
contentView.addView(commentView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.WRAP_CONTENT, Gravity.LEFT | Gravity.BOTTOM));
commentView.setDelegate(new ChatActivityEnterView.ChatActivityEnterViewDelegate() {
@Override
public void onMessageSend(CharSequence message) {
if (delegate == null) {
return;
}
ArrayList<Long> selectedDialogs = dialogsAdapter.getSelectedDialogs();
if (selectedDialogs.isEmpty()) {
return;
}
delegate.didSelectDialogs(DialogsActivity.this, selectedDialogs, message, false);
}
@Override
public void onSwitchRecordMode(boolean video) {
}
@Override
public void onPreAudioVideoRecord() {
}
@Override
public void onTextChanged(final CharSequence text, boolean bigChange) {
}
@Override
public void needSendTyping() {
}
@Override
public void onAttachButtonHidden() {
}
@Override
public void onAttachButtonShow() {
}
@Override
public void onMessageEditEnd(boolean loading) {
}
@Override
public void onWindowSizeChanged(int size) {
}
@Override
public void onStickersTab(boolean opened) {
}
@Override
public void didPressedAttachButton() {
}
@Override
public void needStartRecordVideo(int state) {
}
@Override
public void needChangeVideoPreviewState(int state, float seekProgress) {
}
@Override
public void needStartRecordAudio(int state) {
}
@Override
public void needShowMediaBanHint() {
}
});
2015-10-29 18:10:07 +01:00
}
2013-10-25 17:19:00 +02:00
return fragmentView;
}
@Override
public void onResume() {
super.onResume();
2014-11-13 21:10:14 +01:00
if (dialogsAdapter != null) {
dialogsAdapter.notifyDataSetChanged();
2014-10-31 20:02:29 +01:00
}
2017-12-08 18:35:59 +01:00
if (commentView != null) {
commentView.onResume();
}
2014-11-13 21:10:14 +01:00
if (dialogsSearchAdapter != null) {
dialogsSearchAdapter.notifyDataSetChanged();
2013-10-25 17:19:00 +02:00
}
2015-10-29 18:10:07 +01:00
if (checkPermission && !onlySelect && Build.VERSION.SDK_INT >= 23) {
Activity activity = getParentActivity();
if (activity != null) {
checkPermission = false;
if (activity.checkSelfPermission(Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED || activity.checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
if (activity.shouldShowRequestPermissionRationale(Manifest.permission.READ_CONTACTS)) {
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setMessage(LocaleController.getString("PermissionContacts", R.string.PermissionContacts));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), null);
showDialog(permissionDialog = builder.create());
} else if (activity.shouldShowRequestPermissionRationale(Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setMessage(LocaleController.getString("PermissionStorage", R.string.PermissionStorage));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), null);
showDialog(permissionDialog = builder.create());
} else {
askForPermissons();
}
}
}
}
}
2017-12-08 18:35:59 +01:00
@Override
public void onPause() {
super.onPause();
if (commentView != null) {
commentView.onResume();
}
}
private void updateSelectedCount() {
if (commentView == null) {
return;
}
if (!dialogsAdapter.hasSelectedDialogs()) {
if (dialogsType == 3 && selectAlertString == null) {
actionBar.setTitle(LocaleController.getString("ForwardTo", R.string.ForwardTo));
} else {
actionBar.setTitle(LocaleController.getString("SelectChat", R.string.SelectChat));
}
if (commentView.getTag() != null) {
commentView.hidePopup(false);
commentView.closeKeyboard();
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(ObjectAnimator.ofFloat(commentView, "translationY", 0, commentView.getMeasuredHeight()));
animatorSet.setDuration(180);
animatorSet.setInterpolator(new DecelerateInterpolator());
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
commentView.setVisibility(View.GONE);
}
});
animatorSet.start();
commentView.setTag(null);
listView.requestLayout();
}
} else {
if (commentView.getTag() == null) {
commentView.setFieldText("");
commentView.setVisibility(View.VISIBLE);
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(ObjectAnimator.ofFloat(commentView, "translationY", commentView.getMeasuredHeight(), 0));
animatorSet.setDuration(180);
animatorSet.setInterpolator(new DecelerateInterpolator());
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
commentView.setTag(2);
}
});
animatorSet.start();
commentView.setTag(1);
}
actionBar.setTitle(LocaleController.formatPluralString("Recipient", dialogsAdapter.getSelectedDialogs().size()));
}
}
2015-10-29 18:10:07 +01:00
@TargetApi(Build.VERSION_CODES.M)
private void askForPermissons() {
Activity activity = getParentActivity();
if (activity == null) {
return;
}
ArrayList<String> permissons = new ArrayList<>();
if (activity.checkSelfPermission(Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED) {
permissons.add(Manifest.permission.READ_CONTACTS);
permissons.add(Manifest.permission.WRITE_CONTACTS);
permissons.add(Manifest.permission.GET_ACCOUNTS);
}
if (activity.checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
permissons.add(Manifest.permission.READ_EXTERNAL_STORAGE);
permissons.add(Manifest.permission.WRITE_EXTERNAL_STORAGE);
}
String[] items = permissons.toArray(new String[permissons.size()]);
2017-07-23 19:29:17 +02:00
try {
activity.requestPermissions(items, 1);
} catch (Exception ignore) {
}
2015-10-29 18:10:07 +01:00
}
@Override
protected void onDialogDismiss(Dialog dialog) {
super.onDialogDismiss(dialog);
if (permissionDialog != null && dialog == permissionDialog && getParentActivity() != null) {
askForPermissons();
}
2013-10-25 17:19:00 +02:00
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (!onlySelect && floatingButton != null) {
floatingButton.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
floatingButton.setTranslationY(floatingHidden ? AndroidUtilities.dp(100) : 0);
2014-11-19 02:23:46 +01:00
floatingButton.setClickable(!floatingHidden);
if (floatingButton != null) {
floatingButton.getViewTreeObserver().removeOnGlobalLayoutListener(this);
}
}
});
}
}
2015-10-29 18:10:07 +01:00
@Override
public void onRequestPermissionsResultFragment(int requestCode, String[] permissions, int[] grantResults) {
if (requestCode == 1) {
for (int a = 0; a < permissions.length; a++) {
if (grantResults.length <= a || grantResults[a] != PackageManager.PERMISSION_GRANTED) {
2015-10-29 18:10:07 +01:00
continue;
}
switch (permissions[a]) {
case Manifest.permission.READ_CONTACTS:
2017-12-08 18:35:59 +01:00
ContactsController.getInstance().forceImportContacts();
2015-10-29 18:10:07 +01:00
break;
case Manifest.permission.WRITE_EXTERNAL_STORAGE:
2016-03-06 02:49:31 +01:00
ImageLoader.getInstance().checkMediaPaths();
2015-10-29 18:10:07 +01:00
break;
}
}
}
}
2013-10-25 17:19:00 +02:00
@Override
@SuppressWarnings("unchecked")
public void didReceivedNotification(int id, Object... args) {
if (id == NotificationCenter.dialogsNeedReload) {
2014-11-20 15:45:33 +01:00
if (dialogsAdapter != null) {
if (dialogsAdapter.isDataSetChanged()) {
dialogsAdapter.notifyDataSetChanged();
} else {
updateVisibleRows(MessagesController.UPDATE_MASK_NEW_MESSAGE);
}
2014-11-20 15:45:33 +01:00
}
if (dialogsSearchAdapter != null) {
dialogsSearchAdapter.notifyDataSetChanged();
}
2015-05-21 23:27:27 +02:00
if (listView != null) {
2014-11-21 11:59:05 +01:00
try {
if (MessagesController.getInstance().loadingDialogs && MessagesController.getInstance().dialogs.isEmpty()) {
2015-06-29 19:12:11 +02:00
searchEmptyView.setVisibility(View.GONE);
2015-05-21 23:27:27 +02:00
listView.setEmptyView(progressView);
2014-11-17 03:44:57 +01:00
} else {
2015-06-29 19:12:11 +02:00
progressView.setVisibility(View.GONE);
2014-11-21 11:59:05 +01:00
if (searching && searchWas) {
2015-05-21 23:27:27 +02:00
listView.setEmptyView(searchEmptyView);
2014-11-21 11:59:05 +01:00
} else {
2015-06-29 19:12:11 +02:00
searchEmptyView.setVisibility(View.GONE);
2017-12-08 18:35:59 +01:00
listView.setEmptyView(null);
2014-11-21 11:59:05 +01:00
}
2013-10-25 17:19:00 +02:00
}
2014-11-21 11:59:05 +01:00
} catch (Exception e) {
2017-12-08 18:35:59 +01:00
FileLog.e(e);
2013-10-25 17:19:00 +02:00
}
}
} else if (id == NotificationCenter.emojiDidLoaded) {
2016-03-16 13:26:32 +01:00
updateVisibleRows(0);
} else if (id == NotificationCenter.updateInterfaces) {
2015-05-21 23:27:27 +02:00
updateVisibleRows((Integer) args[0]);
} else if (id == NotificationCenter.appDidLogout) {
2013-10-25 17:19:00 +02:00
dialogsLoaded = false;
} else if (id == NotificationCenter.encryptedChatUpdated) {
updateVisibleRows(0);
} else if (id == NotificationCenter.contactsDidLoaded) {
updateVisibleRows(0);
} else if (id == NotificationCenter.openedChatChanged) {
2015-06-29 19:12:11 +02:00
if (dialogsType == 0 && AndroidUtilities.isTablet()) {
2015-05-21 23:27:27 +02:00
boolean close = (Boolean) args[1];
long dialog_id = (Long) args[0];
if (close) {
if (dialog_id == openedDialogId) {
openedDialogId = 0;
}
} else {
openedDialogId = dialog_id;
}
2014-11-19 11:32:27 +01:00
if (dialogsAdapter != null) {
dialogsAdapter.setOpenedDialogId(openedDialogId);
}
2014-11-11 23:16:17 +01:00
updateVisibleRows(MessagesController.UPDATE_MASK_SELECT_DIALOG);
}
2015-02-01 19:51:02 +01:00
} else if (id == NotificationCenter.notificationsSettingsUpdated) {
updateVisibleRows(0);
} else if (id == NotificationCenter.messageReceivedByAck || id == NotificationCenter.messageReceivedByServer || id == NotificationCenter.messageSendError) {
updateVisibleRows(MessagesController.UPDATE_MASK_SEND_STATE);
} else if (id == NotificationCenter.didSetPasscode) {
updatePasscodeButton();
2017-03-31 01:58:05 +02:00
} else if (id == NotificationCenter.needReloadRecentDialogsSearch) {
2015-09-24 22:52:02 +02:00
if (dialogsSearchAdapter != null) {
dialogsSearchAdapter.loadRecentSearch();
}
2016-03-16 13:26:32 +01:00
} else if (id == NotificationCenter.didLoadedReplyMessages) {
updateVisibleRows(0);
2016-05-25 23:49:47 +02:00
} else if (id == NotificationCenter.reloadHints) {
if (dialogsSearchAdapter != null) {
dialogsSearchAdapter.notifyDataSetChanged();
}
}
}
private ArrayList<TLRPC.TL_dialog> getDialogsArray() {
2015-06-29 19:12:11 +02:00
if (dialogsType == 0) {
return MessagesController.getInstance().dialogs;
} else if (dialogsType == 1) {
return MessagesController.getInstance().dialogsServerOnly;
} else if (dialogsType == 2) {
return MessagesController.getInstance().dialogsGroupsOnly;
2017-12-08 18:35:59 +01:00
} else if (dialogsType == 3) {
return MessagesController.getInstance().dialogsForward;
2015-06-29 19:12:11 +02:00
}
return null;
}
2017-03-31 01:58:05 +02:00
public void setSideMenu(RecyclerView recyclerView) {
sideMenu = recyclerView;
sideMenu.setBackgroundColor(Theme.getColor(Theme.key_chats_menuBackground));
sideMenu.setGlowColor(Theme.getColor(Theme.key_chats_menuBackground));
}
private void updatePasscodeButton() {
if (passcodeItem == null) {
return;
}
if (UserConfig.passcodeHash.length() != 0 && !searching) {
passcodeItem.setVisibility(View.VISIBLE);
if (UserConfig.appLocked) {
passcodeItem.setIcon(R.drawable.lock_close);
} else {
passcodeItem.setIcon(R.drawable.lock_open);
2015-02-01 19:51:02 +01:00
}
} else {
passcodeItem.setVisibility(View.GONE);
2013-10-25 17:19:00 +02:00
}
}
private void hideFloatingButton(boolean hide) {
if (floatingHidden == hide) {
return;
}
floatingHidden = hide;
ObjectAnimator animator = ObjectAnimator.ofFloat(floatingButton, "translationY", floatingHidden ? AndroidUtilities.dp(100) : 0).setDuration(300);
animator.setInterpolator(floatingInterpolator);
2014-11-19 02:23:46 +01:00
floatingButton.setClickable(!hide);
animator.start();
}
private void updateVisibleRows(int mask) {
2015-05-21 23:27:27 +02:00
if (listView == null) {
return;
}
2015-05-21 23:27:27 +02:00
int count = listView.getChildCount();
for (int a = 0; a < count; a++) {
2015-05-21 23:27:27 +02:00
View child = listView.getChildAt(a);
if (child instanceof DialogCell) {
2015-06-29 19:12:11 +02:00
if (listView.getAdapter() != dialogsSearchAdapter) {
DialogCell cell = (DialogCell) child;
if ((mask & MessagesController.UPDATE_MASK_NEW_MESSAGE) != 0) {
cell.checkCurrentDialogIndex();
if (dialogsType == 0 && AndroidUtilities.isTablet()) {
cell.setDialogSelected(cell.getDialogId() == openedDialogId);
}
} else if ((mask & MessagesController.UPDATE_MASK_SELECT_DIALOG) != 0) {
if (dialogsType == 0 && AndroidUtilities.isTablet()) {
cell.setDialogSelected(cell.getDialogId() == openedDialogId);
}
} else {
cell.update(mask);
}
}
2014-11-10 12:05:22 +01:00
} else if (child instanceof UserCell) {
((UserCell) child).update(mask);
2015-08-13 11:23:31 +02:00
} else if (child instanceof ProfileSearchCell) {
((ProfileSearchCell) child).update(mask);
2016-05-25 23:49:47 +02:00
} else if (child instanceof RecyclerListView) {
RecyclerListView innerListView = (RecyclerListView) child;
int count2 = innerListView.getChildCount();
for (int b = 0; b < count2; b++) {
View child2 = innerListView.getChildAt(b);
if (child2 instanceof HintDialogCell) {
((HintDialogCell) child2).checkUnreadCounter(mask);
}
}
2013-10-25 17:19:00 +02:00
}
}
}
2016-05-25 23:49:47 +02:00
public void setDelegate(DialogsActivityDelegate dialogsActivityDelegate) {
delegate = dialogsActivityDelegate;
2013-10-25 17:19:00 +02:00
}
public void setSearchString(String string) {
searchString = string;
}
public boolean isMainDialogList() {
return delegate == null && searchString == null;
}
private void didSelectResult(final long dialog_id, boolean useAlert, final boolean param) {
2015-09-24 22:52:02 +02:00
if (addToGroupAlertString == null) {
2017-03-31 01:58:05 +02:00
if ((int) dialog_id < 0) {
TLRPC.Chat chat = MessagesController.getInstance().getChat(-(int) dialog_id);
if (ChatObject.isChannel(chat) && !chat.megagroup && (cantSendToChannels || !ChatObject.isCanWriteToChannel(-(int) dialog_id))) {
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setMessage(LocaleController.getString("ChannelCantSendMessage", R.string.ChannelCantSendMessage));
builder.setNegativeButton(LocaleController.getString("OK", R.string.OK), null);
showDialog(builder.create());
return;
}
2015-09-24 22:52:02 +02:00
}
}
2015-06-29 19:12:11 +02:00
if (useAlert && (selectAlertString != null && selectAlertStringGroup != null || addToGroupAlertString != null)) {
if (getParentActivity() == null) {
return;
}
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
2015-05-21 23:27:27 +02:00
int lower_part = (int) dialog_id;
int high_id = (int) (dialog_id >> 32);
2013-10-25 17:19:00 +02:00
if (lower_part != 0) {
if (high_id == 1) {
TLRPC.Chat chat = MessagesController.getInstance().getChat(lower_part);
if (chat == null) {
return;
}
2014-10-04 17:56:09 +02:00
builder.setMessage(LocaleController.formatStringSimple(selectAlertStringGroup, chat.title));
} else {
2017-12-08 18:35:59 +01:00
if (lower_part == UserConfig.getClientUserId()) {
builder.setMessage(LocaleController.formatStringSimple(selectAlertStringGroup, LocaleController.getString("SavedMessages", R.string.SavedMessages)));
} else if (lower_part > 0) {
TLRPC.User user = MessagesController.getInstance().getUser(lower_part);
if (user == null) {
return;
}
2015-06-29 19:12:11 +02:00
builder.setMessage(LocaleController.formatStringSimple(selectAlertString, UserObject.getUserName(user)));
} else if (lower_part < 0) {
TLRPC.Chat chat = MessagesController.getInstance().getChat(-lower_part);
if (chat == null) {
return;
}
2015-06-29 19:12:11 +02:00
if (addToGroupAlertString != null) {
builder.setMessage(LocaleController.formatStringSimple(addToGroupAlertString, chat.title));
} else {
builder.setMessage(LocaleController.formatStringSimple(selectAlertStringGroup, chat.title));
}
}
}
} else {
TLRPC.EncryptedChat chat = MessagesController.getInstance().getEncryptedChat(high_id);
TLRPC.User user = MessagesController.getInstance().getUser(chat.user_id);
if (user == null) {
return;
}
2015-06-29 19:12:11 +02:00
builder.setMessage(LocaleController.formatStringSimple(selectAlertString, UserObject.getUserName(user)));
2013-10-25 17:19:00 +02:00
}
2015-05-21 23:27:27 +02:00
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
2013-10-25 17:19:00 +02:00
@Override
public void onClick(DialogInterface dialogInterface, int i) {
2015-05-21 23:27:27 +02:00
didSelectResult(dialog_id, false, false);
2013-10-25 17:19:00 +02:00
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
2015-05-21 23:27:27 +02:00
showDialog(builder.create());
2013-10-25 17:19:00 +02:00
} else {
if (delegate != null) {
2017-12-08 18:35:59 +01:00
ArrayList<Long> dids = new ArrayList<>();
dids.add(dialog_id);
delegate.didSelectDialogs(DialogsActivity.this, dids, null, param);
2013-10-25 17:19:00 +02:00
delegate = null;
} else {
finishFragment();
}
}
}
2017-03-31 01:58:05 +02:00
@Override
public ThemeDescription[] getThemeDescriptions() {
ThemeDescription.ThemeDescriptionDelegate сellDelegate = new ThemeDescription.ThemeDescriptionDelegate() {
@Override
public void didSetColor(int color) {
int count = listView.getChildCount();
for (int a = 0; a < count; a++) {
View child = listView.getChildAt(a);
if (child instanceof ProfileSearchCell) {
((ProfileSearchCell) child).update(0);
} else if (child instanceof DialogCell) {
((DialogCell) child).update(0);
}
}
RecyclerListView recyclerListView = dialogsSearchAdapter.getInnerListView();
if (recyclerListView != null) {
count = recyclerListView.getChildCount();
for (int a = 0; a < count; a++) {
View child = recyclerListView.getChildAt(a);
if (child instanceof HintDialogCell) {
((HintDialogCell) child).update();
}
}
}
}
};
return new ThemeDescription[]{
new ThemeDescription(fragmentView, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_windowBackgroundWhite),
new ThemeDescription(actionBar, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_actionBarDefault),
new ThemeDescription(listView, ThemeDescription.FLAG_LISTGLOWCOLOR, null, null, null, null, Theme.key_actionBarDefault),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_ITEMSCOLOR, null, null, null, null, Theme.key_actionBarDefaultIcon),
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_actionBarDefaultSelector),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SEARCH, null, null, null, null, Theme.key_actionBarDefaultSearch),
new ThemeDescription(actionBar, ThemeDescription.FLAG_AB_SEARCHPLACEHOLDER, null, null, null, null, Theme.key_actionBarDefaultSearchPlaceholder),
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(searchEmptyView, ThemeDescription.FLAG_TEXTCOLOR, null, null, null, null, Theme.key_emptyListPlaceholder),
new ThemeDescription(searchEmptyView, ThemeDescription.FLAG_PROGRESSBAR, null, null, null, null, Theme.key_progressCircle),
2017-12-08 18:35:59 +01:00
new ThemeDescription(listView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{DialogsEmptyCell.class}, new String[]{"emptyTextView1"}, null, null, null, Theme.key_emptyListPlaceholder),
new ThemeDescription(listView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{DialogsEmptyCell.class}, new String[]{"emptyTextView2"}, null, null, null, Theme.key_emptyListPlaceholder),
2017-03-31 01:58:05 +02:00
new ThemeDescription(floatingButton, ThemeDescription.FLAG_IMAGECOLOR, null, null, null, null, Theme.key_chats_actionIcon),
new ThemeDescription(floatingButton, ThemeDescription.FLAG_BACKGROUNDFILTER, null, null, null, null, Theme.key_chats_actionBackground),
new ThemeDescription(floatingButton, ThemeDescription.FLAG_BACKGROUNDFILTER | ThemeDescription.FLAG_DRAWABLESELECTEDSTATE, null, null, null, null, Theme.key_chats_actionPressedBackground),
2017-12-08 18:35:59 +01:00
new ThemeDescription(listView, 0, new Class[]{DialogCell.class, ProfileSearchCell.class}, null, new Drawable[]{Theme.avatar_photoDrawable, Theme.avatar_broadcastDrawable, Theme.avatar_savedDrawable}, null, Theme.key_avatar_text),
2017-03-31 01:58:05 +02:00
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundRed),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundOrange),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundViolet),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundGreen),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundCyan),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundBlue),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundPink),
2017-12-08 18:35:59 +01:00
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_avatar_backgroundSaved),
2017-03-31 01:58:05 +02:00
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_countPaint, null, null, Theme.key_chats_unreadCounter),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_countGrayPaint, null, null, Theme.key_chats_unreadCounterMuted),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_countTextPaint, null, null, Theme.key_chats_unreadCounterText),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class, ProfileSearchCell.class}, Theme.dialogs_namePaint, null, null, Theme.key_chats_name),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class, ProfileSearchCell.class}, Theme.dialogs_nameEncryptedPaint, null, null, Theme.key_chats_secretName),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class, ProfileSearchCell.class}, null, new Drawable[]{Theme.dialogs_lockDrawable}, null, Theme.key_chats_secretIcon),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class, ProfileSearchCell.class}, null, new Drawable[]{Theme.dialogs_groupDrawable, Theme.dialogs_broadcastDrawable, Theme.dialogs_botDrawable}, null, Theme.key_chats_nameIcon),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, null, new Drawable[]{Theme.dialogs_pinnedDrawable}, null, Theme.key_chats_pinnedIcon),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_messagePaint, null, null, Theme.key_chats_message),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_chats_nameMessage),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_chats_draft),
new ThemeDescription(null, 0, null, null, null, сellDelegate, Theme.key_chats_attachMessage),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_messagePrintingPaint, null, null, Theme.key_chats_actionMessage),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_timePaint, null, null, Theme.key_chats_date),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_pinnedPaint, null, null, Theme.key_chats_pinnedOverlay),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_tabletSeletedPaint, null, null, Theme.key_chats_tabletSelectedOverlay),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, null, new Drawable[]{Theme.dialogs_checkDrawable, Theme.dialogs_halfCheckDrawable}, null, Theme.key_chats_sentCheck),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, null, new Drawable[]{Theme.dialogs_clockDrawable}, null, Theme.key_chats_sentClock),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, Theme.dialogs_errorPaint, null, null, Theme.key_chats_sentError),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, null, new Drawable[]{Theme.dialogs_errorDrawable}, null, Theme.key_chats_sentErrorIcon),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class, ProfileSearchCell.class}, null, new Drawable[]{Theme.dialogs_verifiedCheckDrawable}, null, Theme.key_chats_verifiedCheck),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class, ProfileSearchCell.class}, null, new Drawable[]{Theme.dialogs_verifiedDrawable}, null, Theme.key_chats_verifiedBackground),
new ThemeDescription(listView, 0, new Class[]{DialogCell.class}, null, new Drawable[]{Theme.dialogs_muteDrawable}, null, Theme.key_chats_muteIcon),
new ThemeDescription(sideMenu, ThemeDescription.FLAG_BACKGROUND, null, null, null, null, Theme.key_chats_menuBackground),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerProfileCell.class}, null, null, null, Theme.key_chats_menuName),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerProfileCell.class}, null, null, null, Theme.key_chats_menuPhone),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerProfileCell.class}, null, null, null, Theme.key_chats_menuPhoneCats),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerProfileCell.class}, null, null, null, Theme.key_chats_menuCloudBackgroundCats),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerProfileCell.class}, new String[]{"cloudDrawable"}, null, null, null, Theme.key_chats_menuCloud),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerProfileCell.class}, null, null, null, Theme.key_chat_serviceBackground),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerProfileCell.class}, null, null, null, Theme.key_chats_menuTopShadow),
new ThemeDescription(sideMenu, ThemeDescription.FLAG_IMAGECOLOR, new Class[]{DrawerActionCell.class}, new String[]{"textView"}, null, null, null, Theme.key_chats_menuItemIcon),
new ThemeDescription(sideMenu, 0, new Class[]{DrawerActionCell.class}, new String[]{"textView"}, null, null, null, Theme.key_chats_menuItemText),
new ThemeDescription(sideMenu, 0, new Class[]{DividerCell.class}, Theme.dividerPaint, null, null, Theme.key_divider),
new ThemeDescription(listView, 0, new Class[]{LoadingCell.class}, new String[]{"progressBar"}, null, null, null, Theme.key_progressCircle),
new ThemeDescription(listView, 0, new Class[]{ProfileSearchCell.class}, Theme.dialogs_offlinePaint, null, null, Theme.key_windowBackgroundWhiteGrayText3),
new ThemeDescription(listView, 0, new Class[]{ProfileSearchCell.class}, Theme.dialogs_onlinePaint, null, null, Theme.key_windowBackgroundWhiteBlueText3),
new ThemeDescription(listView, 0, new Class[]{GraySectionCell.class}, new String[]{"textView"}, null, null, null, Theme.key_windowBackgroundWhiteGrayText2),
new ThemeDescription(listView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{GraySectionCell.class}, null, null, null, Theme.key_graySection),
new ThemeDescription(listView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{HashtagSearchCell.class}, null, null, null, Theme.key_windowBackgroundWhiteBlackText),
new ThemeDescription(progressView, ThemeDescription.FLAG_PROGRESSBAR, null, null, null, null, Theme.key_progressCircle),
new ThemeDescription(dialogsSearchAdapter.getInnerListView(), 0, new Class[]{HintDialogCell.class}, Theme.dialogs_countPaint, null, null, Theme.key_chats_unreadCounter),
new ThemeDescription(dialogsSearchAdapter.getInnerListView(), 0, new Class[]{HintDialogCell.class}, Theme.dialogs_countGrayPaint, null, null, Theme.key_chats_unreadCounterMuted),
new ThemeDescription(dialogsSearchAdapter.getInnerListView(), 0, new Class[]{HintDialogCell.class}, Theme.dialogs_countTextPaint, null, null, Theme.key_chats_unreadCounterText),
new ThemeDescription(dialogsSearchAdapter.getInnerListView(), 0, new Class[]{HintDialogCell.class}, new String[]{"nameTextView"}, null, null, null, Theme.key_windowBackgroundWhiteBlackText),
new ThemeDescription(fragmentContextView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{FragmentContextView.class}, new String[]{"frameLayout"}, null, null, null, Theme.key_inappPlayerBackground),
new ThemeDescription(fragmentContextView, 0, new Class[]{FragmentContextView.class}, new String[]{"playButton"}, null, null, null, Theme.key_inappPlayerPlayPause),
new ThemeDescription(fragmentContextView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{FragmentContextView.class}, new String[]{"titleTextView"}, null, null, null, Theme.key_inappPlayerTitle),
new ThemeDescription(fragmentContextView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{FragmentContextView.class}, new String[]{"frameLayout"}, null, null, null, Theme.key_inappPlayerPerformer),
new ThemeDescription(fragmentContextView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{FragmentContextView.class}, new String[]{"closeButton"}, null, null, null, Theme.key_inappPlayerClose),
new ThemeDescription(fragmentContextView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{FragmentContextView.class}, new String[]{"frameLayout"}, null, null, null, Theme.key_returnToCallBackground),
new ThemeDescription(fragmentContextView, 0, new Class[]{FragmentContextView.class}, new String[]{"titleTextView"}, null, null, null, Theme.key_returnToCallText),
2017-12-08 18:35:59 +01:00
new ThemeDescription(fragmentLocationContextView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{FragmentContextView.class}, new String[]{"frameLayout"}, null, null, null, Theme.key_inappPlayerBackground),
new ThemeDescription(fragmentLocationContextView, 0, new Class[]{FragmentContextView.class}, new String[]{"playButton"}, null, null, null, Theme.key_inappPlayerPlayPause),
new ThemeDescription(fragmentLocationContextView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{FragmentContextView.class}, new String[]{"titleTextView"}, null, null, null, Theme.key_inappPlayerTitle),
new ThemeDescription(fragmentLocationContextView, ThemeDescription.FLAG_TEXTCOLOR, new Class[]{FragmentContextView.class}, new String[]{"frameLayout"}, null, null, null, Theme.key_inappPlayerPerformer),
new ThemeDescription(fragmentLocationContextView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{FragmentContextView.class}, new String[]{"closeButton"}, null, null, null, Theme.key_inappPlayerClose),
new ThemeDescription(fragmentLocationContextView, ThemeDescription.FLAG_CELLBACKGROUNDCOLOR, new Class[]{FragmentContextView.class}, new String[]{"frameLayout"}, null, null, null, Theme.key_returnToCallBackground),
new ThemeDescription(fragmentLocationContextView, 0, new Class[]{FragmentContextView.class}, new String[]{"titleTextView"}, null, null, null, Theme.key_returnToCallText),
2017-03-31 01:58:05 +02:00
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogBackground),
2017-07-08 18:32:04 +02:00
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogBackgroundGray),
2017-03-31 01:58:05 +02:00
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextBlack),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextLink),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogLinkSelection),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextBlue),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextBlue2),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextBlue3),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextBlue4),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextRed),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextGray),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextGray2),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextGray3),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextGray4),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogIcon),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogTextHint),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogInputField),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogInputFieldActivated),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogCheckboxSquareBackground),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogCheckboxSquareCheck),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogCheckboxSquareUnchecked),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogCheckboxSquareDisabled),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogRadioBackground),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogRadioBackgroundChecked),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogProgressCircle),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogButton),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogButtonSelector),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogScrollGlow),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogRoundCheckBox),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogRoundCheckBoxCheck),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogBadgeBackground),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogBadgeText),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogLineProgress),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogLineProgressBackground),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_dialogGrayLine),
2017-12-08 18:35:59 +01:00
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_actionBar),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_actionBarSelector),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_actionBarTitle),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_actionBarTop),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_actionBarSubtitle),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_actionBarItems),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_background),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_time),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_progressBackground),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_progress),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_placeholder),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_placeholderBackground),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_button),
new ThemeDescription(null, 0, null, null, null, null, Theme.key_player_buttonActive),
2017-03-31 01:58:05 +02:00
};
}
2013-10-25 17:19:00 +02:00
}