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

4553 lines
219 KiB
Java
Raw Normal View History

2013-10-25 17:19:00 +02:00
/*
2013-12-20 20:25:49 +01:00
* This is the source code of Telegram for Android v. 1.3.2.
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).
*
* Copyright Nikolai Kudashov, 2013.
*/
package org.telegram.ui;
import android.animation.Animator;
2013-10-25 17:19:00 +02:00
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.ActivityInfo;
2013-10-25 17:19:00 +02:00
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.res.Configuration;
2013-10-25 17:19:00 +02:00
import android.graphics.Bitmap;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.drawable.AnimationDrawable;
import android.graphics.drawable.BitmapDrawable;
import android.media.MediaPlayer;
import android.media.ThumbnailUtils;
import android.net.Uri;
import android.os.Bundle;
import android.os.PowerManager;
2013-10-25 17:19:00 +02:00
import android.provider.MediaStore;
2013-12-20 20:25:49 +01:00
import android.support.v4.internal.view.SupportMenuItem;
import android.support.v7.app.ActionBar;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.view.ActionMode;
2013-10-25 17:19:00 +02:00
import android.text.Editable;
import android.text.Html;
import android.text.TextWatcher;
import android.text.style.ImageSpan;
import android.util.TypedValue;
import android.view.Display;
import android.view.KeyEvent;
import android.view.LayoutInflater;
2013-12-20 20:25:49 +01:00
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
2013-10-25 17:19:00 +02:00
import android.view.MotionEvent;
import android.view.SubMenu;
2013-10-25 17:19:00 +02:00
import android.view.Surface;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewParent;
import android.view.ViewTreeObserver;
import android.view.WindowManager;
import android.view.animation.AccelerateDecelerateInterpolator;
import android.view.inputmethod.EditorInfo;
2013-10-25 17:19:00 +02:00
import android.view.inputmethod.InputMethodManager;
2013-12-26 12:43:37 +01:00
import android.webkit.MimeTypeMap;
2013-10-25 17:19:00 +02:00
import android.widget.AbsListView;
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.EditText;
import android.widget.FrameLayout;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
2013-10-25 17:19:00 +02:00
import android.widget.PopupWindow;
import android.widget.ProgressBar;
import android.widget.RelativeLayout;
import android.widget.TextView;
import org.telegram.PhoneFormat.PhoneFormat;
import org.telegram.messenger.LocaleController;
import org.telegram.messenger.MediaController;
2014-03-10 10:27:49 +01:00
import org.telegram.messenger.MessagesStorage;
import org.telegram.messenger.TLRPC;
import org.telegram.messenger.ContactsController;
2013-12-20 20:25:49 +01:00
import org.telegram.messenger.FileLog;
2013-10-25 17:19:00 +02:00
import org.telegram.objects.MessageObject;
import org.telegram.objects.PhotoObject;
import org.telegram.messenger.ConnectionsManager;
import org.telegram.messenger.Emoji;
import org.telegram.messenger.FileLoader;
import org.telegram.messenger.MessagesController;
import org.telegram.messenger.NotificationCenter;
import org.telegram.messenger.R;
import org.telegram.messenger.UserConfig;
import org.telegram.messenger.Utilities;
import org.telegram.ui.Cells.ChatAudioCell;
import org.telegram.ui.Cells.ChatBaseCell;
import org.telegram.ui.Cells.ChatMediaCell;
import org.telegram.ui.Cells.ChatMessageCell;
2013-10-25 17:19:00 +02:00
import org.telegram.ui.Views.BackupImageView;
import org.telegram.ui.Views.BaseFragment;
import org.telegram.ui.Views.EmojiView;
import org.telegram.ui.Views.LayoutListView;
import org.telegram.ui.Views.MessageActionLayout;
import org.telegram.ui.Views.OnSwipeTouchListener;
import org.telegram.ui.Views.SizeNotifierRelativeLayout;
2014-03-10 10:27:49 +01:00
import org.telegram.ui.Views.TimerButton;
2013-10-25 17:19:00 +02:00
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Locale;
import java.util.concurrent.Semaphore;
2013-10-25 17:19:00 +02:00
2013-12-26 12:43:37 +01:00
public class ChatActivity extends BaseFragment implements SizeNotifierRelativeLayout.SizeNotifierRelativeLayoutDelegate, NotificationCenter.NotificationCenterDelegate, MessagesActivity.MessagesActivityDelegate, DocumentSelectActivity.DocumentSelectActivityDelegate {
2013-10-25 17:19:00 +02:00
private LayoutListView chatListView;
private BackupImageView avatarImageView;
private TLRPC.Chat currentChat;
private TLRPC.User currentUser;
private TLRPC.EncryptedChat currentEncryptedChat;
private ChatAdapter chatAdapter;
private EditText messsageEditText;
private ImageButton sendButton;
private PopupWindow emojiPopup;
private ImageView emojiButton;
private EmojiView emojiView;
private View slideText;
2013-10-25 17:19:00 +02:00
private boolean keyboardVisible;
2013-12-20 20:25:49 +01:00
private int keyboardHeight = 0;
private int keyboardHeightLand = 0;
2013-10-25 17:19:00 +02:00
private View topPanel;
private View secretChatPlaceholder;
private View contentView;
private View progressView;
private boolean ignoreTextChange = false;
private TextView emptyView;
private View bottomOverlay;
private View recordPanel;
private TextView recordTimeText;
2013-10-25 17:19:00 +02:00
private TextView bottomOverlayText;
private ImageButton audioSendButton;
2013-10-25 17:19:00 +02:00
private MessageObject selectedObject;
private MessageObject forwaringMessage;
private TextView secretViewStatusTextView;
2014-03-10 10:27:49 +01:00
private TimerButton timerButton;
2013-10-25 17:19:00 +02:00
private Point displaySize = new Point();
private boolean paused = true;
private boolean readWhenResume = false;
private boolean sendByEnter = false;
2013-12-20 20:25:49 +01:00
private int readWithDate = 0;
private int readWithMid = 0;
2013-10-25 17:19:00 +02:00
private boolean swipeOpening = false;
public boolean scrollToTopOnResume = false;
2013-12-20 20:25:49 +01:00
private boolean scrollToTopUnReadOnResume = false;
2013-10-25 17:19:00 +02:00
private boolean isCustomTheme = false;
private boolean downloadPhotos = true;
private boolean downloadAudios = true;
2013-10-25 17:19:00 +02:00
private ImageView topPlaneClose;
2013-12-20 20:25:49 +01:00
private View pagedownButton;
2013-10-25 17:19:00 +02:00
private TextView topPanelText;
private long dialog_id;
AlertDialog visibleDialog = null;
private SizeNotifierRelativeLayout sizeNotifierRelativeLayout;
private HashMap<Integer, MessageObject> selectedMessagesIds = new HashMap<Integer, MessageObject>();
private HashMap<Integer, MessageObject> selectedMessagesCanCopyIds = new HashMap<Integer, MessageObject>();
private HashMap<Integer, MessageObject> messagesDict = new HashMap<Integer, MessageObject>();
private HashMap<String, ArrayList<MessageObject>> messagesByDays = new HashMap<String, ArrayList<MessageObject>>();
private ArrayList<MessageObject> messages = new ArrayList<MessageObject>();
private int maxMessageId = Integer.MAX_VALUE;
2013-12-20 20:25:49 +01:00
private int minMessageId = Integer.MIN_VALUE;
2013-10-25 17:19:00 +02:00
private int maxDate = Integer.MIN_VALUE;
private boolean endReached = false;
private boolean loading = false;
private boolean cacheEndReaced = false;
private long lastTypingTimeSend = 0;
private int minDate = 0;
private int progressTag = 0;
private boolean invalidateAfterAnimation = false;
boolean first = true;
2013-12-20 20:25:49 +01:00
private int unread_to_load = 0;
private int first_unread_id = 0;
private int last_unread_id = 0;
private boolean unread_end_reached = true;
private boolean loadingForward = false;
private MessageObject unreadMessageObject = null;
private boolean recordingAudio = false;
private String lastTimeString = null;
private float startedDraggingX = -1;
private float distCanMove = Utilities.dp(80);
private PowerManager.WakeLock mWakeLock = null;
private int prevOrientation = -10;
2013-10-25 17:19:00 +02:00
private String currentPicturePath;
private TLRPC.ChatParticipants info = null;
private int onlineCount = -1;
private HashMap<String, ProgressBar> progressBarMap = new HashMap<String, ProgressBar>();
private HashMap<String, ArrayList<ProgressBar>> loadingFile = new HashMap<String, ArrayList<ProgressBar>>();
private HashMap<Integer, String> progressByTag = new HashMap<Integer, String>();
private CharSequence lastPrintString;
private final static int copy = 1;
private final static int forward = 2;
private final static int delete = 3;
private final static int chat_enc_timer = 4;
private final static int chat_menu_attach = 5;
private final static int attach_photo = 6;
private final static int attach_gallery = 7;
private final static int attach_video = 8;
private final static int attach_document = 9;
private final static int attach_location = 10;
private final static int chat_menu_avatar = 11;
2013-10-25 17:19:00 +02:00
ActionMode mActionMode = null;
private ActionMode.Callback mActionModeCallback = new ActionMode.Callback() {
@Override
public boolean onCreateActionMode(ActionMode actionMode, Menu menu) {
menu.clear();
MenuInflater inflater = actionMode.getMenuInflater();
if (currentEncryptedChat == null) {
menu.add(Menu.NONE, copy, Menu.NONE, LocaleController.getString("Copy", R.string.Copy)).setIcon(R.drawable.ic_ab_fwd_copy);
menu.add(Menu.NONE, forward, Menu.NONE, LocaleController.getString("Forward", R.string.Forward)).setIcon(R.drawable.ic_ab_fwd_forward);
menu.add(Menu.NONE, delete, Menu.NONE, LocaleController.getString("Delete", R.string.Delete)).setIcon(R.drawable.ic_ab_fwd_delete);
2013-10-25 17:19:00 +02:00
} else {
menu.add(Menu.NONE, copy, Menu.NONE, LocaleController.getString("Copy", R.string.Copy)).setIcon(R.drawable.ic_ab_fwd_copy);
menu.add(Menu.NONE, delete, Menu.NONE, LocaleController.getString("Delete", R.string.Delete)).setIcon(R.drawable.ic_ab_fwd_delete);
2013-10-25 17:19:00 +02:00
}
menu.findItem(copy).setVisible(selectedMessagesCanCopyIds.size() != 0);
2013-10-25 17:19:00 +02:00
return true;
}
@Override
public boolean onPrepareActionMode(ActionMode actionMode, Menu menu) {
return false;
}
@Override
public boolean onActionItemClicked(ActionMode actionMode, MenuItem menuItem) {
switch (menuItem.getItemId()) {
case copy: {
String str = "";
ArrayList<Integer> ids = new ArrayList<Integer>(selectedMessagesCanCopyIds.keySet());
if (currentEncryptedChat == null) {
Collections.sort(ids);
} else {
Collections.sort(ids, Collections.reverseOrder());
}
for (Integer id : ids) {
MessageObject messageObject = selectedMessagesCanCopyIds.get(id);
if (str.length() != 0) {
str += "\n";
}
str += messageObject.messageOwner.message;
}
if (str.length() != 0) {
if(android.os.Build.VERSION.SDK_INT < 11) {
android.text.ClipboardManager clipboard = (android.text.ClipboardManager)parentActivity.getSystemService(Context.CLIPBOARD_SERVICE);
clipboard.setText(str);
} else {
android.content.ClipboardManager clipboard = (android.content.ClipboardManager)parentActivity.getSystemService(Context.CLIPBOARD_SERVICE);
android.content.ClipData clip = android.content.ClipData.newPlainText("label", str);
clipboard.setPrimaryClip(clip);
}
2013-10-25 17:19:00 +02:00
}
break;
}
case delete: {
2013-10-25 17:19:00 +02:00
ArrayList<Integer> ids = new ArrayList<Integer>(selectedMessagesIds.keySet());
ArrayList<Long> random_ids = null;
if (currentEncryptedChat != null) {
random_ids = new ArrayList<Long>();
for (HashMap.Entry<Integer, MessageObject> entry : selectedMessagesIds.entrySet()) {
MessageObject msg = entry.getValue();
if (msg.messageOwner.random_id != 0) {
random_ids.add(msg.messageOwner.random_id);
}
}
}
MessagesController.getInstance().deleteMessages(ids, random_ids, currentEncryptedChat);
2013-10-25 17:19:00 +02:00
break;
}
case forward: {
2013-10-25 17:19:00 +02:00
MessagesActivity fragment = new MessagesActivity();
fragment.selectAlertString = R.string.ForwardMessagesTo;
fragment.selectAlertStringDesc = "ForwardMessagesTo";
2013-10-25 17:19:00 +02:00
fragment.animationType = 1;
Bundle args = new Bundle();
args.putBoolean("onlySelect", true);
args.putBoolean("serverOnly", true);
fragment.setArguments(args);
fragment.delegate = ChatActivity.this;
((LaunchActivity)parentActivity).presentFragment(fragment, "select_chat", false);
2013-10-25 17:19:00 +02:00
break;
}
}
actionMode.finish();
return false;
}
@Override
public void onDestroyActionMode(ActionMode actionMode) {
mActionMode = null;
updateVisibleRows();
}
};
@Override
public boolean onFragmentCreate() {
super.onFragmentCreate();
final int chatId = getArguments().getInt("chat_id", 0);
final int userId = getArguments().getInt("user_id", 0);
final int encId = getArguments().getInt("enc_id", 0);
2013-10-25 17:19:00 +02:00
if (chatId != 0) {
currentChat = MessagesController.getInstance().chats.get(chatId);
2013-10-25 17:19:00 +02:00
if (currentChat == null) {
final Semaphore semaphore = new Semaphore(0);
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
@Override
public void run() {
currentChat = MessagesStorage.getInstance().getChat(chatId);
semaphore.release();
}
});
try {
semaphore.acquire();
} catch (Exception e) {
FileLog.e("tmessages", e);
}
if (currentChat != null) {
MessagesController.getInstance().chats.put(currentChat.id, currentChat);
} else {
return false;
}
2013-10-25 17:19:00 +02:00
}
MessagesController.getInstance().loadChatInfo(currentChat.id);
2013-10-25 17:19:00 +02:00
dialog_id = -chatId;
} else if (userId != 0) {
currentUser = MessagesController.getInstance().users.get(userId);
2013-10-25 17:19:00 +02:00
if (currentUser == null) {
final Semaphore semaphore = new Semaphore(0);
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
@Override
public void run() {
currentUser = MessagesStorage.getInstance().getUser(userId);
semaphore.release();
}
});
try {
semaphore.acquire();
} catch (Exception e) {
FileLog.e("tmessages", e);
}
if (currentUser != null) {
MessagesController.getInstance().users.putIfAbsent(currentUser.id, currentUser);
} else {
return false;
}
2013-10-25 17:19:00 +02:00
}
dialog_id = userId;
} else if (encId != 0) {
currentEncryptedChat = MessagesController.getInstance().encryptedChats.get(encId);
2013-10-25 17:19:00 +02:00
if (currentEncryptedChat == null) {
final Semaphore semaphore = new Semaphore(0);
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
@Override
public void run() {
currentEncryptedChat = MessagesStorage.getInstance().getEncryptedChat(encId);
semaphore.release();
}
});
try {
semaphore.acquire();
} catch (Exception e) {
FileLog.e("tmessages", e);
}
if (currentEncryptedChat != null) {
MessagesController.getInstance().encryptedChats.putIfAbsent(currentEncryptedChat.id, currentEncryptedChat);
} else {
return false;
}
2013-10-25 17:19:00 +02:00
}
currentUser = MessagesController.getInstance().users.get(currentEncryptedChat.user_id);
2013-10-25 17:19:00 +02:00
if (currentUser == null) {
final Semaphore semaphore = new Semaphore(0);
MessagesStorage.getInstance().storageQueue.postRunnable(new Runnable() {
@Override
public void run() {
currentUser = MessagesStorage.getInstance().getUser(currentEncryptedChat.user_id);
semaphore.release();
}
});
try {
semaphore.acquire();
} catch (Exception e) {
FileLog.e("tmessages", e);
}
if (currentUser != null) {
MessagesController.getInstance().users.putIfAbsent(currentUser.id, currentUser);
} else {
return false;
}
2013-10-25 17:19:00 +02:00
}
dialog_id = ((long)encId) << 32;
maxMessageId = Integer.MIN_VALUE;
2013-12-20 20:25:49 +01:00
minMessageId = Integer.MAX_VALUE;
2013-10-25 17:19:00 +02:00
} else {
return false;
}
NotificationCenter.getInstance().addObserver(this, MessagesController.messagesDidLoaded);
NotificationCenter.getInstance().addObserver(this, 999);
NotificationCenter.getInstance().addObserver(this, MessagesController.updateInterfaces);
NotificationCenter.getInstance().addObserver(this, MessagesController.didReceivedNewMessages);
NotificationCenter.getInstance().addObserver(this, MessagesController.closeChats);
NotificationCenter.getInstance().addObserver(this, MessagesController.messagesReaded);
NotificationCenter.getInstance().addObserver(this, MessagesController.messagesDeleted);
NotificationCenter.getInstance().addObserver(this, MessagesController.messageReceivedByServer);
NotificationCenter.getInstance().addObserver(this, MessagesController.messageReceivedByAck);
NotificationCenter.getInstance().addObserver(this, MessagesController.messageSendError);
NotificationCenter.getInstance().addObserver(this, MessagesController.chatInfoDidLoaded);
NotificationCenter.getInstance().addObserver(this, MessagesController.contactsDidLoaded);
NotificationCenter.getInstance().addObserver(this, MessagesController.encryptedChatUpdated);
NotificationCenter.getInstance().addObserver(this, MessagesController.messagesReadedEncrypted);
NotificationCenter.getInstance().addObserver(this, MessagesController.removeAllMessagesFromDialog);
NotificationCenter.getInstance().addObserver(this, FileLoader.FileUploadProgressChanged);
NotificationCenter.getInstance().addObserver(this, FileLoader.FileDidFailedLoad);
NotificationCenter.getInstance().addObserver(this, FileLoader.FileDidLoaded);
NotificationCenter.getInstance().addObserver(this, FileLoader.FileLoadProgressChanged);
NotificationCenter.getInstance().addObserver(this, MediaController.audioProgressDidChanged);
NotificationCenter.getInstance().addObserver(this, MediaController.audioDidReset);
NotificationCenter.getInstance().addObserver(this, MediaController.recordProgressChanged);
NotificationCenter.getInstance().addObserver(this, MediaController.recordStarted);
NotificationCenter.getInstance().addObserver(this, MediaController.recordStartError);
2014-03-23 01:24:19 +01:00
NotificationCenter.getInstance().addObserver(this, MediaController.recordStopped);
NotificationCenter.getInstance().addObserver(this, 997);
2013-10-25 17:19:00 +02:00
loading = true;
MessagesController.getInstance().loadMessages(dialog_id, 0, 30, 0, true, 0, classGuid, true, false);
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
sendByEnter = preferences.getBoolean("send_by_enter", false);
if (currentChat != null) {
downloadPhotos = preferences.getBoolean("photo_download_chat", true);
} else {
downloadPhotos = preferences.getBoolean("photo_download_user", true);
}
if (currentChat != null) {
downloadAudios = preferences.getBoolean("audio_download_chat", true);
} else {
downloadAudios = preferences.getBoolean("audio_download_user", true);
}
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
return true;
}
@Override
public void onFragmentDestroy() {
super.onFragmentDestroy();
NotificationCenter.getInstance().removeObserver(this, MessagesController.messagesDidLoaded);
NotificationCenter.getInstance().removeObserver(this, 999);
NotificationCenter.getInstance().removeObserver(this, MessagesController.updateInterfaces);
NotificationCenter.getInstance().removeObserver(this, MessagesController.didReceivedNewMessages);
NotificationCenter.getInstance().removeObserver(this, MessagesController.closeChats);
NotificationCenter.getInstance().removeObserver(this, MessagesController.messagesReaded);
NotificationCenter.getInstance().removeObserver(this, MessagesController.messagesDeleted);
NotificationCenter.getInstance().removeObserver(this, MessagesController.messageReceivedByServer);
NotificationCenter.getInstance().removeObserver(this, MessagesController.messageReceivedByAck);
NotificationCenter.getInstance().removeObserver(this, MessagesController.messageSendError);
NotificationCenter.getInstance().removeObserver(this, MessagesController.chatInfoDidLoaded);
NotificationCenter.getInstance().removeObserver(this, MessagesController.encryptedChatUpdated);
NotificationCenter.getInstance().removeObserver(this, MessagesController.messagesReadedEncrypted);
NotificationCenter.getInstance().removeObserver(this, MessagesController.removeAllMessagesFromDialog);
NotificationCenter.getInstance().removeObserver(this, FileLoader.FileUploadProgressChanged);
NotificationCenter.getInstance().removeObserver(this, FileLoader.FileDidFailedLoad);
NotificationCenter.getInstance().removeObserver(this, FileLoader.FileDidLoaded);
NotificationCenter.getInstance().removeObserver(this, FileLoader.FileLoadProgressChanged);
NotificationCenter.getInstance().removeObserver(this, MessagesController.contactsDidLoaded);
NotificationCenter.getInstance().removeObserver(this, MediaController.audioProgressDidChanged);
NotificationCenter.getInstance().removeObserver(this, MediaController.audioDidReset);
NotificationCenter.getInstance().removeObserver(this, MediaController.recordProgressChanged);
NotificationCenter.getInstance().removeObserver(this, MediaController.recordStarted);
NotificationCenter.getInstance().removeObserver(this, MediaController.recordStartError);
2014-03-23 01:24:19 +01:00
NotificationCenter.getInstance().removeObserver(this, MediaController.recordStopped);
NotificationCenter.getInstance().removeObserver(this, 997);
2013-10-25 17:19:00 +02:00
if (sizeNotifierRelativeLayout != null) {
sizeNotifierRelativeLayout.delegate = null;
sizeNotifierRelativeLayout = null;
}
try {
if (visibleDialog != null) {
visibleDialog.dismiss();
visibleDialog = null;
}
} catch (Exception e) {
2013-12-20 20:25:49 +01:00
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
if (mWakeLock != null) {
try {
mWakeLock.release();
2014-03-23 01:24:19 +01:00
mWakeLock = null;
} catch (Exception e) {
FileLog.e("tmessages", e);
}
}
try {
if (prevOrientation != -10) {
parentActivity.setRequestedOrientation(prevOrientation);
prevOrientation = -10;
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
MediaController.getInstance().stopAudio();
2013-10-25 17:19:00 +02:00
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);
Display display = parentActivity.getWindowManager().getDefaultDisplay();
if(android.os.Build.VERSION.SDK_INT < 13) {
displaySize.set(display.getWidth(), display.getHeight());
} else {
display.getSize(displaySize);
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if (fragmentView == null) {
fragmentView = inflater.inflate(R.layout.chat_layout, container, false);
sizeNotifierRelativeLayout = (SizeNotifierRelativeLayout)fragmentView.findViewById(R.id.chat_layout);
sizeNotifierRelativeLayout.delegate = this;
contentView = sizeNotifierRelativeLayout;
emptyView = (TextView)fragmentView.findViewById(R.id.searchEmptyView);
emptyView.setText(LocaleController.getString("NoMessages", R.string.NoMessages));
2013-10-25 17:19:00 +02:00
chatListView = (LayoutListView)fragmentView.findViewById(R.id.chat_list_view);
chatListView.setAdapter(chatAdapter = new ChatAdapter(parentActivity));
topPanel = fragmentView.findViewById(R.id.top_panel);
topPlaneClose = (ImageView)fragmentView.findViewById(R.id.top_plane_close);
topPanelText = (TextView)fragmentView.findViewById(R.id.top_panel_text);
bottomOverlay = fragmentView.findViewById(R.id.bottom_overlay);
bottomOverlayText = (TextView)fragmentView.findViewById(R.id.bottom_overlay_text);
2013-12-20 20:25:49 +01:00
View bottomOverlayChat = fragmentView.findViewById(R.id.bottom_overlay_chat);
progressView = fragmentView.findViewById(R.id.progressLayout);
pagedownButton = fragmentView.findViewById(R.id.pagedown_button);
audioSendButton = (ImageButton)fragmentView.findViewById(R.id.chat_audio_send_button);
recordPanel = fragmentView.findViewById(R.id.record_panel);
recordTimeText = (TextView)fragmentView.findViewById(R.id.recording_time_text);
2013-12-20 20:25:49 +01:00
View progressViewInner = progressView.findViewById(R.id.progressLayoutInner);
2013-10-25 17:19:00 +02:00
updateContactStatus();
ImageView backgroundImage = (ImageView) fragmentView.findViewById(R.id.background_image);
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
2013-12-20 20:25:49 +01:00
int selectedBackground = preferences.getInt("selectedBackground", 1000001);
int selectedColor = preferences.getInt("selectedColor", 0);
if (selectedColor != 0) {
backgroundImage.setBackgroundColor(selectedColor);
chatListView.setCacheColorHint(selectedColor);
} else {
chatListView.setCacheColorHint(0);
if (selectedBackground == 1000001) {
backgroundImage.setImageResource(R.drawable.background_hd);
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
File toFile = new File(ApplicationLoader.applicationContext.getFilesDir(), "wallpaper.jpg");
if (toFile.exists()) {
if (ApplicationLoader.cachedWallpaper != null) {
backgroundImage.setImageBitmap(ApplicationLoader.cachedWallpaper);
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
backgroundImage.setImageURI(Uri.fromFile(toFile));
if (backgroundImage.getDrawable() instanceof BitmapDrawable) {
ApplicationLoader.cachedWallpaper = ((BitmapDrawable)backgroundImage.getDrawable()).getBitmap();
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
isCustomTheme = true;
} else {
backgroundImage.setImageResource(R.drawable.background_hd);
2013-10-25 17:19:00 +02:00
}
}
2013-12-20 20:25:49 +01:00
}
2013-10-25 17:19:00 +02:00
2013-12-20 20:25:49 +01:00
if (currentEncryptedChat != null) {
secretChatPlaceholder = contentView.findViewById(R.id.secret_placeholder);
if (isCustomTheme) {
secretChatPlaceholder.setBackgroundResource(R.drawable.system_black);
} else {
secretChatPlaceholder.setBackgroundResource(R.drawable.system_blue);
}
secretViewStatusTextView = (TextView)contentView.findViewById(R.id.invite_text);
2013-12-26 17:46:13 +01:00
secretChatPlaceholder.setPadding(Utilities.dp(16), Utilities.dp(12), Utilities.dp(16), Utilities.dp(12));
2013-12-20 20:25:49 +01:00
View v = contentView.findViewById(R.id.secret_placeholder);
v.setVisibility(View.VISIBLE);
2013-10-25 17:19:00 +02:00
2013-12-20 20:25:49 +01:00
if (currentEncryptedChat.admin_id == UserConfig.clientUserId) {
2013-12-26 12:43:37 +01:00
if (currentUser.first_name.length() > 0) {
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleOutgoing", R.string.EncryptedPlaceholderTitleOutgoing, currentUser.first_name));
2013-12-26 12:43:37 +01:00
} else {
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleOutgoing", R.string.EncryptedPlaceholderTitleOutgoing, currentUser.last_name));
2013-12-26 12:43:37 +01:00
}
2013-12-20 20:25:49 +01:00
} else {
2013-12-26 12:43:37 +01:00
if (currentUser.first_name.length() > 0) {
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleIncoming", R.string.EncryptedPlaceholderTitleIncoming, currentUser.first_name));
2013-12-26 12:43:37 +01:00
} else {
secretViewStatusTextView.setText(LocaleController.formatString("EncryptedPlaceholderTitleIncoming", R.string.EncryptedPlaceholderTitleIncoming, currentUser.last_name));
2013-12-26 12:43:37 +01:00
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
updateSecretStatus();
}
2013-10-25 17:19:00 +02:00
if (isCustomTheme) {
2013-12-20 20:25:49 +01:00
progressViewInner.setBackgroundResource(R.drawable.system_loader2);
emptyView.setBackgroundResource(R.drawable.system_black);
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
progressViewInner.setBackgroundResource(R.drawable.system_loader1);
emptyView.setBackgroundResource(R.drawable.system_blue);
2013-10-25 17:19:00 +02:00
}
2013-12-26 17:46:13 +01:00
emptyView.setPadding(Utilities.dp(7), Utilities.dp(1), Utilities.dp(7), Utilities.dp(1));
2013-10-25 17:19:00 +02:00
if (currentUser != null && currentUser.id / 1000 == 333) {
emptyView.setText(LocaleController.getString("GotAQuestion", R.string.GotAQuestion));
2013-10-25 17:19:00 +02:00
}
chatListView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> adapter, View view, int position, long id) {
if (mActionMode == null) {
createMenu(view, false);
}
2013-10-25 17:19:00 +02:00
return true;
}
});
final Rect scrollRect = new Rect();
2013-10-25 17:19:00 +02:00
chatListView.setOnScrollListener(new AbsListView.OnScrollListener() {
@Override
public void onScrollStateChanged(AbsListView absListView, int i) {
}
@Override
public void onScroll(AbsListView absListView, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
if (visibleItemCount > 0) {
if (firstVisibleItem <= 4) {
if (!endReached && !loading) {
if (messagesByDays.size() != 0) {
MessagesController.getInstance().loadMessages(dialog_id, 0, 20, maxMessageId, !cacheEndReaced, minDate, classGuid, false, false);
2013-10-25 17:19:00 +02:00
} else {
MessagesController.getInstance().loadMessages(dialog_id, 0, 20, 0, !cacheEndReaced, minDate, classGuid, false, false);
2013-10-25 17:19:00 +02:00
}
loading = true;
}
}
if (firstVisibleItem + visibleItemCount >= totalItemCount - 6) {
2013-12-20 20:25:49 +01:00
if (!unread_end_reached && !loadingForward) {
MessagesController.getInstance().loadMessages(dialog_id, 0, 20, minMessageId, true, maxDate, classGuid, false, true);
2013-12-20 20:25:49 +01:00
loadingForward = true;
}
}
if (firstVisibleItem + visibleItemCount == totalItemCount && unread_end_reached) {
2013-12-20 20:25:49 +01:00
showPagedownButton(false, true);
}
} else {
showPagedownButton(false, false);
2013-10-25 17:19:00 +02:00
}
for (int a = 0; a < visibleItemCount; a++) {
View view = absListView.getChildAt(a);
if (view instanceof ChatMessageCell) {
ChatMessageCell messageCell = (ChatMessageCell)view;
messageCell.getLocalVisibleRect(scrollRect);
messageCell.setVisiblePart(scrollRect.top, scrollRect.bottom - scrollRect.top);
}
}
2013-10-25 17:19:00 +02:00
}
});
messsageEditText = (EditText)fragmentView.findViewById(R.id.chat_text_edit);
messsageEditText.setHint(LocaleController.getString("TypeMessage", R.string.TypeMessage));
slideText = fragmentView.findViewById(R.id.slideText);
TextView textView = (TextView)fragmentView.findViewById(R.id.slideToCancelTextView);
textView.setText(LocaleController.getString("SlideToCancel", R.string.SlideToCancel));
textView = (TextView)fragmentView.findViewById(R.id.bottom_overlay_chat_text);
textView.setText(LocaleController.getString("DeleteThisGroup", R.string.DeleteThisGroup));
textView = (TextView)fragmentView.findViewById(R.id.secret_title);
textView.setText(LocaleController.getString("EncryptedDescriptionTitle", R.string.EncryptedDescriptionTitle));
textView = (TextView)fragmentView.findViewById(R.id.secret_description1);
textView.setText(LocaleController.getString("EncryptedDescription1", R.string.EncryptedDescription1));
textView = (TextView)fragmentView.findViewById(R.id.secret_description2);
textView.setText(LocaleController.getString("EncryptedDescription2", R.string.EncryptedDescription2));
textView = (TextView)fragmentView.findViewById(R.id.secret_description3);
textView.setText(LocaleController.getString("EncryptedDescription3", R.string.EncryptedDescription3));
textView = (TextView)fragmentView.findViewById(R.id.secret_description4);
textView.setText(LocaleController.getString("EncryptedDescription4", R.string.EncryptedDescription4));
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
sendButton = (ImageButton)fragmentView.findViewById(R.id.chat_send_button);
sendButton.setEnabled(false);
sendButton.setVisibility(View.INVISIBLE);
2013-10-25 17:19:00 +02:00
emojiButton = (ImageView)fragmentView.findViewById(R.id.chat_smile_button);
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
if (loading && messages.isEmpty()) {
progressView.setVisibility(View.VISIBLE);
chatListView.setEmptyView(null);
} else {
progressView.setVisibility(View.GONE);
if (currentEncryptedChat == null) {
chatListView.setEmptyView(emptyView);
} else {
chatListView.setEmptyView(secretChatPlaceholder);
}
}
emojiButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (emojiPopup == null) {
showEmojiPopup(true);
} else {
showEmojiPopup(!emojiPopup.isShowing());
}
}
});
messsageEditText.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View view, int i, KeyEvent keyEvent) {
if (i == 4 && !keyboardVisible && emojiPopup != null && emojiPopup.isShowing()) {
if (keyEvent.getAction() == 1) {
showEmojiPopup(false);
}
return true;
} else if (i == KeyEvent.KEYCODE_ENTER && sendByEnter && keyEvent.getAction() == KeyEvent.ACTION_DOWN) {
sendMessage();
return true;
}
return false;
}
});
messsageEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
if (i == EditorInfo.IME_ACTION_SEND) {
sendMessage();
return true;
} else if (sendByEnter) {
if (keyEvent != null && i == EditorInfo.IME_NULL && keyEvent.getAction() == KeyEvent.ACTION_DOWN) {
sendMessage();
return true;
}
2013-10-25 17:19:00 +02:00
}
return false;
}
});
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
sendMessage();
2013-10-25 17:19:00 +02:00
}
});
audioSendButton.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
startedDraggingX = -1;
MediaController.getInstance().startRecording(dialog_id);
updateAudioRecordIntefrace();
} else if (motionEvent.getAction() == MotionEvent.ACTION_UP || motionEvent.getAction() == MotionEvent.ACTION_CANCEL) {
startedDraggingX = -1;
2014-03-23 01:24:19 +01:00
MediaController.getInstance().stopRecording(true);
recordingAudio = false;
updateAudioRecordIntefrace();
} else if (motionEvent.getAction() == MotionEvent.ACTION_MOVE && recordingAudio) {
float x = motionEvent.getX();
if (x < -distCanMove) {
MediaController.getInstance().stopRecording(false);
recordingAudio = false;
updateAudioRecordIntefrace();
}
if(android.os.Build.VERSION.SDK_INT > 13) {
x = x + audioSendButton.getX();
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)slideText.getLayoutParams();
if (startedDraggingX != -1) {
float dist = (x - startedDraggingX);
params.leftMargin = Utilities.dp(30) + (int)dist;
slideText.setLayoutParams(params);
float alpha = 1.0f + dist / distCanMove;
if (alpha > 1) {
alpha = 1;
} else if (alpha < 0) {
alpha = 0;
}
slideText.setAlpha(alpha);
}
if (x <= slideText.getX() + slideText.getWidth() + Utilities.dp(30)) {
if (startedDraggingX == -1) {
startedDraggingX = x;
distCanMove = (recordPanel.getMeasuredWidth() - slideText.getMeasuredWidth() - Utilities.dp(48)) / 2.0f;
if (distCanMove <= 0) {
distCanMove = Utilities.dp(80);
} else if (distCanMove > Utilities.dp(80)) {
distCanMove = Utilities.dp(80);
}
}
}
if (params.leftMargin > Utilities.dp(30)) {
params.leftMargin = Utilities.dp(30);
slideText.setLayoutParams(params);
slideText.setAlpha(1);
startedDraggingX = -1;
}
}
}
view.onTouchEvent(motionEvent);
return true;
}
});
2013-12-20 20:25:49 +01:00
pagedownButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
scrollToLastMessage();
2013-12-20 20:25:49 +01:00
}
});
checkSendButton();
2013-10-25 17:19:00 +02:00
messsageEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i2, int i3) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i2, int i3) {
String message = charSequence.toString().trim();
message = message.replaceAll("\n\n+", "\n\n");
message = message.replaceAll(" +", " ");
sendButton.setEnabled(message.length() != 0);
checkSendButton();
2013-10-25 17:19:00 +02:00
if (message.length() != 0 && lastTypingTimeSend < System.currentTimeMillis() - 5000 && !ignoreTextChange) {
int currentTime = ConnectionsManager.getInstance().getCurrentTime();
if (currentUser != null && currentUser.status != null && currentUser.status.expires < currentTime) {
2013-10-25 17:19:00 +02:00
return;
}
lastTypingTimeSend = System.currentTimeMillis();
MessagesController.getInstance().sendTyping(dialog_id, classGuid);
2013-10-25 17:19:00 +02:00
}
}
@Override
public void afterTextChanged(Editable editable) {
if (sendByEnter && editable.length() > 0 && editable.charAt(editable.length() - 1) == '\n') {
sendMessage();
}
2013-10-25 17:19:00 +02:00
int i = 0;
ImageSpan[] arrayOfImageSpan = editable.getSpans(0, editable.length(), ImageSpan.class);
int j = arrayOfImageSpan.length;
while (true) {
if (i >= j) {
Emoji.replaceEmoji(editable);
return;
}
editable.removeSpan(arrayOfImageSpan[i]);
i++;
}
}
});
2013-12-20 20:25:49 +01:00
bottomOverlayChat.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (currentChat != null) {
MessagesController.getInstance().deleteDialog(-currentChat.id, 0, false);
2013-12-20 20:25:49 +01:00
finishFragment();
}
}
});
2013-10-25 17:19:00 +02:00
chatListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
if (mActionMode != null) {
processRowSelect(view);
return;
}
createMenu(view, true);
2013-10-25 17:19:00 +02:00
}
});
chatListView.setOnTouchListener(new OnSwipeTouchListener() {
public void onSwipeRight() {
ChatActivity.this.onSwipeRight();
2013-10-25 17:19:00 +02:00
}
public void onSwipeLeft() {
ChatActivity.this.onSwipeLeft();
2013-10-25 17:19:00 +02:00
}
});
emptyView.setOnTouchListener(new OnSwipeTouchListener() {
public void onSwipeRight() {
ChatActivity.this.onSwipeRight();
2013-10-25 17:19:00 +02:00
}
public void onSwipeLeft() {
ChatActivity.this.onSwipeLeft();
2013-10-25 17:19:00 +02:00
}
});
2013-12-20 20:25:49 +01:00
if (currentChat != null && (currentChat instanceof TLRPC.TL_chatForbidden || currentChat.left)) {
bottomOverlayChat.setVisibility(View.VISIBLE);
} else {
bottomOverlayChat.setVisibility(View.GONE);
}
2013-10-25 17:19:00 +02:00
} else {
ViewGroup parent = (ViewGroup)fragmentView.getParent();
if (parent != null) {
parent.removeView(fragmentView);
}
}
return fragmentView;
}
private boolean onSwipeLeft() {
if (swipeOpening) {
return false;
}
try {
if (visibleDialog != null) {
visibleDialog.dismiss();
visibleDialog = null;
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
if (avatarImageView != null) {
swipeOpening = true;
avatarImageView.performClick();
}
return true;
}
private boolean onSwipeRight() {
try {
if (visibleDialog != null) {
visibleDialog.dismiss();
visibleDialog = null;
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
finishFragment(true);
return true;
}
private void checkSendButton() {
String message = messsageEditText.getText().toString().trim();
message = message.replaceAll("\n\n+", "\n\n");
message = message.replaceAll(" +", " ");
if (message.length() > 0) {
sendButton.setVisibility(View.VISIBLE);
audioSendButton.setVisibility(View.INVISIBLE);
} else {
sendButton.setVisibility(View.INVISIBLE);
audioSendButton.setVisibility(View.VISIBLE);
}
}
private void updateAudioRecordIntefrace() {
if (parentActivity == null) {
return;
}
if (recordingAudio) {
try {
2014-03-23 01:24:19 +01:00
if (mWakeLock == null) {
PowerManager pm = (PowerManager) parentActivity.getSystemService(Context.POWER_SERVICE);
mWakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, "audio record lock");
mWakeLock.acquire();
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
try {
prevOrientation = parentActivity.getRequestedOrientation();
if(getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
parentActivity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
} else if(getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
parentActivity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
} else {
parentActivity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
recordPanel.setVisibility(View.VISIBLE);
recordTimeText.setText("00:00");
lastTimeString = null;
if(android.os.Build.VERSION.SDK_INT > 13) {
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)slideText.getLayoutParams();
params.leftMargin = Utilities.dp(30);
slideText.setLayoutParams(params);
slideText.setAlpha(1);
recordPanel.setX(Utilities.displaySize.x);
recordPanel.animate().setInterpolator(new AccelerateDecelerateInterpolator()).setListener(new Animator.AnimatorListener() {
@Override
public void onAnimationStart(Animator animator) {
}
@Override
public void onAnimationEnd(Animator animator) {
recordPanel.setX(0);
}
@Override
public void onAnimationCancel(Animator animator) {
}
@Override
public void onAnimationRepeat(Animator animator) {
}
}).setDuration(300).translationX(0).start();
}
} else {
if (mWakeLock != null) {
try {
mWakeLock.release();
2014-03-23 01:24:19 +01:00
mWakeLock = null;
} catch (Exception e) {
FileLog.e("tmessages", e);
}
}
try {
if (prevOrientation != -10) {
parentActivity.setRequestedOrientation(prevOrientation);
prevOrientation = -10;
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
if(android.os.Build.VERSION.SDK_INT > 13) {
recordPanel.animate().setInterpolator(new AccelerateDecelerateInterpolator()).setListener(new Animator.AnimatorListener() {
@Override
public void onAnimationStart(Animator animator) {
}
@Override
public void onAnimationEnd(Animator animator) {
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)slideText.getLayoutParams();
params.leftMargin = Utilities.dp(30);
slideText.setLayoutParams(params);
slideText.setAlpha(1);
recordPanel.setVisibility(View.GONE);
}
@Override
public void onAnimationCancel(Animator animator) {
}
@Override
public void onAnimationRepeat(Animator animator) {
}
}).setDuration(300).translationX(Utilities.displaySize.x).start();
} else {
recordPanel.setVisibility(View.GONE);
}
}
}
private void sendMessage() {
String message = messsageEditText.getText().toString().trim();
if (processSendingText(message)) {
messsageEditText.setText("");
lastTypingTimeSend = 0;
chatListView.post(new Runnable() {
@Override
public void run() {
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
}
});
}
}
private void scrollToLastMessage() {
if (unread_end_reached || first_unread_id == 0) {
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
} else {
messages.clear();
messagesByDays.clear();
messagesDict.clear();
progressView.setVisibility(View.VISIBLE);
chatListView.setEmptyView(null);
if (currentEncryptedChat == null) {
maxMessageId = Integer.MAX_VALUE;
minMessageId = Integer.MIN_VALUE;
} else {
maxMessageId = Integer.MIN_VALUE;
minMessageId = Integer.MAX_VALUE;
}
maxDate = Integer.MIN_VALUE;
minDate = 0;
unread_end_reached = true;
MessagesController.getInstance().loadMessages(dialog_id, 0, 30, 0, true, 0, classGuid, true, false);
loading = true;
chatAdapter.notifyDataSetChanged();
}
}
2013-12-20 20:25:49 +01:00
private void showPagedownButton(boolean show, boolean animated) {
if (pagedownButton == null) {
return;
}
if (show) {
if (pagedownButton.getVisibility() == View.GONE) {
if (android.os.Build.VERSION.SDK_INT >= 16 && animated) {
pagedownButton.setVisibility(View.VISIBLE);
pagedownButton.setAlpha(0);
pagedownButton.animate().alpha(1).setDuration(200).start();
} else {
pagedownButton.setVisibility(View.VISIBLE);
}
}
} else {
if (pagedownButton.getVisibility() == View.VISIBLE) {
if (android.os.Build.VERSION.SDK_INT >= 16 && animated) {
pagedownButton.animate().alpha(0).withEndAction(new Runnable() {
@Override
public void run() {
pagedownButton.setVisibility(View.GONE);
}
}).setDuration(200).start();
} else {
pagedownButton.setVisibility(View.GONE);
}
}
}
}
2013-10-25 17:19:00 +02:00
@Override
public void onAnimationEnd() {
super.onAnimationEnd();
if (invalidateAfterAnimation) {
if (chatListView != null) {
updateVisibleRows();
}
}
}
@Override
public void willBeHidden() {
super.willBeHidden();
paused = true;
}
private void updateSecretStatus() {
if (bottomOverlay == null) {
return;
}
if (currentEncryptedChat == null || secretViewStatusTextView == null) {
bottomOverlay.setVisibility(View.GONE);
return;
}
boolean hideKeyboard = false;
if (currentEncryptedChat instanceof TLRPC.TL_encryptedChatRequested) {
bottomOverlayText.setText(LocaleController.getString("EncryptionProcessing", R.string.EncryptionProcessing));
2013-10-25 17:19:00 +02:00
bottomOverlay.setVisibility(View.VISIBLE);
hideKeyboard = true;
} else if (currentEncryptedChat instanceof TLRPC.TL_encryptedChatWaiting) {
bottomOverlayText.setText(Html.fromHtml(LocaleController.formatString("AwaitingEncryption", R.string.AwaitingEncryption, "<b>" + currentUser.first_name + "</b>")));
2013-10-25 17:19:00 +02:00
bottomOverlay.setVisibility(View.VISIBLE);
hideKeyboard = true;
} else if (currentEncryptedChat instanceof TLRPC.TL_encryptedChatDiscarded) {
bottomOverlayText.setText(LocaleController.getString("EncryptionRejected", R.string.EncryptionRejected));
2013-10-25 17:19:00 +02:00
bottomOverlay.setVisibility(View.VISIBLE);
hideKeyboard = true;
} else if (currentEncryptedChat instanceof TLRPC.TL_encryptedChat) {
bottomOverlay.setVisibility(View.GONE);
}
if (hideKeyboard) {
hideEmojiPopup();
if (parentActivity != null) {
Utilities.hideKeyboard(parentActivity.getCurrentFocus());
}
}
2013-11-04 13:31:01 +01:00
if (parentActivity != null) {
2013-12-20 20:25:49 +01:00
parentActivity.supportInvalidateOptionsMenu();
2013-11-04 13:31:01 +01:00
}
2013-10-25 17:19:00 +02:00
}
private void addToLoadingFile(String path, ProgressBar bar) {
ArrayList<ProgressBar> arr = loadingFile.get(path);
if (arr == null) {
arr = new ArrayList<ProgressBar>();
loadingFile.put(path, arr);
}
arr.add(bar);
}
private void removeFromloadingFile(String path, ProgressBar bar) {
ArrayList<ProgressBar> arr = loadingFile.get(path);
if (arr != null) {
arr.remove(bar);
}
}
private void updateOnlineCount() {
if (info == null) {
return;
}
onlineCount = 0;
int currentTime = ConnectionsManager.getInstance().getCurrentTime();
2013-10-25 17:19:00 +02:00
for (TLRPC.TL_chatParticipant participant : info.participants) {
TLRPC.User user = MessagesController.getInstance().users.get(participant.user_id);
if (user != null && user.status != null && (user.status.expires > currentTime || user.id == UserConfig.clientUserId) && user.status.expires > 10000) {
2013-10-25 17:19:00 +02:00
onlineCount++;
}
}
updateSubtitle();
}
private int getMessageType(MessageObject messageObject) {
if (currentEncryptedChat == null) {
2013-12-20 20:25:49 +01:00
if (messageObject.messageOwner.id <= 0 && messageObject.messageOwner.out) {
2013-10-25 17:19:00 +02:00
if (messageObject.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SEND_ERROR) {
return 0;
} else {
return -1;
}
} else {
2013-12-20 20:25:49 +01:00
if (messageObject.type == 15) {
return -1;
} else if (messageObject.type == 10 || messageObject.type == 11) {
if (messageObject.messageOwner.id == 0) {
return -1;
}
2013-10-25 17:19:00 +02:00
return 1;
} else {
if (!(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaEmpty)) {
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaVideo ||
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto ||
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
boolean canSave = false;
if (messageObject.messageOwner.attachPath != null && messageObject.messageOwner.attachPath.length() != 0) {
File f = new File(messageObject.messageOwner.attachPath);
if (f.exists()) {
canSave = true;
}
}
if (!canSave) {
File f = new File(Utilities.getCacheDir(), messageObject.getFileName());
if (f.exists()) {
canSave = true;
}
}
if (canSave) {
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
String mime = messageObject.messageOwner.media.document.mime_type;
if (mime != null && mime.equals("text/xml")) {
return 5;
}
}
return 4;
}
}
2013-10-25 17:19:00 +02:00
return 2;
} else {
return 3;
}
}
}
} else {
2013-12-20 20:25:49 +01:00
if (messageObject.type == 15) {
return -1;
} else if (messageObject.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SEND_ERROR) {
2013-10-25 17:19:00 +02:00
return 0;
} else if (messageObject.type == 10 || messageObject.type == 11 || messageObject.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SENDING) {
2013-12-20 20:25:49 +01:00
if (messageObject.messageOwner.id == 0) {
return -1;
}
2013-10-25 17:19:00 +02:00
return 1;
} else {
if (!(messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaEmpty)) {
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaVideo ||
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaPhoto ||
messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
boolean canSave = false;
if (messageObject.messageOwner.attachPath != null && messageObject.messageOwner.attachPath.length() != 0) {
File f = new File(messageObject.messageOwner.attachPath);
if (f.exists()) {
canSave = true;
}
}
if (!canSave) {
File f = new File(Utilities.getCacheDir(), messageObject.getFileName());
if (f.exists()) {
canSave = true;
}
}
if (canSave) {
if (messageObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument) {
String mime = messageObject.messageOwner.media.document.mime_type;
if (mime != null && mime.equals("text/xml")) {
return 5;
}
}
//return 4;
}
}
2013-10-25 17:19:00 +02:00
return 2;
} else {
return 3;
}
}
}
}
private void addToSelectedMessages(MessageObject messageObject) {
if (selectedMessagesIds.containsKey(messageObject.messageOwner.id)) {
selectedMessagesIds.remove(messageObject.messageOwner.id);
if (messageObject.type == 0) {
2013-10-25 17:19:00 +02:00
selectedMessagesCanCopyIds.remove(messageObject.messageOwner.id);
}
} else {
selectedMessagesIds.put(messageObject.messageOwner.id, messageObject);
if (messageObject.type == 0) {
2013-10-25 17:19:00 +02:00
selectedMessagesCanCopyIds.put(messageObject.messageOwner.id, messageObject);
}
}
if (mActionMode != null && mActionMode.getMenu() != null) {
mActionMode.getMenu().findItem(copy).setVisible(selectedMessagesCanCopyIds.size() != 0);
2013-10-25 17:19:00 +02:00
}
}
private void processRowSelect(View view) {
View parentView = getRowParentView(view);
if (parentView == null) {
return;
}
MessageObject message = null;
if (view instanceof ChatBaseCell) {
message = ((ChatBaseCell)view).getMessageObject();
} else {
ChatListRowHolderEx holder = (ChatListRowHolderEx)parentView.getTag();
message = holder.message;
}
2013-10-25 17:19:00 +02:00
if (getMessageType(message) < 2) {
return;
}
addToSelectedMessages(message);
updateActionModeTitle();
updateVisibleRows();
}
private void updateActionModeTitle() {
if (mActionMode == null) {
return;
}
if (selectedMessagesIds.isEmpty()) {
mActionMode.finish();
} else {
mActionMode.setTitle(String.format("%s %d", LocaleController.getString("Selected", R.string.Selected), selectedMessagesIds.size()));
2013-10-25 17:19:00 +02:00
}
}
private void updateSubtitle() {
if (isFinish) {
return;
}
2013-12-20 20:25:49 +01:00
if (paused || getActivity() == null) {
2013-10-25 17:19:00 +02:00
return;
}
ActionBar actionBar = parentActivity.getSupportActionBar();
2013-12-20 20:25:49 +01:00
TextView title = (TextView)parentActivity.findViewById(R.id.action_bar_title);
2013-10-25 17:19:00 +02:00
if (title == null) {
final int subtitleId = parentActivity.getResources().getIdentifier("action_bar_title", "id", "android");
title = (TextView)parentActivity.findViewById(subtitleId);
}
if (currentChat != null) {
2013-12-20 20:25:49 +01:00
actionBar.setTitle(currentChat.title);
2013-10-25 17:19:00 +02:00
if (title != null) {
title.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
title.setCompoundDrawablePadding(0);
}
} else if (currentUser != null) {
if (currentUser.id / 1000 != 333 && ContactsController.getInstance().contactsDict.get(currentUser.id) == null && (ContactsController.getInstance().contactsDict.size() != 0 || !ContactsController.getInstance().loadingContacts)) {
2013-10-25 17:19:00 +02:00
if (currentUser.phone != null && currentUser.phone.length() != 0) {
actionBar.setTitle(PhoneFormat.getInstance().format("+" + currentUser.phone));
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
actionBar.setTitle(Utilities.formatName(currentUser.first_name, currentUser.last_name));
2013-10-25 17:19:00 +02:00
}
} else {
2013-12-20 20:25:49 +01:00
actionBar.setTitle(Utilities.formatName(currentUser.first_name, currentUser.last_name));
2013-10-25 17:19:00 +02:00
}
if (title != null) {
if (currentEncryptedChat != null) {
2013-12-20 20:25:49 +01:00
title.setCompoundDrawablesWithIntrinsicBounds(R.drawable.ic_lock_white, 0, 0, 0);
2013-12-26 17:46:13 +01:00
title.setCompoundDrawablePadding(Utilities.dp(4));
2013-10-25 17:19:00 +02:00
} else {
title.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
title.setCompoundDrawablePadding(0);
}
}
}
CharSequence printString = MessagesController.getInstance().printingStrings.get(dialog_id);
2013-10-25 17:19:00 +02:00
if (printString == null || printString.length() == 0) {
lastPrintString = null;
2013-10-25 17:19:00 +02:00
setTypingAnimation(false);
if (currentChat != null) {
2013-12-20 20:25:49 +01:00
if (currentChat instanceof TLRPC.TL_chatForbidden) {
actionBar.setSubtitle(LocaleController.getString("YouWereKicked", R.string.YouWereKicked));
2013-12-20 20:25:49 +01:00
} else if (currentChat.left) {
actionBar.setSubtitle(LocaleController.getString("YouLeft", R.string.YouLeft));
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
if (onlineCount > 0 && currentChat.participants_count != 0) {
actionBar.setSubtitle(String.format("%d %s, %d %s", currentChat.participants_count, LocaleController.getString("Members", R.string.Members), onlineCount, LocaleController.getString("Online", R.string.Online)));
2013-12-20 20:25:49 +01:00
} else {
actionBar.setSubtitle(String.format("%d %s", currentChat.participants_count, LocaleController.getString("Members", R.string.Members)));
2013-12-20 20:25:49 +01:00
}
2013-10-25 17:19:00 +02:00
}
} else if (currentUser != null) {
if (currentUser.status == null) {
actionBar.setSubtitle(LocaleController.getString("Offline", R.string.Offline));
2013-10-25 17:19:00 +02:00
} else {
int currentTime = ConnectionsManager.getInstance().getCurrentTime();
if (currentUser.status.expires > currentTime) {
actionBar.setSubtitle(LocaleController.getString("Online", R.string.Online));
2013-10-25 17:19:00 +02:00
} else {
if (currentUser.status.expires <= 10000) {
actionBar.setSubtitle(LocaleController.getString("Invisible", R.string.Invisible));
2013-10-25 17:19:00 +02:00
} else {
2014-03-25 01:25:32 +01:00
actionBar.setSubtitle(LocaleController.formatDateOnline(currentUser.status.expires));
2013-10-25 17:19:00 +02:00
}
}
}
}
} else {
lastPrintString = printString;
2013-10-25 17:19:00 +02:00
actionBar.setSubtitle(printString);
setTypingAnimation(true);
}
}
private void checkAndUpdateAvatar() {
TLRPC.FileLocation newPhoto = null;
int placeHolderId = 0;
if (currentUser != null) {
currentUser = MessagesController.getInstance().users.get(currentUser.id);
2013-10-25 17:19:00 +02:00
if (currentUser.photo != null) {
newPhoto = currentUser.photo.photo_small;
}
placeHolderId = Utilities.getUserAvatarForId(currentUser.id);
} else if (currentChat != null) {
currentChat = MessagesController.getInstance().chats.get(currentChat.id);
2013-10-25 17:19:00 +02:00
if (currentChat.photo != null) {
newPhoto = currentChat.photo.photo_small;
}
placeHolderId = Utilities.getGroupAvatarForId(currentChat.id);
}
if (avatarImageView != null) {
avatarImageView.setImage(newPhoto, "50_50", placeHolderId);
}
}
@Override
2013-12-20 20:25:49 +01:00
public void onSizeChanged(int height) {
2013-10-25 17:19:00 +02:00
Rect localRect = new Rect();
parentActivity.getWindow().getDecorView().getWindowVisibleDisplayFrame(localRect);
2013-12-20 20:25:49 +01:00
WindowManager manager = (WindowManager) ApplicationLoader.applicationContext.getSystemService(Activity.WINDOW_SERVICE);
2014-03-10 10:27:49 +01:00
if (manager == null || manager.getDefaultDisplay() == null) {
return;
}
2013-12-20 20:25:49 +01:00
int rotation = manager.getDefaultDisplay().getRotation();
if (height > Emoji.scale(50)) {
if (rotation == Surface.ROTATION_270 || rotation == Surface.ROTATION_90) {
keyboardHeightLand = height;
parentActivity.getSharedPreferences("emoji", 0).edit().putInt("kbd_height_land3", keyboardHeightLand).commit();
} else {
keyboardHeight = height;
parentActivity.getSharedPreferences("emoji", 0).edit().putInt("kbd_height", keyboardHeight).commit();
}
}
if (emojiPopup != null && emojiPopup.isShowing()) {
WindowManager wm = (WindowManager) parentActivity.getSystemService(Context.WINDOW_SERVICE);
final WindowManager.LayoutParams layoutParams = (WindowManager.LayoutParams)emojiPopup.getContentView().getLayoutParams();
layoutParams.width = contentView.getWidth();
if (rotation == Surface.ROTATION_270 || rotation == Surface.ROTATION_90) {
layoutParams.height = keyboardHeightLand;
} else {
layoutParams.height = keyboardHeight;
}
wm.updateViewLayout(emojiPopup.getContentView(), layoutParams);
if (!keyboardVisible) {
contentView.post(new Runnable() {
@Override
public void run() {
contentView.setPadding(0, 0, 0, layoutParams.height);
contentView.requestLayout();
2013-12-20 20:25:49 +01:00
}
});
}
}
boolean oldValue = keyboardVisible;
keyboardVisible = height > 0;
if (keyboardVisible && contentView.getPaddingBottom() > 0) {
showEmojiPopup(false);
} else if (!keyboardVisible && keyboardVisible != oldValue && emojiPopup != null && emojiPopup.isShowing()) {
showEmojiPopup(false);
2013-10-25 17:19:00 +02:00
}
}
@Override
public void onActivityResultFragment(int requestCode, int resultCode, Intent data) {
2013-10-25 17:19:00 +02:00
if (resultCode == Activity.RESULT_OK) {
if (requestCode == 0) {
Utilities.addMediaToGallery(currentPicturePath);
processSendingPhoto(currentPicturePath, null);
2013-10-25 17:19:00 +02:00
currentPicturePath = null;
} else if (requestCode == 1) {
if (data == null) {
return;
}
processSendingPhoto(null, data.getData());
2013-10-25 17:19:00 +02:00
} else if (requestCode == 2) {
String videoPath = null;
if (data != null) {
Uri uri = data.getData();
boolean fromCamera = false;
if (uri != null && uri.getScheme() != null) {
fromCamera = uri.getScheme().contains("file");
} else if (uri == null) {
fromCamera = true;
}
if (fromCamera) {
if (uri != null) {
videoPath = uri.getPath();
} else {
videoPath = currentPicturePath;
}
Utilities.addMediaToGallery(currentPicturePath);
currentPicturePath = null;
} else {
2013-12-20 20:25:49 +01:00
try {
videoPath = Utilities.getPath(uri);
2013-12-20 20:25:49 +01:00
} catch (Exception e) {
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
}
}
if (videoPath == null && currentPicturePath != null) {
File f = new File(currentPicturePath);
if (f.exists()) {
videoPath = currentPicturePath;
}
currentPicturePath = null;
}
processSendingVideo(videoPath);
}
}
}
@Override
public void saveSelfArgs(Bundle args) {
if (currentPicturePath != null) {
args.putString("path", currentPicturePath);
}
}
@Override
public void restoreSelfArgs(Bundle args) {
currentPicturePath = args.getString("path");
}
2013-10-25 17:19:00 +02:00
public boolean processSendingText(String text) {
text = text.replaceAll("\n\n+", "\n\n");
text = text.replaceAll(" +", " ");
if (text.length() != 0) {
int count = (int)Math.ceil(text.length() / 2048.0f);
for (int a = 0; a < count; a++) {
String mess = text.substring(a * 2048, Math.min((a + 1) * 2048, text.length()));
MessagesController.getInstance().sendMessage(mess, dialog_id);
2013-10-25 17:19:00 +02:00
}
return true;
}
return false;
}
public void processSendingPhoto(String imageFilePath, Uri imageUri) {
if ((imageFilePath == null || imageFilePath.length() == 0) && imageUri == null) {
2013-10-25 17:19:00 +02:00
return;
}
TLRPC.TL_photo photo = MessagesController.getInstance().generatePhotoSizes(imageFilePath, imageUri);
2013-10-25 17:19:00 +02:00
if (photo != null) {
MessagesController.getInstance().sendMessage(photo, dialog_id);
2013-10-25 17:19:00 +02:00
if (chatListView != null) {
chatListView.setSelection(messages.size() + 1);
}
scrollToTopOnResume = true;
}
}
public void processSendingDocument(String documentFilePath) {
if (documentFilePath == null || documentFilePath.length() == 0) {
return;
}
File f = new File(documentFilePath);
if (!f.exists() || f.length() == 0) {
return;
}
String name = f.getName();
if (name == null) {
name = "noname";
}
String ext = "";
int idx = documentFilePath.lastIndexOf(".");
if (idx != -1) {
ext = documentFilePath.substring(idx + 1);
}
TLRPC.TL_document document = new TLRPC.TL_document();
document.id = 0;
document.user_id = UserConfig.clientUserId;
document.date = ConnectionsManager.getInstance().getCurrentTime();
document.file_name = name;
document.size = (int)f.length();
document.dc_id = 0;
document.path = documentFilePath;
if (ext.length() != 0) {
MimeTypeMap myMime = MimeTypeMap.getSingleton();
String mimeType = myMime.getMimeTypeFromExtension(ext.toLowerCase());
if (mimeType != null) {
document.mime_type = mimeType;
} else {
document.mime_type = "application/octet-stream";
}
} else {
document.mime_type = "application/octet-stream";
}
if (document.mime_type.equals("image/gif")) {
try {
Bitmap bitmap = FileLoader.loadBitmap(f.getAbsolutePath(), null, 90, 90);
if (bitmap != null) {
document.thumb = FileLoader.scaleAndSaveImage(bitmap, 90, 90, 55, currentEncryptedChat != null);
document.thumb.type = "s";
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
}
if (document.thumb == null) {
document.thumb = new TLRPC.TL_photoSizeEmpty();
document.thumb.type = "s";
}
MessagesController.getInstance().sendMessage(document, dialog_id);
}
2013-12-20 20:25:49 +01:00
public void processSendingVideo(final String videoPath) {
if (videoPath == null || videoPath.length() == 0) {
2013-10-25 17:19:00 +02:00
return;
}
Bitmap thumb = ThumbnailUtils.createVideoThumbnail(videoPath, MediaStore.Video.Thumbnails.MINI_KIND);
2013-11-04 13:31:01 +01:00
TLRPC.PhotoSize size = FileLoader.scaleAndSaveImage(thumb, 90, 90, 55, currentEncryptedChat != null);
2013-10-25 17:19:00 +02:00
if (size == null) {
return;
}
size.type = "s";
TLRPC.TL_video video = new TLRPC.TL_video();
video.thumb = size;
video.caption = "";
2013-12-26 12:43:37 +01:00
video.id = 0;
2013-10-25 17:19:00 +02:00
video.path = videoPath;
File temp = new File(videoPath);
if (temp != null && temp.exists()) {
video.size = (int)temp.length();
}
UserConfig.lastLocalId--;
2013-11-04 13:31:01 +01:00
UserConfig.saveConfig(false);
2013-10-25 17:19:00 +02:00
2013-12-20 20:25:49 +01:00
MediaPlayer mp = MediaPlayer.create(ApplicationLoader.applicationContext, Uri.fromFile(new File(videoPath)));
if (mp == null) {
return;
}
2013-10-25 17:19:00 +02:00
video.duration = (int)Math.ceil(mp.getDuration() / 1000.0f);
video.w = mp.getVideoWidth();
video.h = mp.getVideoHeight();
mp.release();
MediaStore.Video.Media media = new MediaStore.Video.Media();
MessagesController.getInstance().sendMessage(video, dialog_id);
2013-10-25 17:19:00 +02:00
if (chatListView != null) {
chatListView.setSelection(messages.size() + 1);
}
scrollToTopOnResume = true;
}
2013-12-20 20:25:49 +01:00
private void removeUnreadPlane(boolean reload) {
if (unreadMessageObject != null) {
messages.remove(unreadMessageObject);
unread_end_reached = true;
first_unread_id = 0;
last_unread_id = 0;
unread_to_load = 0;
unreadMessageObject = null;
if (reload) {
chatAdapter.notifyDataSetChanged();
}
}
}
2013-10-25 17:19:00 +02:00
@SuppressWarnings("unchecked")
@Override
public void didReceivedNotification(int id, final Object... args) {
if (id == MessagesController.messagesDidLoaded) {
long did = (Long)args[0];
if (did == dialog_id) {
int offset = (Integer)args[1];
int count = (Integer)args[2];
boolean isCache = (Boolean)args[4];
2013-12-20 20:25:49 +01:00
int fnid = (Integer)args[5];
int last_unread_date = (Integer)args[8];
boolean forwardLoad = (Boolean)args[9];
2013-10-25 17:19:00 +02:00
boolean wasUnread = false;
2013-12-20 20:25:49 +01:00
boolean positionToUnread = false;
if (fnid != 0) {
first_unread_id = (Integer)args[5];
last_unread_id = (Integer)args[6];
unread_to_load = (Integer)args[7];
positionToUnread = true;
}
2013-10-25 17:19:00 +02:00
ArrayList<MessageObject> messArr = (ArrayList<MessageObject>)args[3];
int newRowsCount = 0;
2013-12-20 20:25:49 +01:00
unread_end_reached = last_unread_id == 0;
for (int a = 0; a < messArr.size(); a++) {
MessageObject obj = messArr.get(a);
if (messagesDict.containsKey(obj.messageOwner.id)) {
continue;
}
2013-10-25 17:19:00 +02:00
if (obj.messageOwner.id > 0) {
maxMessageId = Math.min(obj.messageOwner.id, maxMessageId);
2013-12-20 20:25:49 +01:00
minMessageId = Math.max(obj.messageOwner.id, minMessageId);
} else if (currentEncryptedChat != null) {
maxMessageId = Math.max(obj.messageOwner.id, maxMessageId);
2013-12-20 20:25:49 +01:00
minMessageId = Math.min(obj.messageOwner.id, minMessageId);
2013-10-25 17:19:00 +02:00
}
maxDate = Math.max(maxDate, obj.messageOwner.date);
if (minDate == 0 || obj.messageOwner.date < minDate) {
minDate = obj.messageOwner.date;
}
if (!obj.messageOwner.out && obj.messageOwner.unread) {
wasUnread = true;
}
messagesDict.put(obj.messageOwner.id, obj);
ArrayList<MessageObject> dayArray = messagesByDays.get(obj.dateKey);
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
if (dayArray == null) {
dayArray = new ArrayList<MessageObject>();
messagesByDays.put(obj.dateKey, dayArray);
TLRPC.Message dateMsg = new TLRPC.Message();
2014-03-25 01:25:32 +01:00
dateMsg.message = LocaleController.formatDateChat(obj.messageOwner.date);
2013-10-25 17:19:00 +02:00
dateMsg.id = 0;
MessageObject dateObj = new MessageObject(dateMsg, null);
dateObj.contentType = dateObj.type = 10;
2013-12-20 20:25:49 +01:00
if (forwardLoad) {
messages.add(0, dateObj);
} else {
messages.add(dateObj);
}
2013-10-25 17:19:00 +02:00
newRowsCount++;
}
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
newRowsCount++;
dayArray.add(obj);
2013-12-20 20:25:49 +01:00
if (forwardLoad) {
messages.add(0, obj);
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
messages.add(messages.size() - 1, obj);
}
if (!forwardLoad) {
if (obj.messageOwner.id == first_unread_id) {
TLRPC.Message dateMsg = new TLRPC.Message();
dateMsg.message = "";
dateMsg.id = 0;
MessageObject dateObj = new MessageObject(dateMsg, null);
dateObj.contentType = dateObj.type = 15;
2013-12-20 20:25:49 +01:00
boolean dateAdded = true;
if (a != messArr.size() - 1) {
MessageObject next = messArr.get(a + 1);
dateAdded = !next.dateKey.equals(obj.dateKey);
}
messages.add(messages.size() - (dateAdded ? 0 : 1), dateObj);
unreadMessageObject = dateObj;
newRowsCount++;
}
if (obj.messageOwner.id == last_unread_id) {
unread_end_reached = true;
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (unread_end_reached) {
first_unread_id = 0;
last_unread_id = 0;
}
2013-10-25 17:19:00 +02:00
2013-12-20 20:25:49 +01:00
if (forwardLoad) {
if (messArr.size() != count) {
unread_end_reached = true;
first_unread_id = 0;
last_unread_id = 0;
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
chatAdapter.notifyDataSetChanged();
loadingForward = false;
} else {
if (messArr.size() != count) {
if (isCache) {
cacheEndReaced = true;
if (currentEncryptedChat != null) {
endReached = true;
}
} else {
cacheEndReaced = true;
endReached = true;
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
loading = false;
2013-10-25 17:19:00 +02:00
2013-12-20 20:25:49 +01:00
if (chatListView != null) {
if (first || scrollToTopOnResume) {
chatAdapter.notifyDataSetChanged();
if (positionToUnread && unreadMessageObject != null) {
if (messages.get(messages.size() - 1) == unreadMessageObject) {
2013-12-26 17:46:13 +01:00
chatListView.setSelectionFromTop(0, Utilities.dp(-11));
2013-12-20 20:25:49 +01:00
} else {
2013-12-26 17:46:13 +01:00
chatListView.setSelectionFromTop(messages.size() - messages.indexOf(unreadMessageObject), Utilities.dp(-11));
2013-12-20 20:25:49 +01:00
}
ViewTreeObserver obs = chatListView.getViewTreeObserver();
obs.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
if (messages.get(messages.size() - 1) == unreadMessageObject) {
2013-12-26 17:46:13 +01:00
chatListView.setSelectionFromTop(0, Utilities.dp(-11));
2013-12-20 20:25:49 +01:00
} else {
2013-12-26 17:46:13 +01:00
chatListView.setSelectionFromTop(messages.size() - messages.indexOf(unreadMessageObject), Utilities.dp(-11));
2013-12-20 20:25:49 +01:00
}
chatListView.getViewTreeObserver().removeOnPreDrawListener(this);
return false;
}
});
chatListView.invalidate();
showPagedownButton(true, true);
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
chatListView.post(new Runnable() {
@Override
public void run() {
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
2013-12-20 20:25:49 +01:00
}
});
}
} else {
int firstVisPos = chatListView.getLastVisiblePosition();
View firstVisView = chatListView.getChildAt(chatListView.getChildCount() - 1);
int top = ((firstVisView == null) ? 0 : firstVisView.getTop()) - chatListView.getPaddingTop();
chatAdapter.notifyDataSetChanged();
chatListView.setSelectionFromTop(firstVisPos + newRowsCount, top);
}
if (paused) {
scrollToTopOnResume = true;
if (positionToUnread && unreadMessageObject != null) {
scrollToTopUnReadOnResume = true;
2013-10-25 17:19:00 +02:00
}
}
2013-12-20 20:25:49 +01:00
if (first) {
if (chatListView.getEmptyView() == null) {
if (currentEncryptedChat == null) {
chatListView.setEmptyView(emptyView);
} else {
chatListView.setEmptyView(secretChatPlaceholder);
}
}
}
} else {
scrollToTopOnResume = true;
if (positionToUnread && unreadMessageObject != null) {
scrollToTopUnReadOnResume = true;
}
2013-10-25 17:19:00 +02:00
}
}
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
if (first && messages.size() > 0) {
2013-12-20 20:25:49 +01:00
if (last_unread_id != 0) {
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, last_unread_id, 0, last_unread_date, wasUnread);
2013-12-20 20:25:49 +01:00
} else {
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, minMessageId, 0, maxDate, wasUnread);
2013-12-20 20:25:49 +01:00
}
2013-10-25 17:19:00 +02:00
first = false;
}
if (progressView != null) {
progressView.setVisibility(View.GONE);
}
}
} else if (id == 999) {
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
chatListView.invalidateViews();
}
}
if (emojiView != null) {
emojiView.invalidateViews();
}
} else if (id == MessagesController.updateInterfaces) {
int updateMask = (Integer)args[0];
if ((updateMask & MessagesController.UPDATE_MASK_NAME) != 0 || (updateMask & MessagesController.UPDATE_MASK_STATUS) != 0 || (updateMask & MessagesController.UPDATE_MASK_CHAT_NAME) != 0 || (updateMask & MessagesController.UPDATE_MASK_CHAT_MEMBERS) != 0) {
2013-10-25 17:19:00 +02:00
updateSubtitle();
updateOnlineCount();
}
if ((updateMask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (updateMask & MessagesController.UPDATE_MASK_CHAT_AVATAR) != 0 || (updateMask & MessagesController.UPDATE_MASK_NAME) != 0) {
2013-10-25 17:19:00 +02:00
checkAndUpdateAvatar();
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
updateVisibleRows();
}
}
}
if ((updateMask & MessagesController.UPDATE_MASK_USER_PRINT) != 0) {
CharSequence printString = MessagesController.getInstance().printingStrings.get(dialog_id);
if (lastPrintString != null && printString == null || lastPrintString == null && printString != null || lastPrintString != null && printString != null && !lastPrintString.equals(printString)) {
updateSubtitle();
}
}
if ((updateMask & MessagesController.UPDATE_MASK_USER_PHONE) != 0) {
updateContactStatus();
}
2013-10-25 17:19:00 +02:00
} else if (id == MessagesController.didReceivedNewMessages) {
long did = (Long)args[0];
if (did == dialog_id) {
boolean updateChat = false;
2013-12-20 20:25:49 +01:00
ArrayList<MessageObject> arr = (ArrayList<MessageObject>)args[1];
if (!unread_end_reached) {
int currentMaxDate = Integer.MIN_VALUE;
int currentMinMsgId = Integer.MIN_VALUE;
if (currentEncryptedChat != null) {
currentMinMsgId = Integer.MAX_VALUE;
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
boolean currentMarkAsRead = false;
2013-10-25 17:19:00 +02:00
2013-12-20 20:25:49 +01:00
for (MessageObject obj : arr) {
2014-03-10 10:27:49 +01:00
if (currentEncryptedChat != null && obj.messageOwner.action != null && obj.messageOwner.action instanceof TLRPC.TL_messageActionTTLChange && timerButton != null) {
timerButton.setTime(obj.messageOwner.action.ttl);
}
if (obj.messageOwner.out && obj.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SENDING) {
scrollToLastMessage();
return;
}
2013-12-20 20:25:49 +01:00
if (messagesDict.containsKey(obj.messageOwner.id)) {
continue;
}
currentMaxDate = Math.max(currentMaxDate, obj.messageOwner.date);
if (obj.messageOwner.id > 0) {
currentMinMsgId = Math.max(obj.messageOwner.id, currentMinMsgId);
} else if (currentEncryptedChat != null) {
currentMinMsgId = Math.min(obj.messageOwner.id, currentMinMsgId);
}
if (!obj.messageOwner.out && obj.messageOwner.unread) {
unread_to_load++;
currentMarkAsRead = true;
}
if (obj.type == 10 || obj.type == 11) {
updateChat = true;
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (currentMarkAsRead) {
if (paused) {
readWhenResume = true;
readWithDate = currentMaxDate;
readWithMid = currentMinMsgId;
} else {
if (messages.size() > 0) {
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, currentMinMsgId, 0, currentMaxDate, true);
}
2013-12-20 20:25:49 +01:00
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
updateVisibleRows();
} else {
boolean markAsRead = false;
int oldCount = messages.size();
for (MessageObject obj : arr) {
2014-03-10 10:27:49 +01:00
if (currentEncryptedChat != null && obj.messageOwner.action != null && obj.messageOwner.action instanceof TLRPC.TL_messageActionTTLChange && timerButton != null) {
timerButton.setTime(obj.messageOwner.action.ttl);
}
2013-12-20 20:25:49 +01:00
if (messagesDict.containsKey(obj.messageOwner.id)) {
continue;
}
if (minDate == 0 || obj.messageOwner.date < minDate) {
minDate = obj.messageOwner.date;
}
if (obj.messageOwner.attachPath != null && obj.messageOwner.attachPath.length() != 0) {
progressBarMap.put(obj.messageOwner.attachPath, null);
}
if (obj.messageOwner.out) {
removeUnreadPlane(false);
}
if (!obj.messageOwner.out && unreadMessageObject != null) {
unread_to_load++;
}
if (obj.messageOwner.id > 0) {
maxMessageId = Math.min(obj.messageOwner.id, maxMessageId);
minMessageId = Math.max(obj.messageOwner.id, minMessageId);
} else if (currentEncryptedChat != null) {
maxMessageId = Math.max(obj.messageOwner.id, maxMessageId);
2013-12-20 20:25:49 +01:00
minMessageId = Math.min(obj.messageOwner.id, minMessageId);
}
maxDate = Math.max(maxDate, obj.messageOwner.date);
messagesDict.put(obj.messageOwner.id, obj);
ArrayList<MessageObject> dayArray = messagesByDays.get(obj.dateKey);
if (dayArray == null) {
dayArray = new ArrayList<MessageObject>();
messagesByDays.put(obj.dateKey, dayArray);
TLRPC.Message dateMsg = new TLRPC.Message();
2014-03-25 01:25:32 +01:00
dateMsg.message = LocaleController.formatDateChat(obj.messageOwner.date);
2013-12-20 20:25:49 +01:00
dateMsg.id = 0;
MessageObject dateObj = new MessageObject(dateMsg, null);
dateObj.contentType = dateObj.type = 10;
2013-12-20 20:25:49 +01:00
messages.add(0, dateObj);
}
if (!obj.messageOwner.out && obj.messageOwner.unread) {
obj.messageOwner.unread = false;
markAsRead = true;
}
dayArray.add(0, obj);
messages.add(0, obj);
if (obj.type == 10 || obj.type == 11) {
updateChat = true;
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (progressView != null) {
progressView.setVisibility(View.GONE);
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (chatAdapter != null) {
chatAdapter.notifyDataSetChanged();
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
scrollToTopOnResume = true;
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (chatListView != null && chatAdapter != null) {
int lastVisible = chatListView.getLastVisiblePosition();
if (endReached) {
lastVisible++;
}
if (lastVisible == oldCount) {
if (paused) {
scrollToTopOnResume = true;
} else {
chatListView.post(new Runnable() {
@Override
public void run() {
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
2013-12-20 20:25:49 +01:00
}
});
}
} else {
showPagedownButton(true, true);
2013-10-25 17:19:00 +02:00
}
} else {
scrollToTopOnResume = true;
}
2013-12-20 20:25:49 +01:00
if (markAsRead) {
if (paused) {
readWhenResume = true;
readWithDate = maxDate;
readWithMid = minMessageId;
} else {
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, minMessageId, 0, maxDate, true);
2013-12-20 20:25:49 +01:00
}
}
}
if (updateChat) {
updateSubtitle();
checkAndUpdateAvatar();
2013-10-25 17:19:00 +02:00
}
}
} else if (id == MessagesController.closeChats) {
2013-11-04 13:31:01 +01:00
if (messsageEditText != null && messsageEditText.isFocused()) {
2013-10-25 17:19:00 +02:00
Utilities.hideKeyboard(messsageEditText);
}
removeSelfFromStack();
} else if (id == MessagesController.messagesReaded) {
ArrayList<Integer> markAsReadMessages = (ArrayList<Integer>)args[0];
boolean updated = false;
for (Integer ids : markAsReadMessages) {
MessageObject obj = messagesDict.get(ids);
if (obj != null) {
obj.messageOwner.unread = false;
updated = true;
}
}
if (updated) {
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
updateVisibleRows();
}
}
}
} else if (id == MessagesController.messagesDeleted) {
ArrayList<Integer> markAsDeletedMessages = (ArrayList<Integer>)args[0];
boolean updated = false;
for (Integer ids : markAsDeletedMessages) {
MessageObject obj = messagesDict.get(ids);
if (obj != null) {
int index = messages.indexOf(obj);
2013-12-20 20:25:49 +01:00
if (index != -1) {
2013-10-25 17:19:00 +02:00
messages.remove(index);
2013-12-20 20:25:49 +01:00
messagesDict.remove(ids);
ArrayList<MessageObject> dayArr = messagesByDays.get(obj.dateKey);
dayArr.remove(obj);
if (dayArr.isEmpty()) {
messagesByDays.remove(obj.dateKey);
if (index != -1) {
messages.remove(index);
}
}
updated = true;
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
}
}
if (messages.isEmpty()) {
if (!endReached && !loading) {
progressView.setVisibility(View.GONE);
2013-12-20 20:25:49 +01:00
chatListView.setEmptyView(null);
if (currentEncryptedChat == null) {
maxMessageId = Integer.MAX_VALUE;
minMessageId = Integer.MIN_VALUE;
} else {
maxMessageId = Integer.MIN_VALUE;
minMessageId = Integer.MAX_VALUE;
}
2013-12-20 20:25:49 +01:00
maxDate = Integer.MIN_VALUE;
minDate = 0;
MessagesController.getInstance().loadMessages(dialog_id, 0, 30, 0, !cacheEndReaced, minDate, classGuid, false, false);
2013-12-20 20:25:49 +01:00
loading = true;
2013-10-25 17:19:00 +02:00
}
}
if (updated && chatAdapter != null) {
2013-12-20 20:25:49 +01:00
removeUnreadPlane(false);
2013-10-25 17:19:00 +02:00
chatAdapter.notifyDataSetChanged();
}
} else if (id == MessagesController.messageReceivedByServer) {
Integer msgId = (Integer)args[0];
MessageObject obj = messagesDict.get(msgId);
if (obj != null) {
Integer newMsgId = (Integer)args[1];
MessageObject newMsgObj = (MessageObject)args[2];
if (newMsgObj != null) {
obj.messageOwner.media = newMsgObj.messageOwner.media;
}
2013-10-25 17:19:00 +02:00
messagesDict.remove(msgId);
messagesDict.put(newMsgId, obj);
obj.messageOwner.id = newMsgId;
obj.messageOwner.send_state = MessagesController.MESSAGE_SEND_STATE_SENT;
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
updateVisibleRows();
}
}
if (obj.messageOwner.attachPath != null && obj.messageOwner.attachPath.length() != 0) {
progressBarMap.remove(obj.messageOwner.attachPath);
}
}
} else if (id == MessagesController.messageReceivedByAck) {
Integer msgId = (Integer)args[0];
MessageObject obj = messagesDict.get(msgId);
if (obj != null) {
if (obj.messageOwner.attachPath != null && obj.messageOwner.attachPath.length() != 0) {
progressBarMap.remove(obj.messageOwner.attachPath);
}
obj.messageOwner.send_state = MessagesController.MESSAGE_SEND_STATE_SENT;
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
updateVisibleRows();
}
}
}
} else if (id == MessagesController.messageSendError) {
Integer msgId = (Integer)args[0];
MessageObject obj = messagesDict.get(msgId);
if (obj != null) {
obj.messageOwner.send_state = MessagesController.MESSAGE_SEND_STATE_SEND_ERROR;
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
updateVisibleRows();
}
}
if (obj.messageOwner.attachPath != null && obj.messageOwner.attachPath.length() != 0) {
progressBarMap.remove(obj.messageOwner.attachPath);
}
}
} else if (id == 997) {
MessagesController.getInstance().sendMessage((Double) args[0], (Double) args[1], dialog_id);
2013-10-25 17:19:00 +02:00
if (chatListView != null) {
chatListView.setSelection(messages.size() + 1);
scrollToTopOnResume = true;
}
} else if (id == MessagesController.chatInfoDidLoaded) {
int chatId = (Integer)args[0];
if (currentChat != null && chatId == currentChat.id) {
info = (TLRPC.ChatParticipants)args[1];
updateOnlineCount();
}
} else if (id == FileLoader.FileUploadProgressChanged) {
String location = (String)args[0];
boolean enc = (Boolean)args[2];
if (enc && currentEncryptedChat == null) {
return;
} else if (!enc && currentEncryptedChat != null) {
return;
}
2013-10-25 17:19:00 +02:00
ProgressBar bar;
if ((bar = progressBarMap.get(location)) != null) {
Float progress = (Float)args[1];
bar.setProgress((int)(progress * 100));
}
} else if (id == FileLoader.FileDidFailedLoad) {
String location = (String)args[0];
if (loadingFile.containsKey(location)) {
loadingFile.remove(location);
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
updateVisibleRows();
}
}
}
} else if (id == FileLoader.FileDidLoaded) {
String location = (String)args[0];
if (loadingFile.containsKey(location)) {
loadingFile.remove(location);
if (animationInProgress) {
invalidateAfterAnimation = true;
} else {
if (chatListView != null) {
updateVisibleRows();
}
}
}
} else if (id == FileLoader.FileLoadProgressChanged) {
String location = (String)args[0];
ArrayList<ProgressBar> arr = loadingFile.get(location);
if (arr != null) {
Float progress = (Float)args[1];
for (ProgressBar bar : arr) {
bar.setProgress((int)(progress * 100));
}
}
} else if (id == MessagesController.contactsDidLoaded) {
updateContactStatus();
2013-12-20 20:25:49 +01:00
updateSubtitle();
2013-10-25 17:19:00 +02:00
} else if (id == MessagesController.encryptedChatUpdated) {
TLRPC.EncryptedChat chat = (TLRPC.EncryptedChat)args[0];
if (currentEncryptedChat != null && chat.id == currentEncryptedChat.id) {
currentEncryptedChat = chat;
2013-12-20 20:25:49 +01:00
updateContactStatus();
2013-10-25 17:19:00 +02:00
updateSecretStatus();
}
} else if (id == MessagesController.messagesReadedEncrypted) {
int encId = (Integer)args[0];
if (currentEncryptedChat != null && currentEncryptedChat.id == encId) {
int date = (Integer)args[1];
boolean started = false;
for (MessageObject obj : messages) {
2013-12-20 20:25:49 +01:00
if (!obj.messageOwner.out) {
continue;
} else if (obj.messageOwner.out && !obj.messageOwner.unread) {
break;
}
2013-10-25 17:19:00 +02:00
if (obj.messageOwner.date <= date) {
obj.messageOwner.unread = false;
}
}
if (chatListView != null) {
updateVisibleRows();
}
}
} else if (id == MediaController.audioDidReset) {
Integer mid = (Integer)args[0];
if (chatListView != null) {
int count = chatListView.getChildCount();
for (int a = 0; a < count; a++) {
View view = chatListView.getChildAt(a);
if (view instanceof ChatAudioCell) {
ChatAudioCell cell = (ChatAudioCell)view;
if (cell.getMessageObject() != null && cell.getMessageObject().messageOwner.id == mid) {
cell.updateButtonState();
break;
}
}
}
}
} else if (id == MediaController.audioProgressDidChanged) {
Integer mid = (Integer)args[0];
if (chatListView != null) {
int count = chatListView.getChildCount();
for (int a = 0; a < count; a++) {
View view = chatListView.getChildAt(a);
if (view instanceof ChatAudioCell) {
ChatAudioCell cell = (ChatAudioCell)view;
if (cell.getMessageObject() != null && cell.getMessageObject().messageOwner.id == mid) {
cell.updateProgress();
break;
}
}
}
}
} else if (id == MediaController.recordProgressChanged) {
Long time = (Long)args[0] / 1000;
String str = String.format("%02d:%02d", time / 60, time % 60);
if (lastTimeString == null || !lastPrintString.equals(str)) {
if (recordTimeText != null) {
recordTimeText.setText(str);
}
}
} else if (id == MessagesController.removeAllMessagesFromDialog) {
messages.clear();
messagesByDays.clear();
messagesDict.clear();
progressView.setVisibility(View.GONE);
if (currentEncryptedChat == null) {
chatListView.setEmptyView(emptyView);
} else {
chatListView.setEmptyView(secretChatPlaceholder);
}
if (currentEncryptedChat == null) {
maxMessageId = Integer.MAX_VALUE;
minMessageId = Integer.MIN_VALUE;
} else {
maxMessageId = Integer.MIN_VALUE;
minMessageId = Integer.MAX_VALUE;
}
maxDate = Integer.MIN_VALUE;
minDate = 0;
chatAdapter.notifyDataSetChanged();
if (mActionMode != null) {
mActionMode.finish();
mActionMode = null;
}
2014-03-23 01:24:19 +01:00
} else if (id == MediaController.recordStartError || id == MediaController.recordStopped) {
if (recordingAudio) {
recordingAudio = false;
updateAudioRecordIntefrace();
}
} else if (id == MediaController.recordStarted) {
if (!recordingAudio) {
recordingAudio = true;
updateAudioRecordIntefrace();
}
2013-10-25 17:19:00 +02:00
}
}
private void updateContactStatus() {
if (topPanel == null) {
return;
}
if (currentUser == null) {
topPanel.setVisibility(View.GONE);
} else {
if (currentEncryptedChat != null && !(currentEncryptedChat instanceof TLRPC.TL_encryptedChat)
|| currentUser.id / 1000 == 333
|| (currentUser.phone != null && currentUser.phone.length() != 0 &&
ContactsController.getInstance().contactsDict.get(currentUser.id) != null &&
(ContactsController.getInstance().contactsDict.size() != 0 || !ContactsController.getInstance().loadingContacts))) {
2013-10-25 17:19:00 +02:00
topPanel.setVisibility(View.GONE);
} else {
topPanel.setVisibility(View.VISIBLE);
2013-12-26 17:46:13 +01:00
topPanelText.setShadowLayer(1, 0, Utilities.dp(1), 0xff8797a3);
2013-10-25 17:19:00 +02:00
if (isCustomTheme) {
topPlaneClose.setImageResource(R.drawable.ic_msg_btn_cross_custom);
topPanel.setBackgroundResource(R.drawable.top_pane_custom);
} else {
topPlaneClose.setImageResource(R.drawable.ic_msg_btn_cross_custom);
topPanel.setBackgroundResource(R.drawable.top_pane);
}
if (currentUser.phone != null && currentUser.phone.length() != 0) {
if (MessagesController.getInstance().hidenAddToContacts.get(currentUser.id) != null) {
2013-10-25 17:19:00 +02:00
topPanel.setVisibility(View.INVISIBLE);
} else {
topPanelText.setText(LocaleController.getString("AddToContacts", R.string.AddToContacts));
2013-10-25 17:19:00 +02:00
topPlaneClose.setVisibility(View.VISIBLE);
topPlaneClose.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
MessagesController.getInstance().hidenAddToContacts.put(currentUser.id, currentUser);
2013-10-25 17:19:00 +02:00
topPanel.setVisibility(View.GONE);
}
});
topPanel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (parentActivity == null) {
return;
}
2013-10-25 17:19:00 +02:00
ContactAddActivity fragment = new ContactAddActivity();
Bundle args = new Bundle();
args.putInt("user_id", currentUser.id);
fragment.setArguments(args);
((LaunchActivity)parentActivity).presentFragment(fragment, "add_contact_" + currentUser.id, false);
2013-10-25 17:19:00 +02:00
}
});
}
} else {
if (MessagesController.getInstance().hidenAddToContacts.get(currentUser.id) != null) {
2013-10-25 17:19:00 +02:00
topPanel.setVisibility(View.INVISIBLE);
} else {
topPanelText.setText(LocaleController.getString("ShareMyContactInfo", R.string.ShareMyContactInfo));
2013-10-25 17:19:00 +02:00
topPlaneClose.setVisibility(View.GONE);
topPanel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
MessagesController.getInstance().hidenAddToContacts.put(currentUser.id, currentUser);
2013-10-25 17:19:00 +02:00
topPanel.setVisibility(View.GONE);
MessagesController.getInstance().sendMessage(UserConfig.currentUser, dialog_id);
2013-10-25 17:19:00 +02:00
chatListView.post(new Runnable() {
@Override
public void run() {
chatListView.setSelectionFromTop(messages.size() - 1, -100000 - chatListView.getPaddingTop());
2013-10-25 17:19:00 +02:00
}
});
}
});
}
}
}
}
}
private void createEmojiPopup() {
emojiView = new EmojiView(parentActivity);
emojiView.setListener(new EmojiView.Listener() {
public void onBackspace() {
messsageEditText.dispatchKeyEvent(new KeyEvent(0, 67));
}
public void onEmojiSelected(String paramAnonymousString) {
int i = messsageEditText.getSelectionEnd();
CharSequence localCharSequence = Emoji.replaceEmoji(paramAnonymousString);
messsageEditText.setText(messsageEditText.getText().insert(i, localCharSequence));
int j = i + localCharSequence.length();
messsageEditText.setSelection(j, j);
}
});
emojiPopup = new PopupWindow(emojiView);
}
private void showEmojiPopup(boolean show) {
2013-12-20 20:25:49 +01:00
if (parentActivity == null) {
return;
}
2013-10-25 17:19:00 +02:00
InputMethodManager localInputMethodManager = (InputMethodManager)parentActivity.getSystemService("input_method");
if (show) {
if (emojiPopup == null) {
createEmojiPopup();
}
2013-12-20 20:25:49 +01:00
int currentHeight;
WindowManager manager = (WindowManager) ApplicationLoader.applicationContext.getSystemService(Activity.WINDOW_SERVICE);
int rotation = manager.getDefaultDisplay().getRotation();
2013-10-25 17:19:00 +02:00
if (keyboardHeight <= 0) {
2013-12-20 20:25:49 +01:00
keyboardHeight = parentActivity.getSharedPreferences("emoji", 0).getInt("kbd_height", Emoji.scale(200.0f));
}
if (keyboardHeightLand <= 0) {
keyboardHeightLand = parentActivity.getSharedPreferences("emoji", 0).getInt("kbd_height_land3", Emoji.scale(200.0f));
}
if (rotation == Surface.ROTATION_270 || rotation == Surface.ROTATION_90) {
currentHeight = keyboardHeightLand;
} else {
currentHeight = keyboardHeight;
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
emojiPopup.setHeight(View.MeasureSpec.makeMeasureSpec(currentHeight, View.MeasureSpec.EXACTLY));
emojiPopup.setWidth(View.MeasureSpec.makeMeasureSpec(contentView.getWidth(), View.MeasureSpec.EXACTLY));
2013-10-25 17:19:00 +02:00
emojiPopup.showAtLocation(parentActivity.getWindow().getDecorView(), 83, 0, 0);
if (!keyboardVisible) {
2013-12-20 20:25:49 +01:00
contentView.setPadding(0, 0, 0, currentHeight);
2013-10-25 17:19:00 +02:00
emojiButton.setImageResource(R.drawable.ic_msg_panel_hide);
return;
}
emojiButton.setImageResource(R.drawable.ic_msg_panel_kb);
return;
}
2013-12-20 20:25:49 +01:00
if (emojiButton != null) {
emojiButton.setImageResource(R.drawable.ic_msg_panel_smiles);
}
if (emojiPopup != null) {
emojiPopup.dismiss();
}
if (contentView != null) {
contentView.post(new Runnable() {
public void run() {
if (contentView != null) {
contentView.setPadding(0, 0, 0, 0);
}
}
});
}
2013-10-25 17:19:00 +02:00
}
public void hideEmojiPopup() {
if (emojiPopup != null && emojiPopup.isShowing()) {
showEmojiPopup(false);
}
}
@Override
public void applySelfActionBar() {
if (parentActivity == null) {
return;
}
ActionBar actionBar = parentActivity.getSupportActionBar();
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setDisplayShowHomeEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayUseLogoEnabled(false);
actionBar.setDisplayShowCustomEnabled(false);
actionBar.setCustomView(null);
updateSubtitle();
((LaunchActivity)parentActivity).fixBackButton();
2013-10-25 17:19:00 +02:00
}
@Override
public void onResume() {
super.onResume();
if (isFinish) {
return;
}
if (!firstStart && chatAdapter != null) {
chatAdapter.notifyDataSetChanged();
}
MessagesController.getInstance().openned_dialog_id = dialog_id;
2013-10-25 17:19:00 +02:00
if (scrollToTopOnResume) {
2013-12-20 20:25:49 +01:00
if (scrollToTopUnReadOnResume && unreadMessageObject != null) {
if (chatListView != null) {
2013-12-26 17:46:13 +01:00
chatListView.setSelectionFromTop(messages.size() - messages.indexOf(unreadMessageObject), -chatListView.getPaddingTop() - Utilities.dp(7));
2013-12-20 20:25:49 +01:00
}
} else {
if (chatListView != null) {
chatListView.setSelection(messages.size() + 1);
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
scrollToTopUnReadOnResume = false;
2013-10-25 17:19:00 +02:00
scrollToTopOnResume = false;
}
firstStart = false;
swipeOpening = false;
if (emojiView != null) {
emojiView.loadRecents();
}
paused = false;
if (readWhenResume && !messages.isEmpty()) {
readWhenResume = false;
MessagesController.getInstance().markDialogAsRead(dialog_id, messages.get(0).messageOwner.id, readWithMid, 0, readWithDate, true);
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (getActivity() == null) {
2013-10-25 17:19:00 +02:00
return;
}
((LaunchActivity)parentActivity).showActionBar();
((LaunchActivity)parentActivity).updateActionBar();
2013-10-25 17:19:00 +02:00
fixLayout();
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
2013-10-25 17:19:00 +02:00
String lastMessageText = preferences.getString("dialog_" + dialog_id, null);
if (lastMessageText != null) {
SharedPreferences.Editor editor = preferences.edit();
editor.remove("dialog_" + dialog_id);
editor.commit();
ignoreTextChange = true;
messsageEditText.setText(lastMessageText);
messsageEditText.setSelection(messsageEditText.getText().length());
2013-10-25 17:19:00 +02:00
ignoreTextChange = false;
}
2013-12-20 20:25:49 +01:00
if (messsageEditText != null) {
messsageEditText.postDelayed(new Runnable() {
@Override
public void run() {
if (messsageEditText != null) {
messsageEditText.requestFocus();
}
}
}, 400);
}
// if (currentEncryptedChat != null && parentActivity != null) {
// parentActivity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
// }
2013-10-25 17:19:00 +02:00
}
private void setTypingAnimation(boolean start) {
2013-12-20 20:25:49 +01:00
TextView subtitle = (TextView)parentActivity.findViewById(R.id.action_bar_subtitle);
2013-10-25 17:19:00 +02:00
if (subtitle == null) {
final int subtitleId = parentActivity.getResources().getIdentifier("action_bar_subtitle", "id", "android");
subtitle = (TextView)parentActivity.findViewById(subtitleId);
}
if (subtitle != null) {
if (start) {
try {
if (currentChat != null) {
subtitle.setCompoundDrawablesWithIntrinsicBounds(R.drawable.typing_dots_chat, 0, 0, 0);
} else {
subtitle.setCompoundDrawablesWithIntrinsicBounds(R.drawable.typing_dots, 0, 0, 0);
}
2013-12-26 17:46:13 +01:00
subtitle.setCompoundDrawablePadding(Utilities.dp(4));
2013-10-25 17:19:00 +02:00
AnimationDrawable mAnim = (AnimationDrawable)subtitle.getCompoundDrawables()[0];
mAnim.setAlpha(200);
mAnim.start();
} catch (Exception e) {
2013-12-20 20:25:49 +01:00
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
} else {
subtitle.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
}
}
}
@Override
public void onPause() {
super.onPause();
if (mActionMode != null) {
mActionMode.finish();
mActionMode = null;
}
hideEmojiPopup();
paused = true;
MessagesController.getInstance().openned_dialog_id = 0;
2013-10-25 17:19:00 +02:00
if (messsageEditText != null && messsageEditText.length() != 0) {
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
2013-10-25 17:19:00 +02:00
SharedPreferences.Editor editor = preferences.edit();
editor.putString("dialog_" + dialog_id, messsageEditText.getText().toString());
editor.commit();
}
// if (currentEncryptedChat != null && parentActivity != null) {
// parentActivity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE);
// }
2013-10-25 17:19:00 +02:00
}
private void fixLayout() {
if (chatListView != null) {
ViewTreeObserver obs = chatListView.getViewTreeObserver();
obs.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
if (parentActivity == null) {
chatListView.getViewTreeObserver().removeOnPreDrawListener(this);
return false;
}
2013-11-04 13:31:01 +01:00
WindowManager manager = (WindowManager) ApplicationLoader.applicationContext.getSystemService(Activity.WINDOW_SERVICE);
2013-10-25 17:19:00 +02:00
Display display = manager.getDefaultDisplay();
int rotation = Surface.ROTATION_0;
if (display != null) {
rotation = display.getRotation();
}
2013-10-25 17:19:00 +02:00
int height;
int currentActionBarHeight = parentActivity.getSupportActionBar().getHeight();
2013-12-26 17:46:13 +01:00
if (currentActionBarHeight != Utilities.dp(48) && currentActionBarHeight != Utilities.dp(40)) {
2013-10-25 17:19:00 +02:00
height = currentActionBarHeight;
} else {
2013-12-26 17:46:13 +01:00
height = Utilities.dp(48);
2013-10-25 17:19:00 +02:00
if (rotation == Surface.ROTATION_270 || rotation == Surface.ROTATION_90) {
2013-12-26 17:46:13 +01:00
height = Utilities.dp(40);
2013-10-25 17:19:00 +02:00
}
}
if (avatarImageView != null) {
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) avatarImageView.getLayoutParams();
params.width = height;
params.height = height;
avatarImageView.setLayoutParams(params);
}
chatListView.getViewTreeObserver().removeOnPreDrawListener(this);
if (currentEncryptedChat != null) {
2013-12-20 20:25:49 +01:00
TextView title = (TextView) parentActivity.findViewById(R.id.action_bar_title);
2013-10-25 17:19:00 +02:00
if (title == null) {
final int subtitleId = parentActivity.getResources().getIdentifier("action_bar_title", "id", "android");
2013-12-20 20:25:49 +01:00
title = (TextView) parentActivity.findViewById(subtitleId);
2013-10-25 17:19:00 +02:00
}
if (title != null) {
2013-12-20 20:25:49 +01:00
title.setCompoundDrawablesWithIntrinsicBounds(R.drawable.ic_lock_white, 0, 0, 0);
2013-12-26 17:46:13 +01:00
title.setCompoundDrawablePadding(Utilities.dp(4));
2013-10-25 17:19:00 +02:00
}
}
return false;
}
});
}
}
@Override
public void onConfigurationChanged(android.content.res.Configuration newConfig) {
super.onConfigurationChanged(newConfig);
fixLayout();
2013-12-20 20:25:49 +01:00
2013-10-25 17:19:00 +02:00
if (parentActivity != null) {
Display display = parentActivity.getWindowManager().getDefaultDisplay();
if(android.os.Build.VERSION.SDK_INT < 13) {
displaySize.set(display.getWidth(), display.getHeight());
} else {
display.getSize(displaySize);
}
}
}
@Override
2013-12-20 20:25:49 +01:00
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
2013-10-25 17:19:00 +02:00
menu.clear();
SupportMenuItem timeItem = null;
2014-03-10 10:27:49 +01:00
if (currentEncryptedChat != null) {
timeItem = (SupportMenuItem)menu.add(Menu.NONE, chat_enc_timer, Menu.NONE, null);
timeItem.setShowAsAction(SupportMenuItem.SHOW_AS_ACTION_ALWAYS);
timeItem.setActionView(R.layout.chat_header_enc_layout);
2014-03-10 10:27:49 +01:00
}
SubMenu subMenu = menu.addSubMenu(Menu.NONE, chat_menu_attach, Menu.NONE, LocaleController.getString("Attach", R.string.Attach)).setIcon(R.drawable.ic_ab_attach);
SupportMenuItem menuItem = (SupportMenuItem)subMenu.getItem();
menuItem.setShowAsAction(SupportMenuItem.SHOW_AS_ACTION_ALWAYS);
subMenu.add(Menu.NONE, attach_photo, Menu.NONE, LocaleController.getString("ChatTakePhoto", R.string.ChatTakePhoto)).setIcon(R.drawable.ic_attach_photo);
subMenu.add(Menu.NONE, attach_gallery, Menu.NONE, LocaleController.getString("ChatGallery", R.string.ChatGallery)).setIcon(R.drawable.ic_attach_gallery);
subMenu.add(Menu.NONE, attach_video, Menu.NONE, LocaleController.getString("ChatVideo", R.string.ChatVideo)).setIcon(R.drawable.ic_attach_video);
subMenu.add(Menu.NONE, attach_document, Menu.NONE, LocaleController.getString("ChatDocument", R.string.ChatDocument)).setIcon(R.drawable.ic_ab_doc);
subMenu.add(Menu.NONE, attach_location, Menu.NONE, LocaleController.getString("ChatLocation", R.string.ChatLocation)).setIcon(R.drawable.ic_attach_location);
SupportMenuItem avatarItem = (SupportMenuItem)menu.add(Menu.NONE, chat_menu_avatar, Menu.NONE, null);
avatarItem.setShowAsAction(SupportMenuItem.SHOW_AS_ACTION_ALWAYS);
avatarItem.setActionView(R.layout.chat_header_layout);
2013-12-20 20:25:49 +01:00
if (currentEncryptedChat != null && !(currentEncryptedChat instanceof TLRPC.TL_encryptedChat) || currentChat != null && (currentChat instanceof TLRPC.TL_chatForbidden || currentChat.left)) {
if (menuItem != null) {
menuItem.setVisible(false);
2014-03-10 10:27:49 +01:00
}
if (timeItem != null) {
timeItem.setVisible(false);
}
}
if (timeItem != null && timeItem.getActionView() != null) {
timerButton = (TimerButton)timeItem.getActionView().findViewById(R.id.chat_timer);
timerButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setTitle(LocaleController.getString("MessageLifetime", R.string.MessageLifetime));
2014-03-10 10:27:49 +01:00
builder.setItems(new CharSequence[]{
LocaleController.getString("ShortMessageLifetimeForever", R.string.ShortMessageLifetimeForever),
LocaleController.getString("ShortMessageLifetime2s", R.string.ShortMessageLifetime2s),
LocaleController.getString("ShortMessageLifetime5s", R.string.ShortMessageLifetime5s),
LocaleController.getString("ShortMessageLifetime1m", R.string.ShortMessageLifetime1m),
LocaleController.getString("ShortMessageLifetime1h", R.string.ShortMessageLifetime1h),
LocaleController.getString("ShortMessageLifetime1d", R.string.ShortMessageLifetime1d),
LocaleController.getString("ShortMessageLifetime1w", R.string.ShortMessageLifetime1w)
2014-03-10 10:27:49 +01:00
}, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
int oldValue = currentEncryptedChat.ttl;
if (which == 0) {
currentEncryptedChat.ttl = 0;
} else if (which == 1) {
currentEncryptedChat.ttl = 2;
} else if (which == 2) {
currentEncryptedChat.ttl = 5;
} else if (which == 3) {
currentEncryptedChat.ttl = 60;
} else if (which == 4) {
currentEncryptedChat.ttl = 60 * 60;
} else if (which == 5) {
currentEncryptedChat.ttl = 60 * 60 * 24;
} else if (which == 6) {
currentEncryptedChat.ttl = 60 * 60 * 24 * 7;
}
if (oldValue != currentEncryptedChat.ttl) {
MessagesController.getInstance().sendTTLMessage(currentEncryptedChat);
MessagesStorage.getInstance().updateEncryptedChat(currentEncryptedChat);
2014-03-10 10:27:49 +01:00
}
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
2014-03-10 10:27:49 +01:00
builder.show().setCanceledOnTouchOutside(true);
}
});
timerButton.setTime(currentEncryptedChat.ttl);
2013-10-25 17:19:00 +02:00
}
View avatarLayout = avatarItem.getActionView();
avatarImageView = (BackupImageView)avatarLayout.findViewById(R.id.chat_avatar_image);
avatarImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (parentActivity == null) {
return;
}
if (currentUser != null) {
UserProfileActivity fragment = new UserProfileActivity();
Bundle args = new Bundle();
args.putInt("user_id", currentUser.id);
if (currentEncryptedChat != null) {
args.putLong("dialog_id", dialog_id);
}
fragment.setArguments(args);
((LaunchActivity) parentActivity).presentFragment(fragment, "user_" + currentUser.id, swipeOpening);
2013-10-25 17:19:00 +02:00
} else if (currentChat != null) {
if (info != null) {
if (info instanceof TLRPC.TL_chatParticipantsForbidden) {
return;
}
NotificationCenter.getInstance().addToMemCache(5, info);
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (currentChat.participants_count == 0 || currentChat.left || currentChat instanceof TLRPC.TL_chatForbidden) {
2013-10-25 17:19:00 +02:00
return;
}
ChatProfileActivity fragment = new ChatProfileActivity();
Bundle args = new Bundle();
args.putInt("chat_id", currentChat.id);
fragment.setArguments(args);
((LaunchActivity) parentActivity).presentFragment(fragment, "chat_" + currentChat.id, swipeOpening);
2013-10-25 17:19:00 +02:00
}
}
});
TLRPC.FileLocation photo = null;
int placeHolderId = 0;
if (currentUser != null) {
if (currentUser.photo != null) {
photo = currentUser.photo.photo_small;
}
placeHolderId = Utilities.getUserAvatarForId(currentUser.id);
} else if (currentChat != null) {
if (currentChat.photo != null) {
photo = currentChat.photo.photo_small;
}
placeHolderId = Utilities.getGroupAvatarForId(currentChat.id);
}
avatarImageView.setImage(photo, "50_50", placeHolderId);
}
private View getRowParentView(View v) {
if (v instanceof ChatBaseCell) {
return v;
} else {
while (!(v.getTag() instanceof ChatListRowHolderEx)) {
ViewParent parent = v.getParent();
if (!(parent instanceof View)) {
return null;
}
v = (View)v.getParent();
if (v == null) {
return null;
}
2013-10-25 17:19:00 +02:00
}
return v;
2013-10-25 17:19:00 +02:00
}
}
public void createMenu(View v, boolean single) {
2013-12-20 20:25:49 +01:00
if (mActionMode != null || parentActivity == null || getActivity() == null || isFinish || swipeOpening) {
2013-10-25 17:19:00 +02:00
return;
}
selectedMessagesCanCopyIds.clear();
selectedObject = null;
forwaringMessage = null;
selectedMessagesIds.clear();
View parentView = getRowParentView(v);
if (parentView == null) {
return;
}
MessageObject message = null;
if (v instanceof ChatBaseCell) {
message = ((ChatBaseCell)v).getMessageObject();
} else {
ChatListRowHolderEx holder = (ChatListRowHolderEx)parentView.getTag();
message = holder.message;
}
2013-10-25 17:19:00 +02:00
final int type = getMessageType(message);
if (single || type < 2) {
if (type >= 0) {
selectedObject = message;
2013-12-20 20:25:49 +01:00
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
2013-10-25 17:19:00 +02:00
CharSequence[] items = null;
if (currentEncryptedChat == null) {
if (type == 0) {
items = new CharSequence[] {LocaleController.getString("Retry", R.string.Retry), LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
} else if (type == 1) {
items = new CharSequence[] {LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
} else if (type == 2) {
items = new CharSequence[] {LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
} else if (type == 3) {
items = new CharSequence[] {LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Copy", R.string.Copy), LocaleController.getString("Delete", R.string.Delete)};
} else if (type == 4) {
items = new CharSequence[] {LocaleController.getString(selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? "SaveToDownloads" : "SaveToGallery",
selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? R.string.SaveToDownloads : R.string.SaveToGallery), LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Delete", R.string.Delete)};
} else if (type == 5) {
items = new CharSequence[] {LocaleController.getString("ApplyLocalizationFile", R.string.ApplyLocalizationFile), LocaleController.getString("SaveToDownloads", R.string.SaveToDownloads), LocaleController.getString("Forward", R.string.Forward), LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
}
} else {
if (type == 0) {
items = new CharSequence[] {LocaleController.getString("Retry", R.string.Retry), LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
} else if (type == 1) {
items = new CharSequence[] {LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
} else if (type == 2) {
items = new CharSequence[] {LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
} else if (type == 3) {
items = new CharSequence[] {LocaleController.getString("Copy", R.string.Copy), LocaleController.getString("Delete", R.string.Delete)};
} else if (type == 4) {
items = new CharSequence[] {LocaleController.getString(selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? "SaveToDownloads" : "SaveToGallery",
selectedObject.messageOwner.media instanceof TLRPC.TL_messageMediaDocument ? R.string.SaveToDownloads : R.string.SaveToGallery), LocaleController.getString("Delete", R.string.Delete)};
} else if (type == 5) {
items = new CharSequence[] {LocaleController.getString("ApplyLocalizationFile", R.string.ApplyLocalizationFile), LocaleController.getString("Delete", R.string.Delete)};
2013-10-25 17:19:00 +02:00
}
}
builder.setItems(items, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (type == 0) {
if (i == 0) {
processSelectedOption(0);
} else if (i == 1) {
processSelectedOption(1);
}
} else if (type == 1) {
processSelectedOption(1);
} else if (type == 2) {
if (currentEncryptedChat == null) {
if (i == 0) {
processSelectedOption(2);
} else if (i == 1) {
processSelectedOption(1);
}
} else {
processSelectedOption(1);
}
} else if (type == 3) {
if (currentEncryptedChat == null) {
if (i == 0) {
processSelectedOption(2);
} else if (i == 1) {
processSelectedOption(3);
} else if (i == 2) {
processSelectedOption(1);
}
} else {
if (i == 0) {
processSelectedOption(3);
} else if (i == 1) {
processSelectedOption(1);
}
}
} else if (type == 4) {
if (currentEncryptedChat == null) {
if (i == 0) {
String fileName = selectedObject.getFileName();
if (selectedObject.type == 6 || selectedObject.type == 7) {
MediaController.saveFile(fileName, parentActivity, 1, null);
} else if (selectedObject.type == 1) {
MediaController.saveFile(fileName, parentActivity, 0, null);
} else if (selectedObject.type == 8 || selectedObject.type == 9) {
MediaController.saveFile(fileName, parentActivity, 2, selectedObject.messageOwner.media.document.file_name);
}
} else if (i == 1) {
processSelectedOption(2);
} else if (i == 2) {
processSelectedOption(1);
}
} else {
if (i == 0) {
} else if (i == 1) {
processSelectedOption(1);
}
}
} else if (type == 5) {
if (currentEncryptedChat == null) {
if (i == 1) {
String fileName = selectedObject.getFileName();
if (selectedObject.type == 6 || selectedObject.type == 7) {
MediaController.saveFile(fileName, parentActivity, 1, null);
} else if (selectedObject.type == 1) {
MediaController.saveFile(fileName, parentActivity, 0, null);
} else if (selectedObject.type == 8 || selectedObject.type == 9) {
MediaController.saveFile(fileName, parentActivity, 2, selectedObject.messageOwner.media.document.file_name);
}
} else if (i == 2) {
processSelectedOption(2);
} else if (i == 3) {
processSelectedOption(1);
}
} else {
if (i == 1) {
processSelectedOption(1);
}
}
if (i == 0) {
File locFile = null;
if (selectedObject.messageOwner.attachPath != null && selectedObject.messageOwner.attachPath.length() != 0) {
File f = new File(selectedObject.messageOwner.attachPath);
if (f.exists()) {
locFile = f;
}
}
if (locFile == null) {
File f = new File(Utilities.getCacheDir(), selectedObject.getFileName());
if (f.exists()) {
locFile = f;
}
}
if (locFile != null) {
if (LocaleController.getInstance().applyLanguageFile(locFile)) {
((LaunchActivity)parentActivity).presentFragment(new LanguageSelectActivity(), "settings_lang", false);
} else if (parentActivity != null) {
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setMessage(LocaleController.getString("IncorrectLocalization", R.string.IncorrectLocalization));
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), null);
visibleDialog = builder.show();
visibleDialog.setCanceledOnTouchOutside(true);
visibleDialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
visibleDialog = null;
}
});
}
}
}
2013-10-25 17:19:00 +02:00
}
}
});
builder.setTitle(LocaleController.getString("Message", R.string.Message));
2013-10-25 17:19:00 +02:00
visibleDialog = builder.show();
visibleDialog.setCanceledOnTouchOutside(true);
visibleDialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
visibleDialog = null;
}
});
}
return;
}
addToSelectedMessages(message);
2013-12-20 20:25:49 +01:00
mActionMode = parentActivity.startSupportActionMode(mActionModeCallback);
2013-10-25 17:19:00 +02:00
updateActionModeTitle();
updateVisibleRows();
}
private void processSelectedOption(int option) {
if (option == 0) {
if (selectedObject != null && selectedObject.messageOwner.id < 0) {
if (selectedObject.type == 0) {
2013-10-25 17:19:00 +02:00
if (selectedObject.messageOwner instanceof TLRPC.TL_messageForwarded) {
MessagesController.getInstance().sendMessage(selectedObject, dialog_id);
2013-10-25 17:19:00 +02:00
} else {
MessagesController.getInstance().sendMessage(selectedObject.messageOwner.message, dialog_id);
2013-10-25 17:19:00 +02:00
}
} else if (selectedObject.type == 4 || selectedObject.type == 5) {
MessagesController.getInstance().sendMessage(selectedObject.messageOwner.media.geo.lat, selectedObject.messageOwner.media.geo._long, dialog_id);
} else if (selectedObject.type == 1) {
2013-10-25 17:19:00 +02:00
if (selectedObject.messageOwner instanceof TLRPC.TL_messageForwarded) {
MessagesController.getInstance().sendMessage(selectedObject, dialog_id);
2013-10-25 17:19:00 +02:00
} else {
TLRPC.TL_photo photo = (TLRPC.TL_photo)selectedObject.messageOwner.media.photo;
MessagesController.getInstance().sendMessage(photo, dialog_id);
2013-10-25 17:19:00 +02:00
}
} else if (selectedObject.type == 6 || selectedObject.type == 7) {
if (selectedObject.messageOwner instanceof TLRPC.TL_messageForwarded) {
MessagesController.getInstance().sendMessage(selectedObject, dialog_id);
2013-10-25 17:19:00 +02:00
} else {
TLRPC.TL_video video = (TLRPC.TL_video)selectedObject.messageOwner.media.video;
video.path = selectedObject.messageOwner.attachPath;
MessagesController.getInstance().sendMessage(video, dialog_id);
2013-10-25 17:19:00 +02:00
}
} else if (selectedObject.type == 12 || selectedObject.type == 13) {
TLRPC.User user = MessagesController.getInstance().users.get(selectedObject.messageOwner.media.user_id);
MessagesController.getInstance().sendMessage(user, dialog_id);
} else if (selectedObject.type == 8 || selectedObject.type == 9) {
2013-12-26 12:43:37 +01:00
TLRPC.TL_document document = (TLRPC.TL_document)selectedObject.messageOwner.media.document;
document.path = selectedObject.messageOwner.attachPath;
MessagesController.getInstance().sendMessage(document, dialog_id);
} else if (selectedObject.type == 2) {
TLRPC.TL_audio audio = (TLRPC.TL_audio)selectedObject.messageOwner.media.audio;
audio.path = selectedObject.messageOwner.attachPath;
MessagesController.getInstance().sendMessage(audio, dialog_id);
2013-10-25 17:19:00 +02:00
}
ArrayList<Integer> arr = new ArrayList<Integer>();
arr.add(selectedObject.messageOwner.id);
ArrayList<Long> random_ids = null;
if (currentEncryptedChat != null && selectedObject.messageOwner.random_id != 0) {
random_ids = new ArrayList<Long>();
random_ids.add(selectedObject.messageOwner.random_id);
}
MessagesController.getInstance().deleteMessages(arr, random_ids, currentEncryptedChat);
2013-10-25 17:19:00 +02:00
chatListView.setSelection(messages.size() + 1);
}
} else if (option == 1) {
if (selectedObject != null) {
ArrayList<Integer> ids = new ArrayList<Integer>();
ids.add(selectedObject.messageOwner.id);
2013-12-20 20:25:49 +01:00
removeUnreadPlane(true);
ArrayList<Long> random_ids = null;
if (currentEncryptedChat != null && selectedObject.messageOwner.random_id != 0) {
random_ids = new ArrayList<Long>();
random_ids.add(selectedObject.messageOwner.random_id);
}
MessagesController.getInstance().deleteMessages(ids, random_ids, currentEncryptedChat);
2013-10-25 17:19:00 +02:00
selectedObject = null;
}
} else if (option == 2) {
if (selectedObject != null) {
if (parentActivity == null) {
return;
}
2013-10-25 17:19:00 +02:00
forwaringMessage = selectedObject;
selectedObject = null;
MessagesActivity fragment = new MessagesActivity();
fragment.selectAlertString = R.string.ForwardMessagesTo;
fragment.selectAlertStringDesc = "ForwardMessagesTo";
2013-10-25 17:19:00 +02:00
fragment.animationType = 1;
Bundle args = new Bundle();
args.putBoolean("onlySelect", true);
2013-12-20 20:25:49 +01:00
args.putBoolean("serverOnly", true);
2013-10-25 17:19:00 +02:00
fragment.setArguments(args);
fragment.delegate = this;
((LaunchActivity)parentActivity).presentFragment(fragment, "select_chat", false);
2013-10-25 17:19:00 +02:00
}
} else if (option == 3) {
if (selectedObject != null) {
if(android.os.Build.VERSION.SDK_INT < 11) {
android.text.ClipboardManager clipboard = (android.text.ClipboardManager)parentActivity.getSystemService(Context.CLIPBOARD_SERVICE);
clipboard.setText(selectedObject.messageText);
} else {
android.content.ClipboardManager clipboard = (android.content.ClipboardManager)parentActivity.getSystemService(Context.CLIPBOARD_SERVICE);
android.content.ClipData clip = android.content.ClipData.newPlainText("label", selectedObject.messageText);
clipboard.setPrimaryClip(clip);
}
selectedObject = null;
}
}
}
2013-12-26 12:43:37 +01:00
@Override
public void didSelectFile(DocumentSelectActivity activity, String path, String name, String ext, long size) {
activity.finishFragment();
TLRPC.TL_document document = new TLRPC.TL_document();
document.id = 0;
document.user_id = UserConfig.clientUserId;
document.date = ConnectionsManager.getInstance().getCurrentTime();
2013-12-26 12:43:37 +01:00
document.file_name = name;
document.size = (int)size;
document.dc_id = 0;
document.path = path;
if (ext.length() != 0) {
MimeTypeMap myMime = MimeTypeMap.getSingleton();
String mimeType = myMime.getMimeTypeFromExtension(ext.toLowerCase());
if (mimeType != null) {
document.mime_type = mimeType;
} else {
document.mime_type = "application/octet-stream";
}
} else {
document.mime_type = "application/octet-stream";
}
if (document.mime_type.equals("image/gif")) {
try {
Bitmap bitmap = FileLoader.loadBitmap(path, null, 90, 90);
if (bitmap != null) {
document.thumb = FileLoader.scaleAndSaveImage(bitmap, 90, 90, 80, currentEncryptedChat != null);
document.thumb.type = "s";
}
} catch (Exception e) {
FileLog.e("tmessages", e);
}
}
if (document.thumb == null) {
document.thumb = new TLRPC.TL_photoSizeEmpty();
document.thumb.type = "s";
}
MessagesController.getInstance().sendMessage(document, dialog_id);
2013-12-26 12:43:37 +01:00
}
2013-10-25 17:19:00 +02:00
@Override
public void didSelectDialog(MessagesActivity activity, long did) {
if (dialog_id != 0 && (forwaringMessage != null || !selectedMessagesIds.isEmpty())) {
if (did != dialog_id) {
int lower_part = (int)did;
if (lower_part != 0) {
ActionBarActivity inflaterActivity = parentActivity;
if (inflaterActivity == null) {
inflaterActivity = (ActionBarActivity)getActivity();
}
2013-10-25 17:19:00 +02:00
activity.removeSelfFromStack();
ChatActivity fragment = new ChatActivity();
Bundle bundle = new Bundle();
if (lower_part > 0) {
bundle.putInt("user_id", lower_part);
fragment.setArguments(bundle);
fragment.scrollToTopOnResume = true;
2013-12-20 20:25:49 +01:00
ActionBarActivity act = (ActionBarActivity)getActivity();
if (inflaterActivity != null) {
((LaunchActivity)inflaterActivity).presentFragment(fragment, "chat" + Math.random(), false);
}
2013-10-25 17:19:00 +02:00
} else if (lower_part < 0) {
bundle.putInt("chat_id", -lower_part);
fragment.setArguments(bundle);
fragment.scrollToTopOnResume = true;
if (inflaterActivity != null) {
((LaunchActivity)inflaterActivity).presentFragment(fragment, "chat" + Math.random(), false);
}
2013-10-25 17:19:00 +02:00
}
removeSelfFromStack();
if (forwaringMessage != null) {
if (forwaringMessage.messageOwner.id > 0) {
MessagesController.getInstance().sendMessage(forwaringMessage, did);
}
2013-10-25 17:19:00 +02:00
forwaringMessage = null;
} else {
ArrayList<Integer> ids = new ArrayList<Integer>(selectedMessagesIds.keySet());
Collections.sort(ids);
for (Integer id : ids) {
if (id > 0) {
MessagesController.getInstance().sendMessage(selectedMessagesIds.get(id), did);
}
2013-10-25 17:19:00 +02:00
}
selectedMessagesIds.clear();
}
} else {
activity.finishFragment();
}
} else {
activity.finishFragment();
if (forwaringMessage != null) {
MessagesController.getInstance().sendMessage(forwaringMessage, did);
2013-10-25 17:19:00 +02:00
forwaringMessage = null;
} else {
ArrayList<Integer> ids = new ArrayList<Integer>(selectedMessagesIds.keySet());
Collections.sort(ids, new Comparator<Integer>() {
@Override
public int compare(Integer lhs, Integer rhs) {
return lhs.compareTo(rhs);
}
});
for (Integer id : ids) {
MessagesController.getInstance().sendMessage(selectedMessagesIds.get(id), did);
2013-10-25 17:19:00 +02:00
}
selectedMessagesIds.clear();
}
chatListView.setSelection(messages.size() + 1);
scrollToTopOnResume = true;
}
}
}
@Override
public boolean onBackPressed() {
if (emojiPopup != null && emojiPopup.isShowing()) {
hideEmojiPopup();
return false;
} else {
return true;
}
}
@Override
2013-12-20 20:25:49 +01:00
public boolean onOptionsItemSelected(MenuItem item) {
2013-10-25 17:19:00 +02:00
int itemId = item.getItemId();
switch (itemId) {
case android.R.id.home:
finishFragment();
break;
case attach_photo: {
2013-10-25 17:19:00 +02:00
try {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File image = Utilities.generatePicturePath();
if (image != null) {
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(image));
currentPicturePath = image.getAbsolutePath();
}
parentActivity.startActivityForResult(takePictureIntent, 0);
2013-10-25 17:19:00 +02:00
} catch (Exception e) {
2013-12-20 20:25:49 +01:00
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
break;
}
case attach_gallery: {
2013-10-25 17:19:00 +02:00
try {
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
parentActivity.startActivityForResult(photoPickerIntent, 1);
2013-10-25 17:19:00 +02:00
} catch (Exception e) {
2013-12-20 20:25:49 +01:00
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
break;
}
case attach_video: {
2013-10-25 17:19:00 +02:00
try {
Intent pickIntent = new Intent();
pickIntent.setType("video/*");
pickIntent.setAction(Intent.ACTION_GET_CONTENT);
pickIntent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, (long)(1024 * 1024 * 1000));
2013-10-25 17:19:00 +02:00
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
File video = Utilities.generateVideoPath();
if (video != null) {
if(android.os.Build.VERSION.SDK_INT > 16) {
2013-10-25 17:19:00 +02:00
takeVideoIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(video));
}
takeVideoIntent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, (long)(1024 * 1024 * 1000));
2013-10-25 17:19:00 +02:00
currentPicturePath = video.getAbsolutePath();
}
Intent chooserIntent = Intent.createChooser(pickIntent, "");
chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { takeVideoIntent });
parentActivity.startActivityForResult(chooserIntent, 2);
2013-10-25 17:19:00 +02:00
} catch (Exception e) {
2013-12-20 20:25:49 +01:00
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
break;
}
case attach_location: {
2013-10-25 17:19:00 +02:00
if (!isGoogleMapsInstalled()) {
return true;
}
LocationActivity fragment = new LocationActivity();
((LaunchActivity)parentActivity).presentFragment(fragment, "location", false);
2013-10-25 17:19:00 +02:00
break;
}
case attach_document: {
2013-12-26 12:43:37 +01:00
DocumentSelectActivity fragment = new DocumentSelectActivity();
fragment.delegate = this;
((LaunchActivity)parentActivity).presentFragment(fragment, "document", false);
2013-12-26 12:43:37 +01:00
break;
}
2013-10-25 17:19:00 +02:00
}
return true;
}
public boolean isGoogleMapsInstalled() {
try {
2013-11-04 13:31:01 +01:00
ApplicationInfo info = ApplicationLoader.applicationContext.getPackageManager().getApplicationInfo("com.google.android.apps.maps", 0 );
2013-10-25 17:19:00 +02:00
return true;
} catch(PackageManager.NameNotFoundException e) {
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setMessage("Install Google Maps?");
builder.setCancelable(true);
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) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.google.android.apps.maps"));
startActivity(intent);
} catch (Exception e) {
2013-12-20 20:25:49 +01:00
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
}
});
builder.setNegativeButton(R.string.Cancel, null);
2013-11-04 13:31:01 +01:00
visibleDialog = builder.create();
visibleDialog.setCanceledOnTouchOutside(true);
visibleDialog.show();
2013-10-25 17:19:00 +02:00
return false;
}
}
private void updateVisibleRows() {
if (chatListView == null) {
return;
}
int count = chatListView.getChildCount();
for (int a = 0; a < count; a++) {
View view = chatListView.getChildAt(a);
Object tag = view.getTag();
if (tag instanceof ChatListRowHolderEx) {
ChatListRowHolderEx holder = (ChatListRowHolderEx)tag;
holder.update();
boolean disableSelection = false;
boolean selected = false;
if (mActionMode != null) {
if (selectedMessagesIds.containsKey(holder.message.messageOwner.id)) {
view.setBackgroundColor(0x6633b5e5);
selected = true;
} else {
view.setBackgroundColor(0);
}
disableSelection = true;
} else {
view.setBackgroundColor(0);
}
updateRowBackground(holder, disableSelection, selected);
} else if (view instanceof ChatBaseCell) {
ChatBaseCell cell = (ChatBaseCell)view;
boolean disableSelection = false;
boolean selected = false;
if (mActionMode != null) {
if (selectedMessagesIds.containsKey(cell.getMessageObject().messageOwner.id)) {
view.setBackgroundColor(0x6633b5e5);
selected = true;
} else {
view.setBackgroundColor(0);
}
disableSelection = true;
} else {
view.setBackgroundColor(0);
}
2014-03-02 10:23:06 +01:00
cell.setMessageObject(cell.getMessageObject());
cell.setCheckPressed(!disableSelection, disableSelection && selected);
}
}
}
private void updateRowBackground(ChatListRowHolderEx holder, boolean disableSelection, boolean selected) {
int messageType = holder.message.type;
if (!disableSelection) {
if (messageType == 4 || messageType == 6) {
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_outgoing_photo_states);
} else if (messageType == 5 || messageType == 7) {
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_incoming_photo_states);
} else if (messageType == 12) {
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_outgoing_text_states);
holder.chatBubbleView.setPadding(Utilities.dp(6), Utilities.dp(6), Utilities.dp(18), 0);
} else if (messageType == 13) {
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_incoming_text_states);
holder.chatBubbleView.setPadding(Utilities.dp(15), Utilities.dp(6), Utilities.dp(9), 0);
} else if (messageType == 8) {
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_outgoing_text_states);
holder.chatBubbleView.setPadding(Utilities.dp(9), Utilities.dp(9), Utilities.dp(18), 0);
} else if (messageType == 9) {
holder.chatBubbleView.setBackgroundResource(R.drawable.chat_incoming_text_states);
holder.chatBubbleView.setPadding(Utilities.dp(18), Utilities.dp(9), Utilities.dp(9), 0);
}
} else {
if (messageType == 4 || messageType == 6) {
if (selected) {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out_photo_selected);
2013-10-25 17:19:00 +02:00
} else {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out_photo);
}
} else if (messageType == 5 || messageType == 7) {
if (selected) {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in_photo_selected);
} else {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in_photo);
}
} else if (messageType == 12) {
if (selected) {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out_selected);
} else {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out);
}
holder.chatBubbleView.setPadding(Utilities.dp(6), Utilities.dp(6), Utilities.dp(18), 0);
} else if (messageType == 13) {
if (selected) {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in_selected);
} else {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in);
}
holder.chatBubbleView.setPadding(Utilities.dp(15), Utilities.dp(6), Utilities.dp(9), 0);
} else if (messageType == 8) {
if (selected) {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out_selected);
} else {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_out);
}
holder.chatBubbleView.setPadding(Utilities.dp(9), Utilities.dp(9), Utilities.dp(18), 0);
} else if (messageType == 9) {
if (selected) {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in_selected);
} else {
holder.chatBubbleView.setBackgroundResource(R.drawable.msg_in);
}
holder.chatBubbleView.setPadding(Utilities.dp(18), Utilities.dp(9), Utilities.dp(9), 0);
2013-10-25 17:19:00 +02:00
}
}
}
private class ChatAdapter extends BaseAdapter {
private Context mContext;
public ChatAdapter(Context context) {
mContext = context;
}
@Override
public boolean areAllItemsEnabled() {
return true;
}
@Override
public boolean isEnabled(int i) {
return true;
}
@Override
public int getCount() {
int count = messages.size();
2013-12-20 20:25:49 +01:00
if (count != 0) {
if (!endReached) {
count++;
}
if (!unread_end_reached) {
count++;
}
2013-10-25 17:19:00 +02:00
}
return count;
}
@Override
public Object getItem(int i) {
2013-12-20 20:25:49 +01:00
return null;
2013-10-25 17:19:00 +02:00
}
@Override
public long getItemId(int i) {
return i;
}
@Override
public boolean hasStableIds() {
2013-12-20 20:25:49 +01:00
return true;
2013-10-25 17:19:00 +02:00
}
@Override
public View getView(int i, View view, ViewGroup viewGroup) {
int offset = 1;
2013-12-20 20:25:49 +01:00
if ((!endReached || !unread_end_reached) && messages.size() != 0) {
if (!endReached) {
offset = 0;
}
if (i == 0 && !endReached || !unread_end_reached && i == (messages.size() + 1 - offset)) {
2013-10-25 17:19:00 +02:00
if (view == null) {
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2013-12-20 20:25:49 +01:00
view = li.inflate(R.layout.chat_loading_layout, viewGroup, false);
View progressBar = view.findViewById(R.id.progressLayout);
2013-10-25 17:19:00 +02:00
if (isCustomTheme) {
2013-12-20 20:25:49 +01:00
progressBar.setBackgroundResource(R.drawable.system_loader2);
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
progressBar.setBackgroundResource(R.drawable.system_loader1);
2013-10-25 17:19:00 +02:00
}
}
return view;
}
}
MessageObject message = messages.get(messages.size() - i - offset);
int type = message.contentType;
2013-10-25 17:19:00 +02:00
if (view == null) {
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (type == 0) {
view = new ChatMessageCell(mContext);
2013-10-25 17:19:00 +02:00
} else if (type == 4) {
view = li.inflate(R.layout.chat_outgoing_location_layout, viewGroup, false);
} else if (type == 5) {
if (currentChat != null) {
view = li.inflate(R.layout.chat_group_incoming_location_layout, viewGroup, false);
} else {
view = li.inflate(R.layout.chat_incoming_location_layout, viewGroup, false);
}
} else if (type == 1) {
view = new ChatMediaCell(mContext);
((ChatMediaCell)view).downloadPhotos = downloadPhotos;
2013-10-25 17:19:00 +02:00
} else if (type == 6) {
view = li.inflate(R.layout.chat_outgoing_video_layout, viewGroup, false);
} else if (type == 7) {
if (currentChat != null) {
view = li.inflate(R.layout.chat_group_incoming_video_layout, viewGroup, false);
} else {
view = li.inflate(R.layout.chat_incoming_video_layout, viewGroup, false);
}
} else if (type == 10) {
view = li.inflate(R.layout.chat_action_message_layout, viewGroup, false);
} else if (type == 11) {
view = li.inflate(R.layout.chat_action_change_photo_layout, viewGroup, false);
} else if (type == 12) {
view = li.inflate(R.layout.chat_outgoing_contact_layout, viewGroup, false);
} else if (type == 13) {
if (currentChat != null) {
view = li.inflate(R.layout.chat_group_incoming_contact_layout, viewGroup, false);
} else {
view = li.inflate(R.layout.chat_incoming_contact_layout, viewGroup, false);
}
2013-12-20 20:25:49 +01:00
} else if (type == 15) {
view = li.inflate(R.layout.chat_unread_layout, viewGroup, false);
} else if (type == 8) {
2013-12-26 12:43:37 +01:00
view = li.inflate(R.layout.chat_outgoing_document_layout, viewGroup, false);
} else if (type == 9) {
2013-12-26 12:43:37 +01:00
if (currentChat != null) {
view = li.inflate(R.layout.chat_group_incoming_document_layout, viewGroup, false);
} else {
view = li.inflate(R.layout.chat_incoming_document_layout, viewGroup, false);
}
} else if (type == 2) {
view = new ChatAudioCell(mContext);
2013-10-25 17:19:00 +02:00
}
}
boolean selected = false;
boolean disableSelection = false;
if (mActionMode != null) {
if (selectedMessagesIds.containsKey(message.messageOwner.id)) {
2013-10-25 17:19:00 +02:00
view.setBackgroundColor(0x6633b5e5);
selected = true;
} else {
view.setBackgroundColor(0);
}
disableSelection = true;
} else {
view.setBackgroundColor(0);
}
if (view instanceof ChatBaseCell) {
((ChatBaseCell)view).delegate = new ChatBaseCell.ChatBaseCellDelegate() {
@Override
public void didPressedUserAvatar(ChatBaseCell cell, TLRPC.User user) {
if (user != null && user.id != UserConfig.clientUserId) {
UserProfileActivity fragment = new UserProfileActivity();
Bundle args = new Bundle();
args.putInt("user_id", user.id);
fragment.setArguments(args);
((LaunchActivity)parentActivity).presentFragment(fragment, "user_" + user.id, false);
}
}
@Override
public void didPressedCanceSendButton(ChatBaseCell cell) {
MessageObject message = cell.getMessageObject();
if (message.messageOwner.send_state != 0) {
MessagesController.getInstance().cancelSendingMessage(message);
}
}
@Override
public void didLongPressed(ChatBaseCell cell) {
createMenu(cell, false);
}
@Override
public boolean canPerformActions() {
return mActionMode == null;
}
@Override
public boolean onSwipeLeft() {
return ChatActivity.this.onSwipeLeft();
}
@Override
public boolean onSwipeRight() {
return ChatActivity.this.onSwipeRight();
}
};
if (view instanceof ChatMediaCell) {
((ChatMediaCell)view).mediaDelegate = new ChatMediaCell.ChatMediaCellDelegate() {
@Override
public void didPressedImage(ChatBaseCell cell) {
NotificationCenter.getInstance().addToMemCache(51, cell.getMessageObject());
Intent intent = new Intent(parentActivity, GalleryImageViewer.class);
startActivity(intent);
}
};
}
((ChatBaseCell)view).isChat = currentChat != null;
((ChatBaseCell)view).setMessageObject(message);
((ChatBaseCell)view).setCheckPressed(!disableSelection, disableSelection && selected);
if (view instanceof ChatAudioCell && downloadAudios) {
((ChatAudioCell)view).downloadAudioIfNeed();
} else if (view instanceof ChatMediaCell) {
((ChatMediaCell)view).downloadPhotos = downloadPhotos;
}
} else {
ChatListRowHolderEx holder = (ChatListRowHolderEx)view.getTag();
if (holder == null) {
holder = new ChatListRowHolderEx(view, message.type);
view.setTag(holder);
}
holder.message = message;
updateRowBackground(holder, disableSelection, selected);
holder.update();
}
2013-10-25 17:19:00 +02:00
return view;
}
@Override
public int getItemViewType(int i) {
int offset = 1;
if (!endReached && messages.size() != 0) {
offset = 0;
if (i == 0) {
return 14;
}
}
2013-12-20 20:25:49 +01:00
if (!unread_end_reached && i == (messages.size() + 1 - offset)) {
return 14;
}
2013-10-25 17:19:00 +02:00
MessageObject message = messages.get(messages.size() - i - offset);
return message.contentType;
2013-10-25 17:19:00 +02:00
}
@Override
public int getViewTypeCount() {
return 16;
2013-10-25 17:19:00 +02:00
}
@Override
public boolean isEmpty() {
int count = messages.size();
2013-12-20 20:25:49 +01:00
if (count != 0) {
if (!endReached) {
count++;
}
if (!unread_end_reached) {
count++;
}
2013-10-25 17:19:00 +02:00
}
return count == 0;
}
}
public class ChatListRowHolderEx {
public BackupImageView avatarImageView;
public TextView nameTextView;
public TextView messageTextView;
public MessageActionLayout messageLayoutAction;
public TextView timeTextView;
public BackupImageView photoImage;
public ImageView halfCheckImage;
public ImageView checkImage;
public TextView actionAttachButton;
public TextView videoTimeText;
public MessageObject message;
public TextView phoneTextView;
public BackupImageView contactAvatar;
public View contactView;
public ImageView addContactButton;
public View addContactView;
public View chatBubbleView;
public ProgressBar actionProgress;
public View actionView;
public ImageView actionCancelButton;
private PhotoObject photoObjectToSet = null;
private File photoFile = null;
private String photoFileName = null;
private String photoFilter = null;
2013-10-25 17:19:00 +02:00
public void update() {
TLRPC.User fromUser = MessagesController.getInstance().users.get(message.messageOwner.from_id);
2013-10-25 17:19:00 +02:00
int type = message.type;
if (timeTextView != null) {
2014-03-25 01:25:32 +01:00
timeTextView.setText(LocaleController.formatterDay.format((long) (message.messageOwner.date) * 1000));
2013-10-25 17:19:00 +02:00
}
if (avatarImageView != null && fromUser != null) {
TLRPC.FileLocation photo = null;
if (fromUser.photo != null) {
photo = fromUser.photo.photo_small;
}
int placeHolderId = Utilities.getUserAvatarForId(fromUser.id);
avatarImageView.setImage(photo, "50_50", placeHolderId);
}
if (type != 12 && type != 13 && nameTextView != null && fromUser != null && type != 8 && type != 9) {
2013-10-25 17:19:00 +02:00
nameTextView.setText(Utilities.formatName(fromUser.first_name, fromUser.last_name));
nameTextView.setTextColor(Utilities.getColorForId(message.messageOwner.from_id));
}
if (type == 6 || type == 7) {
int width = (int)(Math.min(displaySize.x, displaySize.y) * 0.7f);
int height = width + Utilities.dp(100);
if (type == 6 || type == 7) {
width = (int)(Math.min(displaySize.x, displaySize.y) / 2.5f);
height = width + 100;
}
if (width > 800) {
width = 800;
}
if (height > 800) {
height = 800;
}
PhotoObject photo = PhotoObject.getClosestImageWithSize(message.photoThumbs, width, height);
2013-10-25 17:19:00 +02:00
2013-12-20 20:25:49 +01:00
if (photo != null) {
float scale = (float)photo.photoOwner.w / (float)width;
int w = (int)(photo.photoOwner.w / scale);
int h = (int)(photo.photoOwner.h / scale);
if (h > height) {
2013-12-20 20:25:49 +01:00
float scale2 = h;
h = height;
2013-12-20 20:25:49 +01:00
scale2 /= h;
w = (int)(w / scale2);
} else if (h < Utilities.dp(120)) {
h = Utilities.dp(120);
2013-12-20 20:25:49 +01:00
float hScale = (float)photo.photoOwner.h / h;
if (photo.photoOwner.w / hScale < width) {
w = (int)(photo.photoOwner.w / hScale);
}
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)photoImage.getLayoutParams();
params.width = w;
params.height = h;
photoImage.setLayoutParams(params);
2013-10-25 17:19:00 +02:00
LinearLayout.LayoutParams params2 = (LinearLayout.LayoutParams)chatBubbleView.getLayoutParams();
params2.width = w + Utilities.dp(12);
params2.height = h + Utilities.dp(12);
chatBubbleView.setLayoutParams(params2);
2013-12-20 20:25:49 +01:00
if (photo.image != null) {
photoImage.setImageBitmap(photo.image);
2013-10-25 17:19:00 +02:00
} else {
if (photoFileName == null) {
if (message.imagePreview != null) {
photoImage.setImage(photo.photoOwner.location, String.format(Locale.US, "%d_%d", (int)(w / Utilities.density), (int)(h / Utilities.density)), message.imagePreview);
} else {
photoImage.setImage(photo.photoOwner.location, String.format(Locale.US, "%d_%d", (int)(w / Utilities.density), (int)(h / Utilities.density)), message.messageOwner.out ? R.drawable.photo_placeholder_out : R.drawable.photo_placeholder_in);
}
2013-12-20 20:25:49 +01:00
} else {
if (downloadPhotos) {
addToLoadingFile(photoFileName, actionProgress);
if (message.imagePreview != null) {
photoImage.setImage(photo.photoOwner.location, String.format(Locale.US, "%d_%d", (int)(w / Utilities.density), (int)(h / Utilities.density)), message.imagePreview, photo.photoOwner.size);
} else {
photoImage.setImage(photo.photoOwner.location, String.format(Locale.US, "%d_%d", (int)(w / Utilities.density), (int)(h / Utilities.density)), message.messageOwner.out ? R.drawable.photo_placeholder_out : R.drawable.photo_placeholder_in, photo.photoOwner.size);
}
photoObjectToSet = null;
photoFilter = null;
} else {
photoFilter = String.format(Locale.US, "%d_%d", (int)(w / Utilities.density), (int)(h / Utilities.density));
photoObjectToSet = photo;
photoImage.setImageBitmap(message.imagePreview);
}
2013-12-20 20:25:49 +01:00
}
2013-10-25 17:19:00 +02:00
}
}
if ((type == 6 || type == 7) && videoTimeText != null) {
int duration = message.messageOwner.media.video.duration;
int minutes = duration / 60;
int seconds = duration - minutes * 60;
videoTimeText.setText(String.format("%d:%02d", minutes, seconds));
}
} else if (type == 4 || type == 5) {
double lat = message.messageOwner.media.geo.lat;
double lon = message.messageOwner.media.geo._long;
2013-12-26 17:46:13 +01:00
String url = String.format(Locale.US, "https://maps.googleapis.com/maps/api/staticmap?center=%f,%f&zoom=13&size=100x100&maptype=roadmap&scale=%d&markers=color:red|size:big|%f,%f&sensor=false", lat, lon, Math.min(2, (int)Math.ceil(Utilities.density)), lat, lon);
2013-12-20 20:25:49 +01:00
photoImage.setImage(url, null, message.messageOwner.out ? R.drawable.photo_placeholder_out : R.drawable.photo_placeholder_in);
actionAttachButton.setText(LocaleController.getString("ViewLocation", R.string.ViewLocation));
2013-10-25 17:19:00 +02:00
} else if (type == 11 || type == 10) {
2013-12-26 17:46:13 +01:00
int width = displaySize.x - Utilities.dp(30);
2013-10-25 17:19:00 +02:00
messageTextView.setText(message.messageText);
messageTextView.setMaxWidth(width);
if (type == 11) {
2013-12-20 20:25:49 +01:00
if (message.messageOwner.action instanceof TLRPC.TL_messageActionUserUpdatedPhoto) {
photoImage.setImage(message.messageOwner.action.newUserPhoto.photo_small, "50_50", Utilities.getUserAvatarForId(currentUser.id));
2013-10-25 17:19:00 +02:00
} else {
2013-12-26 17:46:13 +01:00
PhotoObject photo = PhotoObject.getClosestImageWithSize(message.photoThumbs, Utilities.dp(64), Utilities.dp(64));
2013-12-20 20:25:49 +01:00
if (photo.image != null) {
photoImage.setImageBitmap(photo.image);
} else {
photoImage.setImage(photo.photoOwner.location, "50_50", Utilities.getGroupAvatarForId(currentChat.id));
}
2013-10-25 17:19:00 +02:00
}
}
} else if (type == 12 || type == 13) {
TLRPC.User contactUser = MessagesController.getInstance().users.get(message.messageOwner.media.user_id);
2013-10-25 17:19:00 +02:00
if (contactUser != null) {
nameTextView.setText(Utilities.formatName(message.messageOwner.media.first_name, message.messageOwner.media.last_name));
nameTextView.setTextColor(Utilities.getColorForId(contactUser.id));
String phone = message.messageOwner.media.phone_number;
if (phone != null && phone.length() != 0) {
if (!phone.startsWith("+")) {
phone = "+" + phone;
}
phoneTextView.setText(PhoneFormat.getInstance().format(phone));
2013-10-25 17:19:00 +02:00
} else {
phoneTextView.setText("Unknown");
}
TLRPC.FileLocation photo = null;
if (contactUser.photo != null) {
photo = contactUser.photo.photo_small;
}
int placeHolderId = Utilities.getUserAvatarForId(contactUser.id);
contactAvatar.setImage(photo, "50_50", placeHolderId);
if (contactUser.id != UserConfig.clientUserId && ContactsController.getInstance().contactsDict.get(contactUser.id) == null) {
2013-10-25 17:19:00 +02:00
addContactView.setVisibility(View.VISIBLE);
} else {
addContactView.setVisibility(View.GONE);
}
2013-12-20 20:25:49 +01:00
} else {
nameTextView.setText(Utilities.formatName(message.messageOwner.media.first_name, message.messageOwner.media.last_name));
nameTextView.setTextColor(Utilities.getColorForId(message.messageOwner.media.user_id));
String phone = message.messageOwner.media.phone_number;
if (phone != null && phone.length() != 0) {
if (message.messageOwner.media.user_id != 0 && !phone.startsWith("+")) {
2013-12-20 20:25:49 +01:00
phone = "+" + phone;
}
phoneTextView.setText(PhoneFormat.getInstance().format(phone));
2013-12-20 20:25:49 +01:00
} else {
phoneTextView.setText("Unknown");
}
contactAvatar.setImageResource(Utilities.getUserAvatarForId(message.messageOwner.media.user_id));
addContactView.setVisibility(View.GONE);
}
} else if (type == 15) {
if (unread_to_load == 1) {
messageTextView.setText(LocaleController.formatString("OneNewMessage", R.string.OneNewMessage, unread_to_load));
2013-12-20 20:25:49 +01:00
} else {
messageTextView.setText(LocaleController.formatString("FewNewMessages", R.string.FewNewMessages, unread_to_load));
2013-10-25 17:19:00 +02:00
}
} else if (type == 8 || type == 9) {
2013-12-26 12:43:37 +01:00
TLRPC.Document document = message.messageOwner.media.document;
if (document instanceof TLRPC.TL_document || document instanceof TLRPC.TL_documentEncrypted) {
nameTextView.setText(message.messageOwner.media.document.file_name);
String fileName = message.getFileName();
int idx = fileName.lastIndexOf(".");
String ext = null;
if (idx != -1) {
ext = fileName.substring(idx + 1);
}
if (ext == null || ext.length() == 0) {
ext = message.messageOwner.media.document.mime_type;
}
ext = ext.toUpperCase();
if (document.size < 1024) {
phoneTextView.setText(String.format("%d B %s", document.size, ext));
} else if (document.size < 1024 * 1024) {
phoneTextView.setText(String.format("%.1f KB %s", document.size / 1024.0f, ext));
} else {
phoneTextView.setText(String.format("%.1f MB %s", document.size / 1024.0f / 1024.0f, ext));
}
if (document.thumb instanceof TLRPC.TL_photoSize) {
} else if (document.thumb instanceof TLRPC.TL_photoCachedSize) {
} else {
if (type == 8) {
2013-12-26 12:43:37 +01:00
contactAvatar.setImageResource(R.drawable.doc_green);
} else {
contactAvatar.setImageResource(R.drawable.doc_blue);
}
}
} else {
nameTextView.setText("Error");
phoneTextView.setText("Error");
if (type == 8) {
2013-12-26 12:43:37 +01:00
contactAvatar.setImageResource(R.drawable.doc_green);
} else {
contactAvatar.setImageResource(R.drawable.doc_blue);
}
}
2013-10-25 17:19:00 +02:00
}
if (message.messageOwner.id < 0 && message.messageOwner.send_state != MessagesController.MESSAGE_SEND_STATE_SEND_ERROR && message.messageOwner.send_state != MessagesController.MESSAGE_SEND_STATE_SENT) {
if (MessagesController.getInstance().sendingMessages.get(message.messageOwner.id) == null) {
2013-10-25 17:19:00 +02:00
message.messageOwner.send_state = MessagesController.MESSAGE_SEND_STATE_SEND_ERROR;
}
}
if (message.messageOwner.from_id == UserConfig.clientUserId) {
if (halfCheckImage != null) {
if (message.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SENDING) {
2013-12-20 20:25:49 +01:00
checkImage.setVisibility(View.INVISIBLE);
if (type == 6 || type == 4) {
2013-10-25 17:19:00 +02:00
halfCheckImage.setImageResource(R.drawable.msg_clock_photo);
} else {
halfCheckImage.setImageResource(R.drawable.msg_clock);
}
halfCheckImage.setVisibility(View.VISIBLE);
if (actionView != null) {
if (actionView != null) {
actionView.setVisibility(View.VISIBLE);
}
Float progress = FileLoader.getInstance().fileProgresses.get(message.messageOwner.attachPath);
2013-10-25 17:19:00 +02:00
if (progress != null) {
actionProgress.setProgress((int)(progress * 100));
} else {
actionProgress.setProgress(0);
}
progressByTag.put((Integer)actionProgress.getTag(), message.messageOwner.attachPath);
progressBarMap.put(message.messageOwner.attachPath, actionProgress);
}
if (actionAttachButton != null) {
actionAttachButton.setVisibility(View.GONE);
}
} else if (message.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SEND_ERROR) {
halfCheckImage.setVisibility(View.VISIBLE);
halfCheckImage.setImageResource(R.drawable.msg_warning);
if (checkImage != null) {
checkImage.setVisibility(View.INVISIBLE);
}
if (actionView != null) {
actionView.setVisibility(View.GONE);
}
if (actionAttachButton != null) {
actionAttachButton.setVisibility(View.GONE);
}
} else if (message.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SENT) {
if (!message.messageOwner.unread) {
halfCheckImage.setVisibility(View.VISIBLE);
2013-12-20 20:25:49 +01:00
checkImage.setVisibility(View.VISIBLE);
if (type == 6 || type == 4) {
2013-12-20 20:25:49 +01:00
halfCheckImage.setImageResource(R.drawable.msg_halfcheck_w);
2013-10-25 17:19:00 +02:00
} else {
halfCheckImage.setImageResource(R.drawable.msg_halfcheck);
}
} else {
halfCheckImage.setVisibility(View.VISIBLE);
2013-12-20 20:25:49 +01:00
checkImage.setVisibility(View.INVISIBLE);
if (type == 6 || type == 4) {
2013-12-20 20:25:49 +01:00
halfCheckImage.setImageResource(R.drawable.msg_check_w);
2013-10-25 17:19:00 +02:00
} else {
halfCheckImage.setImageResource(R.drawable.msg_check);
}
}
if (actionView != null) {
actionView.setVisibility(View.GONE);
}
if (actionAttachButton != null) {
actionAttachButton.setVisibility(View.VISIBLE);
}
}
}
}
if (message.type == 6 || message.type == 7 || message.type == 8 || message.type == 9) {
2013-10-25 17:19:00 +02:00
Integer tag = (Integer)actionProgress.getTag();
String file = progressByTag.get(tag);
if (file != null) {
removeFromloadingFile(file, actionProgress);
}
if (message.messageOwner.send_state != MessagesController.MESSAGE_SEND_STATE_SENDING && message.messageOwner.send_state != MessagesController.MESSAGE_SEND_STATE_SEND_ERROR) {
if (file != null) {
progressBarMap.remove(file);
}
String fileName = null;
if (photoFileName != null) {
fileName = photoFileName;
} else {
fileName = message.getFileName();
}
2013-10-25 17:19:00 +02:00
boolean load = false;
if (message.type != 2 && message.type != 3 && message.messageOwner.attachPath != null && message.messageOwner.attachPath.length() != 0) {
2013-10-25 17:19:00 +02:00
File f = new File(message.messageOwner.attachPath);
if (f.exists()) {
if (actionAttachButton != null) {
actionAttachButton.setVisibility(View.VISIBLE);
if (message.type == 6 || message.type == 7) {
actionAttachButton.setText(LocaleController.getString("ViewVideo", R.string.ViewVideo));
} else if (message.type == 8 || message.type == 9) {
actionAttachButton.setText(LocaleController.getString("Open", R.string.Open));
}
}
if (actionView != null) {
actionView.setVisibility(View.GONE);
}
2013-10-25 17:19:00 +02:00
} else {
load = true;
}
}
if (load && message.messageOwner.attachPath != null && message.messageOwner.attachPath.length() != 0 || !load && (message.messageOwner.attachPath == null || message.messageOwner.attachPath.length() == 0)) {
File cacheFile = null;
if ((cacheFile = new File(Utilities.getCacheDir(), fileName)).exists()) {
if (actionAttachButton != null) {
actionAttachButton.setVisibility(View.VISIBLE);
if (message.type == 6 || message.type == 7) {
actionAttachButton.setText(LocaleController.getString("ViewVideo", R.string.ViewVideo));
} else if (message.type == 8 || message.type == 9) {
actionAttachButton.setText(LocaleController.getString("Open", R.string.Open));
}
}
if (actionView != null) {
actionView.setVisibility(View.GONE);
}
load = false;
2013-10-25 17:19:00 +02:00
} else {
load = true;
}
}
if (load) {
Float progress = FileLoader.getInstance().fileProgresses.get(fileName);
2013-10-25 17:19:00 +02:00
if (loadingFile.containsKey(fileName) || progress != null) {
if (progress != null) {
actionProgress.setProgress((int)(progress * 100));
} else {
actionProgress.setProgress(0);
}
progressByTag.put((Integer)actionProgress.getTag(), fileName);
addToLoadingFile(fileName, actionProgress);
if (actionView != null) {
actionView.setVisibility(View.VISIBLE);
if (photoFileName != null) {
actionCancelButton.setImageResource(R.drawable.photo_download_cancel_states);
}
}
if (actionAttachButton != null) {
actionAttachButton.setVisibility(View.GONE);
}
2013-10-25 17:19:00 +02:00
} else {
if (actionView != null) {
actionView.setVisibility(View.GONE);
}
if (actionAttachButton != null) {
actionAttachButton.setVisibility(View.VISIBLE);
if (message.type == 6 || message.type == 7) {
actionAttachButton.setText(String.format("%s %.1f MB", LocaleController.getString("DOWNLOAD", R.string.DOWNLOAD), message.messageOwner.media.video.size / 1024.0f / 1024.0f));
} else if (message.type == 8 || message.type == 9) {
actionAttachButton.setText(LocaleController.getString("DOWNLOAD", R.string.DOWNLOAD));
}
2013-12-26 12:43:37 +01:00
}
2013-10-25 17:19:00 +02:00
}
}
}
if (message.type == 8 || message.type == 9) {
int width;
if (currentChat != null && type != 8) {
if (actionView.getVisibility() == View.VISIBLE) {
width = displaySize.x - Utilities.dp(290);
} else {
width = displaySize.x - Utilities.dp(270);
}
2013-12-26 12:43:37 +01:00
} else {
if (actionView.getVisibility() == View.VISIBLE) {
width = displaySize.x - Utilities.dp(240);
} else {
width = displaySize.x - Utilities.dp(220);
}
2013-12-26 12:43:37 +01:00
}
nameTextView.setMaxWidth(width);
phoneTextView.setMaxWidth(width);
2013-12-26 12:43:37 +01:00
}
}
2013-10-25 17:19:00 +02:00
}
public ChatListRowHolderEx(View view, int type) {
2013-10-25 17:19:00 +02:00
avatarImageView = (BackupImageView)view.findViewById(R.id.chat_group_avatar_image);
nameTextView = (TextView)view.findViewById(R.id.chat_user_group_name);
messageLayoutAction = (MessageActionLayout)view.findViewById(R.id.message_action_layout);
timeTextView = (TextView)view.findViewById(R.id.chat_time_text);
photoImage = (BackupImageView)view.findViewById(R.id.chat_photo_image);
halfCheckImage = (ImageView)view.findViewById(R.id.chat_row_halfcheck);
checkImage = (ImageView)view.findViewById(R.id.chat_row_check);
actionAttachButton = (TextView)view.findViewById(R.id.chat_view_action_button);
messageTextView = (TextView)view.findViewById(R.id.chat_message_text);
videoTimeText = (TextView)view.findViewById(R.id.chat_video_time);
actionView = view.findViewById(R.id.chat_view_action_layout);
actionProgress = (ProgressBar)view.findViewById(R.id.chat_view_action_progress);
actionCancelButton = (ImageView)view.findViewById(R.id.chat_view_action_cancel_button);
phoneTextView = (TextView)view.findViewById(R.id.phone_text_view);
contactAvatar = (BackupImageView)view.findViewById(R.id.contact_avatar);
contactView = view.findViewById(R.id.shared_layout);
addContactButton = (ImageView)view.findViewById(R.id.add_contact_button);
addContactView = view.findViewById(R.id.add_contact_view);
chatBubbleView = view.findViewById(R.id.chat_bubble_layout);
if (messageTextView != null) {
messageTextView.setTextSize(TypedValue.COMPLEX_UNIT_SP, MessagesController.getInstance().fontSize);
2013-10-25 17:19:00 +02:00
}
if (actionProgress != null) {
actionProgress.setTag(progressTag);
progressTag++;
}
if (type != 2 && type != 3) {
if (actionView != null) {
if (isCustomTheme) {
actionView.setBackgroundResource(R.drawable.system_black);
} else {
actionView.setBackgroundResource(R.drawable.system_blue);
}
2013-10-25 17:19:00 +02:00
}
}
if (messageLayoutAction != null) {
if (isCustomTheme) {
2013-12-20 20:25:49 +01:00
messageLayoutAction.setBackgroundResource(R.drawable.system_black);
2013-10-25 17:19:00 +02:00
} else {
2013-12-20 20:25:49 +01:00
messageLayoutAction.setBackgroundResource(R.drawable.system_blue);
2013-10-25 17:19:00 +02:00
}
}
if (addContactButton != null) {
addContactButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (mActionMode != null) {
processRowSelect(view);
return;
}
ContactAddActivity fragment = new ContactAddActivity();
Bundle args = new Bundle();
args.putInt("user_id", message.messageOwner.media.user_id);
2013-12-20 20:25:49 +01:00
args.putString("phone", message.messageOwner.media.phone_number);
2013-10-25 17:19:00 +02:00
fragment.setArguments(args);
((LaunchActivity)parentActivity).presentFragment(fragment, "add_contact_" + message.messageOwner.media.user_id, false);
2013-10-25 17:19:00 +02:00
}
});
addContactButton.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
createMenu(v, false);
return true;
}
});
}
if (contactView != null) {
contactView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (message.type == 8 || message.type == 9) {
2013-12-26 12:43:37 +01:00
processOnClick(view);
} else if (message.type == 12 || message.type == 13) {
if (mActionMode != null) {
processRowSelect(view);
return;
}
if (message.messageOwner.media.user_id != UserConfig.clientUserId) {
TLRPC.User user = null;
if (message.messageOwner.media.user_id != 0) {
user = MessagesController.getInstance().users.get(message.messageOwner.media.user_id);
}
if (user != null) {
UserProfileActivity fragment = new UserProfileActivity();
Bundle args = new Bundle();
args.putInt("user_id", message.messageOwner.media.user_id);
fragment.setArguments(args);
((LaunchActivity) parentActivity).presentFragment(fragment, "user_" + message.messageOwner.media.user_id, false);
} else {
if (parentActivity == null || message.messageOwner.media.phone_number == null || message.messageOwner.media.phone_number.length() == 0) {
return;
}
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setItems(new CharSequence[] {LocaleController.getString("Copy", R.string.Copy), LocaleController.getString("Call", R.string.Call)}, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (i == 1) {
try {
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + message.messageOwner.media.phone_number));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
} catch (Exception e) {
FileLog.e("tmessages", e);
}
} else if (i == 0) {
ActionBarActivity inflaterActivity = parentActivity;
if (inflaterActivity == null) {
inflaterActivity = (ActionBarActivity)getActivity();
}
if (inflaterActivity == null) {
return;
}
int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < android.os.Build.VERSION_CODES.HONEYCOMB) {
android.text.ClipboardManager clipboard = (android.text.ClipboardManager)inflaterActivity.getSystemService(Context.CLIPBOARD_SERVICE);
clipboard.setText(message.messageOwner.media.phone_number);
} else {
android.content.ClipboardManager clipboard = (android.content.ClipboardManager)inflaterActivity.getSystemService(Context.CLIPBOARD_SERVICE);
android.content.ClipData clip = android.content.ClipData.newPlainText("label", message.messageOwner.media.phone_number);
clipboard.setPrimaryClip(clip);
}
}
}
});
visibleDialog = builder.show();
visibleDialog.setCanceledOnTouchOutside(true);
visibleDialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
visibleDialog = null;
}
});
}
2013-12-26 12:43:37 +01:00
}
2013-10-25 17:19:00 +02:00
}
}
});
contactView.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
createMenu(v, false);
return true;
}
});
}
if (contactAvatar != null) {
contactAvatar.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
}
});
}
2013-10-25 17:19:00 +02:00
if (actionAttachButton != null) {
actionAttachButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
2013-12-26 12:43:37 +01:00
processOnClick(view);
2013-10-25 17:19:00 +02:00
}
});
}
if (avatarImageView != null) {
avatarImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (mActionMode != null) {
processRowSelect(view);
return;
}
if (message != null) {
UserProfileActivity fragment = new UserProfileActivity();
Bundle args = new Bundle();
args.putInt("user_id", message.messageOwner.from_id);
fragment.setArguments(args);
((LaunchActivity)parentActivity).presentFragment(fragment, "user_" + message.messageOwner.from_id, false);
2013-10-25 17:19:00 +02:00
}
}
});
}
if (actionCancelButton != null) {
actionCancelButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (message != null) {
Integer tag = (Integer)actionProgress.getTag();
if (message.messageOwner.send_state != 0) {
MessagesController.getInstance().cancelSendingMessage(message);
2013-10-25 17:19:00 +02:00
String file = progressByTag.get(tag);
if (file != null) {
progressBarMap.remove(file);
}
} else if (message.type == 6 || message.type == 7 || message.type == 8 || message.type == 9) {
2013-10-25 17:19:00 +02:00
String file = progressByTag.get(tag);
if (file != null) {
loadingFile.remove(file);
2013-12-26 12:43:37 +01:00
if (message.type == 6 || message.type == 7) {
FileLoader.getInstance().cancelLoadFile(message.messageOwner.media.video, null, null, null);
} else if (message.type == 8 || message.type == 9) {
FileLoader.getInstance().cancelLoadFile(null, null, message.messageOwner.media.document, null);
2013-12-26 12:43:37 +01:00
}
2013-10-25 17:19:00 +02:00
updateVisibleRows();
}
}
}
}
});
}
if (photoImage != null) {
photoImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
2013-12-26 12:43:37 +01:00
processOnClick(view);
2013-10-25 17:19:00 +02:00
}
});
photoImage.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
createMenu(v, false);
return true;
}
});
}
}
2013-12-26 12:43:37 +01:00
private void alertUserOpenError() {
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
builder.setPositiveButton(R.string.OK, null);
if (message.type == 6 || message.type == 7) {
builder.setMessage(R.string.NoPlayerInstalled);
} else {
builder.setMessage(LocaleController.formatString("NoHandleAppInstalled", R.string.NoHandleAppInstalled, message.messageOwner.media.document.mime_type));
}
visibleDialog = builder.show();
visibleDialog.setCanceledOnTouchOutside(true);
visibleDialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
visibleDialog = null;
}
});
}
2013-12-26 12:43:37 +01:00
private void processOnClick(View view) {
if (mActionMode != null) {
processRowSelect(view);
return;
}
if (message != null) {
if (message.type == 4 || message.type == 5) {
if (!isGoogleMapsInstalled()) {
return;
}
NotificationCenter.getInstance().addToMemCache(0, message);
2013-12-26 12:43:37 +01:00
LocationActivity fragment = new LocationActivity();
((LaunchActivity)parentActivity).presentFragment(fragment, "location_view", false);
2013-12-26 12:43:37 +01:00
} else if (message.type == 11) {
NotificationCenter.getInstance().addToMemCache(51, message);
2013-12-26 12:43:37 +01:00
Intent intent = new Intent(parentActivity, GalleryImageViewer.class);
startActivity(intent);
} else if (message.type == 6 || message.type == 7 || message.type == 8 || message.type == 9) {
2013-12-26 12:43:37 +01:00
File f = null;
String fileName = message.getFileName();
if (message.messageOwner.attachPath != null && message.messageOwner.attachPath.length() != 0) {
f = new File(message.messageOwner.attachPath);
}
if (f == null || f != null && !f.exists()) {
2013-12-26 12:43:37 +01:00
f = new File(Utilities.getCacheDir(), fileName);
}
if (f != null && f.exists()) {
String realMimeType = null;
2013-12-26 12:43:37 +01:00
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
if (message.type == 6 || message.type == 7) {
intent.setDataAndType(Uri.fromFile(f), "video/mp4");
} else if (message.type == 8 || message.type == 9) {
2013-12-26 12:43:37 +01:00
MimeTypeMap myMime = MimeTypeMap.getSingleton();
int idx = fileName.lastIndexOf(".");
if (idx != -1) {
String ext = fileName.substring(idx + 1);
realMimeType = myMime.getMimeTypeFromExtension(ext.toLowerCase());
if (realMimeType != null) {
intent.setDataAndType(Uri.fromFile(f), realMimeType);
2013-12-26 12:43:37 +01:00
} else {
intent.setDataAndType(Uri.fromFile(f), "text/plain");
}
} else {
intent.setDataAndType(Uri.fromFile(f), "text/plain");
}
}
if (realMimeType != null) {
try {
startActivity(intent);
} catch (Exception e) {
intent.setDataAndType(Uri.fromFile(f), "text/plain");
startActivity(intent);
}
2013-12-26 12:43:37 +01:00
} else {
startActivity(intent);
2013-12-26 12:43:37 +01:00
}
} catch (Exception e) {
alertUserOpenError();
2013-12-26 12:43:37 +01:00
}
} else {
if (message.messageOwner.send_state != MessagesController.MESSAGE_SEND_STATE_SEND_ERROR && message.messageOwner.send_state != MessagesController.MESSAGE_SEND_STATE_SENDING || !message.messageOwner.out) {
if (!loadingFile.containsKey(fileName)) {
progressByTag.put((Integer)actionProgress.getTag(), fileName);
addToLoadingFile(fileName, actionProgress);
if (message.type == 6 || message.type == 7) {
FileLoader.getInstance().loadFile(message.messageOwner.media.video, null, null, null);
} else if (message.type == 8 || message.type == 9) {
FileLoader.getInstance().loadFile(null, null, message.messageOwner.media.document, null);
2013-12-26 12:43:37 +01:00
}
updateVisibleRows();
}
} else {
if (message.messageOwner.send_state == MessagesController.MESSAGE_SEND_STATE_SEND_ERROR) {
createMenu(view, false);
}
}
}
}
}
}
2013-10-25 17:19:00 +02:00
}
}