2013-10-25 15:19:00 +00:00
|
|
|
/*
|
2013-12-20 19:25:49 +00:00
|
|
|
* This is the source code of Telegram for Android v. 1.3.2.
|
2013-10-25 15:19:00 +00: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.app.AlertDialog;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Bundle;
|
2013-12-20 19:25:49 +00:00
|
|
|
import android.support.v4.internal.view.SupportMenuItem;
|
|
|
|
import android.support.v4.view.MenuItemCompat;
|
|
|
|
import android.support.v7.app.ActionBar;
|
|
|
|
import android.support.v7.widget.SearchView;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.text.Html;
|
|
|
|
import android.view.LayoutInflater;
|
2013-12-20 19:25:49 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.BaseAdapter;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2013-11-04 12:31:01 +00:00
|
|
|
import org.telegram.PhoneFormat.PhoneFormat;
|
2013-10-25 15:19:00 +00:00
|
|
|
import org.telegram.TL.TLRPC;
|
|
|
|
import org.telegram.messenger.ConnectionsManager;
|
2013-12-20 19:25:49 +00:00
|
|
|
import org.telegram.messenger.FileLog;
|
2013-10-25 15:19:00 +00:00
|
|
|
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.Views.BackupImageView;
|
|
|
|
import org.telegram.ui.Views.BaseFragment;
|
|
|
|
import org.telegram.ui.Views.OnSwipeTouchListener;
|
|
|
|
import org.telegram.ui.Views.PinnedHeaderListView;
|
|
|
|
import org.telegram.ui.Views.SectionedBaseAdapter;
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
import java.lang.reflect.Field;
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Locale;
|
|
|
|
import java.util.Timer;
|
|
|
|
import java.util.TimerTask;
|
|
|
|
|
|
|
|
public class ContactsActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate {
|
|
|
|
private SectionedBaseAdapter listViewAdapter;
|
|
|
|
private PinnedHeaderListView listView;
|
|
|
|
private BaseAdapter searchListViewAdapter;
|
|
|
|
private boolean searchWas;
|
|
|
|
private boolean searching;
|
|
|
|
private boolean onlyUsers;
|
|
|
|
private boolean usersAsSections;
|
|
|
|
private boolean destroyAfterSelect;
|
|
|
|
private boolean returnAsResult;
|
|
|
|
private boolean createSecretChat;
|
|
|
|
private boolean creatingChat = false;
|
|
|
|
public int selectAlertString = 0;
|
|
|
|
private SearchView searchView;
|
|
|
|
private TextView epmtyTextView;
|
|
|
|
private HashMap<Integer, TLRPC.User> ignoreUsers;
|
2013-12-20 19:25:49 +00:00
|
|
|
private SupportMenuItem searchItem;
|
2013-10-25 15:19:00 +00:00
|
|
|
private boolean isRTL;
|
|
|
|
|
|
|
|
private Timer searchDialogsTimer;
|
|
|
|
public ArrayList<TLRPC.User> searchResult;
|
|
|
|
public ArrayList<CharSequence> searchResultNames;
|
|
|
|
public ContactsActivityDelegate delegate;
|
|
|
|
|
|
|
|
public static interface ContactsActivityDelegate {
|
|
|
|
public abstract void didSelectContact(int user_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@Override
|
|
|
|
public boolean onFragmentCreate() {
|
|
|
|
super.onFragmentCreate();
|
|
|
|
NotificationCenter.Instance.addObserver(this, MessagesController.contactsBookDidLoaded);
|
|
|
|
NotificationCenter.Instance.addObserver(this, MessagesController.contactsDidLoaded);
|
|
|
|
NotificationCenter.Instance.addObserver(this, MessagesController.updateInterfaces);
|
|
|
|
NotificationCenter.Instance.addObserver(this, MessagesController.encryptedChatCreated);
|
|
|
|
if (getArguments() != null) {
|
|
|
|
onlyUsers = getArguments().getBoolean("onlyUsers", false);
|
|
|
|
destroyAfterSelect = getArguments().getBoolean("destroyAfterSelect", false);
|
|
|
|
usersAsSections = getArguments().getBoolean("usersAsSections", false);
|
|
|
|
returnAsResult = getArguments().getBoolean("returnAsResult", false);
|
|
|
|
createSecretChat = getArguments().getBoolean("createSecretChat", false);
|
|
|
|
if (destroyAfterSelect) {
|
|
|
|
ignoreUsers = (HashMap<Integer, TLRPC.User>)NotificationCenter.Instance.getFromMemCache(7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFragmentDestroy() {
|
|
|
|
super.onFragmentDestroy();
|
|
|
|
NotificationCenter.Instance.removeObserver(this, MessagesController.contactsBookDidLoaded);
|
|
|
|
NotificationCenter.Instance.removeObserver(this, MessagesController.contactsDidLoaded);
|
|
|
|
NotificationCenter.Instance.removeObserver(this, MessagesController.updateInterfaces);
|
|
|
|
NotificationCenter.Instance.removeObserver(this, MessagesController.encryptedChatCreated);
|
|
|
|
delegate = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setHasOptionsMenu(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void willBeHidden() {
|
|
|
|
if (searchItem != null) {
|
|
|
|
if (searchItem.isActionViewExpanded()) {
|
|
|
|
searchItem.collapseActionView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
if (fragmentView == null) {
|
|
|
|
|
|
|
|
Locale locale = Locale.getDefault();
|
|
|
|
String lang = locale.getLanguage();
|
|
|
|
isRTL = lang != null && lang.toLowerCase().equals("ar");
|
|
|
|
|
|
|
|
fragmentView = inflater.inflate(R.layout.contacts_layout, container, false);
|
|
|
|
|
|
|
|
epmtyTextView = (TextView)fragmentView.findViewById(R.id.searchEmptyView);
|
|
|
|
searchListViewAdapter = new SearchAdapter(parentActivity);
|
|
|
|
|
|
|
|
listView = (PinnedHeaderListView)fragmentView.findViewById(R.id.listView);
|
|
|
|
listView.setEmptyView(epmtyTextView);
|
|
|
|
listView.setVerticalScrollBarEnabled(false);
|
|
|
|
|
|
|
|
listView.setAdapter(listViewAdapter = new ListAdapter(parentActivity));
|
|
|
|
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
|
|
|
|
if (searching && searchWas) {
|
|
|
|
int user_id = searchResult.get(i).id;
|
|
|
|
if (user_id == UserConfig.clientUserId) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (returnAsResult) {
|
|
|
|
if (ignoreUsers != null && ignoreUsers.containsKey(user_id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
didSelectResult(user_id, true);
|
|
|
|
} else {
|
|
|
|
if (createSecretChat) {
|
|
|
|
creatingChat = true;
|
|
|
|
MessagesController.Instance.startSecretChat(parentActivity, user_id);
|
|
|
|
} else {
|
|
|
|
ChatActivity fragment = new ChatActivity();
|
|
|
|
Bundle bundle = new Bundle();
|
|
|
|
bundle.putInt("user_id", user_id);
|
|
|
|
fragment.setArguments(bundle);
|
2013-12-20 19:25:49 +00:00
|
|
|
((ApplicationActivity)parentActivity).presentFragment(fragment, "chat" + Math.random(), destroyAfterSelect, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int section = listViewAdapter.getSectionForPosition(i);
|
|
|
|
int row = listViewAdapter.getPositionInSectionForPosition(i);
|
|
|
|
int uid = 0;
|
|
|
|
if (usersAsSections) {
|
|
|
|
if (section < MessagesController.Instance.sortedUsersSectionsArray.size()) {
|
|
|
|
ArrayList<TLRPC.TL_contact> arr = MessagesController.Instance.usersSectionsDict.get(MessagesController.Instance.sortedUsersSectionsArray.get(section));
|
|
|
|
uid = arr.get(row).user_id;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (section == 0) {
|
|
|
|
if (row == 0) {
|
|
|
|
try {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_SEND);
|
|
|
|
intent.setType("text/plain");
|
|
|
|
intent.putExtra(Intent.EXTRA_TEXT, getStringEntry(R.string.InviteText));
|
|
|
|
startActivity(intent);
|
|
|
|
} catch (Exception e) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
if (row - 1 < MessagesController.Instance.contacts.size()) {
|
|
|
|
uid = MessagesController.Instance.contacts.get(row - 1).user_id;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uid != 0) {
|
|
|
|
if (uid == UserConfig.clientUserId) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (returnAsResult) {
|
|
|
|
if (ignoreUsers != null && ignoreUsers.containsKey(uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
didSelectResult(uid, true);
|
|
|
|
} else {
|
|
|
|
if (createSecretChat) {
|
|
|
|
creatingChat = true;
|
|
|
|
MessagesController.Instance.startSecretChat(parentActivity, uid);
|
|
|
|
} else {
|
|
|
|
ChatActivity fragment = new ChatActivity();
|
|
|
|
Bundle bundle = new Bundle();
|
|
|
|
bundle.putInt("user_id", uid);
|
|
|
|
fragment.setArguments(bundle);
|
2013-12-20 19:25:49 +00:00
|
|
|
((ApplicationActivity)parentActivity).presentFragment(fragment, "chat" + Math.random(), destroyAfterSelect, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ArrayList<MessagesController.Contact> arr = MessagesController.Instance.contactsSectionsDict.get(MessagesController.Instance.sortedContactsSectionsArray.get(section - 1));
|
|
|
|
MessagesController.Contact contact = arr.get(row);
|
|
|
|
String usePhone = null;
|
|
|
|
for (String phone : contact.phones) {
|
|
|
|
if (usePhone == null) {
|
|
|
|
usePhone = phone;
|
|
|
|
}
|
2013-11-04 12:31:01 +00:00
|
|
|
String cleanPhone = PhoneFormat.stripExceptNumbers(usePhone);
|
|
|
|
TLRPC.TL_contact cLocal = MessagesController.Instance.contactsByPhones.get(cleanPhone);
|
2013-10-25 15:19:00 +00:00
|
|
|
if (cLocal != null) {
|
|
|
|
if (cLocal.user_id == UserConfig.clientUserId) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (createSecretChat) {
|
|
|
|
creatingChat = true;
|
|
|
|
MessagesController.Instance.startSecretChat(parentActivity, cLocal.user_id);
|
|
|
|
} else {
|
|
|
|
ChatActivity fragment = new ChatActivity();
|
|
|
|
Bundle bundle = new Bundle();
|
|
|
|
bundle.putInt("user_id", cLocal.user_id);
|
|
|
|
fragment.setArguments(bundle);
|
2013-12-20 19:25:49 +00:00
|
|
|
((ApplicationActivity)parentActivity).presentFragment(fragment, "chat" + Math.random(), destroyAfterSelect, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
|
|
|
|
builder.setMessage(getStringEntry(R.string.InviteUser));
|
|
|
|
builder.setTitle(getStringEntry(R.string.AppName));
|
|
|
|
final String arg1 = usePhone;
|
|
|
|
builder.setPositiveButton(getStringEntry(R.string.OK), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
try {
|
2013-12-20 19:25:49 +00:00
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromParts("sms", arg1, null));
|
2013-10-25 15:19:00 +00:00
|
|
|
intent.putExtra("sms_body", getStringEntry(R.string.InviteText));
|
|
|
|
startActivity(intent);
|
|
|
|
} catch (Exception e) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(getStringEntry(R.string.Cancel), null);
|
|
|
|
builder.show().setCanceledOnTouchOutside(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
listView.setOnTouchListener(new OnSwipeTouchListener() {
|
|
|
|
public void onSwipeRight() {
|
|
|
|
finishFragment(true);
|
|
|
|
if (searchItem != null) {
|
|
|
|
if (searchItem.isActionViewExpanded()) {
|
|
|
|
searchItem.collapseActionView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
epmtyTextView.setOnTouchListener(new OnSwipeTouchListener() {
|
|
|
|
public void onSwipeRight() {
|
|
|
|
finishFragment(true);
|
|
|
|
if (searchItem != null) {
|
|
|
|
if (searchItem.isActionViewExpanded()) {
|
|
|
|
searchItem.collapseActionView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
ViewGroup parent = (ViewGroup)fragmentView.getParent();
|
|
|
|
if (parent != null) {
|
|
|
|
parent.removeView(fragmentView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fragmentView;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void didSelectResult(final int user_id, boolean useAlert) {
|
|
|
|
if (useAlert && selectAlertString != 0) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
|
|
|
|
builder.setTitle(R.string.AppName);
|
|
|
|
TLRPC.User user = MessagesController.Instance.users.get(user_id);
|
|
|
|
builder.setMessage(String.format(getStringEntry(selectAlertString), Utilities.formatName(user.first_name, user.last_name)));
|
|
|
|
builder.setPositiveButton(R.string.OK, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
didSelectResult(user_id, false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.Cancel, null);
|
|
|
|
builder.show().setCanceledOnTouchOutside(true);
|
|
|
|
} else {
|
|
|
|
if (delegate != null) {
|
|
|
|
delegate.didSelectContact(user_id);
|
|
|
|
delegate = null;
|
|
|
|
}
|
|
|
|
finishFragment();
|
|
|
|
if (searchItem != null) {
|
|
|
|
if (searchItem.isActionViewExpanded()) {
|
|
|
|
searchItem.collapseActionView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@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);
|
|
|
|
actionBar.setSubtitle(null);
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
TextView title = (TextView)parentActivity.findViewById(R.id.action_bar_title);
|
2013-10-25 15:19:00 +00:00
|
|
|
if (title == null) {
|
|
|
|
final int subtitleId = parentActivity.getResources().getIdentifier("action_bar_title", "id", "android");
|
|
|
|
title = (TextView)parentActivity.findViewById(subtitleId);
|
|
|
|
}
|
|
|
|
if (title != null) {
|
|
|
|
title.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
|
|
|
|
title.setCompoundDrawablePadding(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (destroyAfterSelect) {
|
2013-12-20 19:25:49 +00:00
|
|
|
actionBar.setTitle(getStringEntry(R.string.SelectContact));
|
2013-10-25 15:19:00 +00:00
|
|
|
} else {
|
2013-12-20 19:25:49 +00:00
|
|
|
actionBar.setTitle(getStringEntry(R.string.Contacts));
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2013-12-20 19:25:49 +00:00
|
|
|
|
|
|
|
((ApplicationActivity)parentActivity).fixBackButton();
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
if (isFinish) {
|
|
|
|
return;
|
|
|
|
}
|
2013-12-20 19:25:49 +00:00
|
|
|
if (getActivity() == null) {
|
2013-10-25 15:19:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!firstStart && listViewAdapter != null) {
|
|
|
|
listViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
firstStart = false;
|
|
|
|
((ApplicationActivity)parentActivity).showActionBar();
|
|
|
|
((ApplicationActivity)parentActivity).updateActionBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void searchDialogs(final String query) {
|
|
|
|
if (query == null) {
|
|
|
|
searchResult = null;
|
|
|
|
searchResultNames = null;
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
if (searchDialogsTimer != null) {
|
|
|
|
searchDialogsTimer.cancel();
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
searchDialogsTimer = new Timer();
|
|
|
|
searchDialogsTimer.schedule(new TimerTask() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
searchDialogsTimer.cancel();
|
|
|
|
searchDialogsTimer = null;
|
|
|
|
} catch (Exception e) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
processSearch(query);
|
|
|
|
}
|
|
|
|
}, 100, 300);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processSearch(final String query) {
|
|
|
|
Utilities.globalQueue.postRunnable(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2013-12-20 19:25:49 +00:00
|
|
|
|
|
|
|
String q = query.trim().toLowerCase();
|
|
|
|
if (q.length() == 0) {
|
2013-10-25 15:19:00 +00:00
|
|
|
updateSearchResults(new ArrayList<TLRPC.User>(), new ArrayList<CharSequence>());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
long time = System.currentTimeMillis();
|
|
|
|
ArrayList<TLRPC.User> resultArray = new ArrayList<TLRPC.User>();
|
|
|
|
ArrayList<CharSequence> resultArrayNames = new ArrayList<CharSequence>();
|
|
|
|
|
|
|
|
for (TLRPC.TL_contact contact : MessagesController.Instance.contacts) {
|
|
|
|
TLRPC.User user = MessagesController.Instance.users.get(contact.user_id);
|
|
|
|
if (user.first_name != null && user.first_name.toLowerCase().startsWith(q) || user.last_name != null && user.last_name.toLowerCase().startsWith(q)) {
|
|
|
|
if (user.id == UserConfig.clientUserId) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
resultArrayNames.add(Utilities.generateSearchName(user.first_name, user.last_name, q));
|
|
|
|
resultArray.add(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateSearchResults(resultArray, resultArrayNames);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateSearchResults(final ArrayList<TLRPC.User> users, final ArrayList<CharSequence> names) {
|
|
|
|
Utilities.RunOnUIThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
searchResult = users;
|
|
|
|
searchResultNames = names;
|
|
|
|
searchListViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
int itemId = item.getItemId();
|
|
|
|
switch (itemId) {
|
|
|
|
case android.R.id.home:
|
|
|
|
if (searchItem != null) {
|
|
|
|
if (searchItem.isActionViewExpanded()) {
|
|
|
|
searchItem.collapseActionView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finishFragment();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
|
|
|
super.onCreateOptionsMenu(menu, inflater);
|
|
|
|
|
|
|
|
inflater.inflate(R.menu.contacts_menu, menu);
|
2013-12-20 19:25:49 +00:00
|
|
|
searchItem = (SupportMenuItem)menu.findItem(R.id.messages_list_menu_search);
|
|
|
|
searchView = (SearchView)searchItem.getActionView();
|
|
|
|
|
|
|
|
TextView textView = (TextView) searchView.findViewById(R.id.search_src_text);
|
|
|
|
if (textView != null) {
|
|
|
|
textView.setTextColor(0xffffffff);
|
|
|
|
try {
|
|
|
|
Field mCursorDrawableRes = TextView.class.getDeclaredField("mCursorDrawableRes");
|
|
|
|
mCursorDrawableRes.setAccessible(true);
|
|
|
|
mCursorDrawableRes.set(textView, R.drawable.search_carret);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
ImageView img = (ImageView) searchView.findViewById(R.id.search_close_btn);
|
2013-10-25 15:19:00 +00:00
|
|
|
if (img != null) {
|
2013-12-20 19:25:49 +00:00
|
|
|
img.setImageResource(R.drawable.ic_msg_btn_cross_custom);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onQueryTextSubmit(String s) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onQueryTextChange(String s) {
|
|
|
|
searchDialogs(s);
|
|
|
|
if (s.length() != 0) {
|
|
|
|
searchWas = true;
|
|
|
|
if (listView != null) {
|
2013-11-04 12:31:01 +00:00
|
|
|
float density = ApplicationLoader.applicationContext.getResources().getDisplayMetrics().density;
|
2013-10-25 15:19:00 +00:00
|
|
|
listView.setPadding((int)(density * 16), listView.getPaddingTop(), (int)(density * 16), listView.getPaddingBottom());
|
|
|
|
listView.setAdapter(searchListViewAdapter);
|
|
|
|
if(android.os.Build.VERSION.SDK_INT >= 11) {
|
|
|
|
listView.setFastScrollAlwaysVisible(false);
|
|
|
|
}
|
|
|
|
listView.setFastScrollEnabled(false);
|
|
|
|
listView.setVerticalScrollBarEnabled(true);
|
|
|
|
}
|
|
|
|
if (epmtyTextView != null) {
|
|
|
|
epmtyTextView.setText(getStringEntry(R.string.NoResult));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
searchItem.setSupportOnActionExpandListener(new MenuItemCompat.OnActionExpandListener() {
|
2013-10-25 15:19:00 +00:00
|
|
|
@Override
|
|
|
|
public boolean onMenuItemActionExpand(MenuItem menuItem) {
|
2013-12-20 19:25:49 +00:00
|
|
|
if (parentActivity != null) {
|
|
|
|
ActionBar actionBar = parentActivity.getSupportActionBar();
|
|
|
|
actionBar.setIcon(R.drawable.ic_ab_search);
|
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
searching = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onMenuItemActionCollapse(MenuItem menuItem) {
|
|
|
|
searchView.setQuery("", false);
|
|
|
|
searchDialogs(null);
|
|
|
|
searching = false;
|
|
|
|
searchWas = false;
|
2013-12-20 19:25:49 +00:00
|
|
|
ViewGroup group = (ViewGroup) listView.getParent();
|
2013-10-25 15:19:00 +00:00
|
|
|
listView.setAdapter(listViewAdapter);
|
2013-11-04 12:31:01 +00:00
|
|
|
float density = ApplicationLoader.applicationContext.getResources().getDisplayMetrics().density;
|
2013-10-25 15:19:00 +00:00
|
|
|
if (!isRTL) {
|
2013-12-20 19:25:49 +00:00
|
|
|
listView.setPadding((int) (density * 16), listView.getPaddingTop(), (int) (density * 30), listView.getPaddingBottom());
|
2013-10-25 15:19:00 +00:00
|
|
|
} else {
|
2013-12-20 19:25:49 +00:00
|
|
|
listView.setPadding((int) (density * 30), listView.getPaddingTop(), (int) (density * 16), listView.getPaddingBottom());
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2013-12-20 19:25:49 +00:00
|
|
|
if (android.os.Build.VERSION.SDK_INT >= 11) {
|
2013-10-25 15:19:00 +00:00
|
|
|
listView.setFastScrollAlwaysVisible(true);
|
|
|
|
}
|
|
|
|
listView.setFastScrollEnabled(true);
|
|
|
|
listView.setVerticalScrollBarEnabled(false);
|
2013-12-20 19:25:49 +00:00
|
|
|
((ApplicationActivity)parentActivity).updateActionBar();
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
epmtyTextView.setText(getStringEntry(R.string.NoContacts));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void didReceivedNotification(int id, Object... args) {
|
|
|
|
if (id == MessagesController.contactsDidLoaded || id == MessagesController.contactsBookDidLoaded) {
|
|
|
|
if (listViewAdapter != null) {
|
|
|
|
listViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
} else if (id == MessagesController.updateInterfaces) {
|
|
|
|
if (listView != null) {
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
} else if (id == MessagesController.encryptedChatCreated) {
|
|
|
|
if (createSecretChat && creatingChat) {
|
|
|
|
TLRPC.EncryptedChat encryptedChat = (TLRPC.EncryptedChat)args[0];
|
|
|
|
ChatActivity fragment = new ChatActivity();
|
|
|
|
Bundle bundle = new Bundle();
|
|
|
|
bundle.putInt("enc_id", encryptedChat.id);
|
|
|
|
fragment.setArguments(bundle);
|
2013-12-20 19:25:49 +00:00
|
|
|
((ApplicationActivity)parentActivity).presentFragment(fragment, "chat" + Math.random(), true, false);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class SearchAdapter extends BaseAdapter {
|
|
|
|
private Context mContext;
|
|
|
|
|
|
|
|
public SearchAdapter(Context context) {
|
|
|
|
mContext = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean areAllItemsEnabled() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEnabled(int i) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
if (searchResult == null) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return searchResult.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getItem(int i) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int i) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasStableIds() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int i, View view, ViewGroup viewGroup) {
|
|
|
|
int type = getItemViewType(i);
|
|
|
|
if (view == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
if (type == 0) {
|
|
|
|
view = li.inflate(R.layout.messages_search_user_layout, viewGroup, false);
|
|
|
|
} else {
|
|
|
|
view = li.inflate(R.layout.messages_search_chat_layout, viewGroup, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ContactListRowHolder holder = (ContactListRowHolder)view.getTag();
|
|
|
|
if (holder == null) {
|
|
|
|
holder = new ContactListRowHolder(view);
|
|
|
|
view.setTag(holder);
|
|
|
|
}
|
|
|
|
View divider = view.findViewById(R.id.settings_row_divider);
|
|
|
|
if (i == searchResult.size() - 1) {
|
|
|
|
divider.setVisibility(View.INVISIBLE);
|
|
|
|
} else {
|
|
|
|
divider.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
Object obj = searchResult.get(i);
|
|
|
|
CharSequence name = searchResultNames.get(i);
|
|
|
|
|
|
|
|
TLRPC.User user = MessagesController.Instance.users.get(((TLRPC.User)obj).id);
|
|
|
|
|
|
|
|
holder.nameTextView.setText(name);
|
|
|
|
|
|
|
|
if (user != null) {
|
|
|
|
if (ignoreUsers != null) {
|
|
|
|
if (ignoreUsers.containsKey(user.id)) {
|
|
|
|
if(android.os.Build.VERSION.SDK_INT >= 11) {
|
|
|
|
holder.avatarImage.setAlpha(0.5f);
|
|
|
|
holder.messageTextView.setAlpha(0.5f);
|
|
|
|
holder.nameTextView.setAlpha(0.5f);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(android.os.Build.VERSION.SDK_INT >= 11) {
|
|
|
|
holder.avatarImage.setAlpha(1.0f);
|
|
|
|
holder.messageTextView.setAlpha(1.0f);
|
|
|
|
holder.nameTextView.setAlpha(1.0f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TLRPC.FileLocation photo = null;
|
|
|
|
if (user.photo != null) {
|
|
|
|
photo = user.photo.photo_small;
|
|
|
|
}
|
|
|
|
int placeHolderId = Utilities.getUserAvatarForId(user.id);
|
|
|
|
holder.avatarImage.setImage(photo, "50_50", placeHolderId);
|
|
|
|
|
|
|
|
if (user.status == null) {
|
|
|
|
holder.messageTextView.setTextColor(0xff808080);
|
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.Offline));
|
|
|
|
} else {
|
|
|
|
int currentTime = ConnectionsManager.Instance.getCurrentTime();
|
|
|
|
if (user.status.expires > currentTime || user.status.was_online > currentTime) {
|
2013-12-20 19:25:49 +00:00
|
|
|
holder.messageTextView.setTextColor(0xff357aa8);
|
2013-10-25 15:19:00 +00:00
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.Online));
|
|
|
|
} else {
|
|
|
|
if (user.status.was_online <= 10000 && user.status.expires <= 10000) {
|
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.Invisible));
|
|
|
|
} else {
|
|
|
|
int value = user.status.was_online;
|
|
|
|
if (value == 0) {
|
|
|
|
value = user.status.expires;
|
|
|
|
}
|
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.LastSeen) + " " + Utilities.formatDateOnline(value));
|
|
|
|
}
|
|
|
|
holder.messageTextView.setTextColor(0xff808080);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int i) {
|
|
|
|
Object obj = searchResult.get(i);
|
|
|
|
if (obj instanceof TLRPC.User) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getViewTypeCount() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEmpty() {
|
|
|
|
return searchResult == null || searchResult.size() == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class ListAdapter extends SectionedBaseAdapter {
|
|
|
|
private Context mContext;
|
|
|
|
|
|
|
|
public ListAdapter(Context context) {
|
|
|
|
mContext = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getItem(int section, int position) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int section, int position) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getSectionCount() {
|
|
|
|
int count = 0;
|
|
|
|
if (usersAsSections) {
|
|
|
|
count += MessagesController.Instance.sortedUsersSectionsArray.size();
|
|
|
|
} else {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
if (!onlyUsers) {
|
|
|
|
count += MessagesController.Instance.sortedContactsSectionsArray.size();
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCountForSection(int section) {
|
|
|
|
if (usersAsSections) {
|
|
|
|
if (section < MessagesController.Instance.sortedUsersSectionsArray.size()) {
|
|
|
|
ArrayList<TLRPC.TL_contact> arr = MessagesController.Instance.usersSectionsDict.get(MessagesController.Instance.sortedUsersSectionsArray.get(section));
|
|
|
|
return arr.size();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (section == 0) {
|
|
|
|
return MessagesController.Instance.contacts.size() + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ArrayList<MessagesController.Contact> arr = MessagesController.Instance.contactsSectionsDict.get(MessagesController.Instance.sortedContactsSectionsArray.get(section - 1));
|
|
|
|
return arr.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getItemView(int section, int position, View convertView, ViewGroup parent) {
|
|
|
|
|
|
|
|
TLRPC.User user = null;
|
|
|
|
int count = 0;
|
|
|
|
if (usersAsSections) {
|
|
|
|
if (section < MessagesController.Instance.sortedUsersSectionsArray.size()) {
|
|
|
|
ArrayList<TLRPC.TL_contact> arr = MessagesController.Instance.usersSectionsDict.get(MessagesController.Instance.sortedUsersSectionsArray.get(section));
|
|
|
|
user = MessagesController.Instance.users.get(arr.get(position).user_id);
|
|
|
|
count = arr.size();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (section == 0) {
|
|
|
|
if (position == 0) {
|
|
|
|
if (convertView == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
convertView = li.inflate(R.layout.contacts_invite_row_layout, parent, false);
|
|
|
|
}
|
|
|
|
View divider = convertView.findViewById(R.id.settings_row_divider);
|
|
|
|
if (MessagesController.Instance.contacts.isEmpty()) {
|
|
|
|
divider.setVisibility(View.INVISIBLE);
|
|
|
|
} else {
|
|
|
|
divider.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
return convertView;
|
|
|
|
}
|
|
|
|
user = MessagesController.Instance.users.get(MessagesController.Instance.contacts.get(position - 1).user_id);
|
|
|
|
count = MessagesController.Instance.contacts.size();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (user != null) {
|
|
|
|
if (convertView == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
convertView = li.inflate(R.layout.messages_search_user_layout, parent, false);
|
|
|
|
}
|
|
|
|
ContactListRowHolder holder = (ContactListRowHolder)convertView.getTag();
|
|
|
|
if (holder == null) {
|
|
|
|
holder = new ContactListRowHolder(convertView);
|
|
|
|
convertView.setTag(holder);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ignoreUsers != null) {
|
|
|
|
if (ignoreUsers.containsKey(user.id)) {
|
|
|
|
if(android.os.Build.VERSION.SDK_INT >= 11) {
|
|
|
|
holder.avatarImage.setAlpha(0.5f);
|
|
|
|
holder.messageTextView.setAlpha(0.5f);
|
|
|
|
holder.nameTextView.setAlpha(0.5f);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(android.os.Build.VERSION.SDK_INT >= 11) {
|
|
|
|
holder.avatarImage.setAlpha(1.0f);
|
|
|
|
holder.messageTextView.setAlpha(1.0f);
|
|
|
|
holder.nameTextView.setAlpha(1.0f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
View divider = convertView.findViewById(R.id.settings_row_divider);
|
|
|
|
if (position == count - 1) {
|
|
|
|
divider.setVisibility(View.INVISIBLE);
|
|
|
|
} else {
|
|
|
|
divider.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
TLRPC.FileLocation photo = null;
|
|
|
|
if (user.first_name.length() != 0 && user.last_name.length() != 0) {
|
|
|
|
holder.nameTextView.setText(Html.fromHtml(user.first_name + " <b>" + user.last_name + "</b>"));
|
|
|
|
} else if (user.first_name.length() != 0) {
|
|
|
|
holder.nameTextView.setText(Html.fromHtml("<b>" + user.first_name + "</b>"));
|
|
|
|
} else {
|
|
|
|
holder.nameTextView.setText(Html.fromHtml("<b>" + user.last_name + "</b>"));
|
|
|
|
}
|
|
|
|
if (user.photo != null) {
|
|
|
|
photo = user.photo.photo_small;
|
|
|
|
}
|
|
|
|
int placeHolderId = Utilities.getUserAvatarForId(user.id);
|
|
|
|
holder.avatarImage.setImage(photo, "50_50", placeHolderId);
|
|
|
|
|
|
|
|
if (user.status == null) {
|
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.Offline));
|
|
|
|
holder.messageTextView.setTextColor(0xff808080);
|
|
|
|
} else {
|
|
|
|
int currentTime = ConnectionsManager.Instance.getCurrentTime();
|
|
|
|
if (user.status.expires > currentTime || user.status.was_online > currentTime) {
|
2013-12-20 19:25:49 +00:00
|
|
|
holder.messageTextView.setTextColor(0xff357aa8);
|
2013-10-25 15:19:00 +00:00
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.Online));
|
|
|
|
} else {
|
|
|
|
if (user.status.was_online <= 10000 && user.status.expires <= 10000) {
|
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.Invisible));
|
|
|
|
} else {
|
|
|
|
int value = user.status.was_online;
|
|
|
|
if (value == 0) {
|
|
|
|
value = user.status.expires;
|
|
|
|
}
|
|
|
|
holder.messageTextView.setText(getStringEntry(R.string.LastSeen) + " " + Utilities.formatDateOnline(value));
|
|
|
|
}
|
|
|
|
holder.messageTextView.setTextColor(0xff808080);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return convertView;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView textView;
|
|
|
|
if (convertView == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
convertView = li.inflate(R.layout.settings_row_button_layout, parent, false);
|
|
|
|
textView = (TextView)convertView.findViewById(R.id.settings_row_text);
|
|
|
|
} else {
|
|
|
|
textView = (TextView)convertView.findViewById(R.id.settings_row_text);
|
|
|
|
}
|
|
|
|
View divider = convertView.findViewById(R.id.settings_row_divider);
|
|
|
|
ArrayList<MessagesController.Contact> arr = MessagesController.Instance.contactsSectionsDict.get(MessagesController.Instance.sortedContactsSectionsArray.get(section - 1));
|
|
|
|
MessagesController.Contact contact = arr.get(position);
|
|
|
|
if (position == arr.size() - 1) {
|
|
|
|
divider.setVisibility(View.INVISIBLE);
|
|
|
|
} else {
|
|
|
|
divider.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
if (contact.first_name != null && contact.last_name != null) {
|
|
|
|
textView.setText(Html.fromHtml(contact.first_name + " <b>" + contact.last_name + "</b>"));
|
|
|
|
} else if (contact.first_name != null && contact.last_name == null) {
|
|
|
|
textView.setText(Html.fromHtml("<b>" + contact.first_name + "</b>"));
|
|
|
|
} else {
|
|
|
|
textView.setText(Html.fromHtml("<b>" + contact.last_name + "</b>"));
|
|
|
|
}
|
|
|
|
return convertView;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int section, int position) {
|
|
|
|
if (usersAsSections) {
|
|
|
|
if (section < MessagesController.Instance.sortedUsersSectionsArray.size()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else if (section == 0) {
|
|
|
|
if (position == 0) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewTypeCount() {
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getSectionHeaderViewType(int section) {
|
|
|
|
if (usersAsSections) {
|
|
|
|
if (section < MessagesController.Instance.sortedUsersSectionsArray.size()) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else if (section == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getSectionHeaderViewTypeCount() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getSectionHeaderView(int section, View convertView, ViewGroup parent) {
|
|
|
|
if (usersAsSections) {
|
|
|
|
if (section < MessagesController.Instance.sortedUsersSectionsArray.size()) {
|
|
|
|
if (convertView == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
convertView = li.inflate(R.layout.settings_section_layout, parent, false);
|
|
|
|
convertView.setBackgroundColor(0xffffffff);
|
|
|
|
}
|
|
|
|
TextView textView = (TextView)convertView.findViewById(R.id.settings_section_text);
|
|
|
|
textView.setText(MessagesController.Instance.sortedUsersSectionsArray.get(section));
|
|
|
|
return convertView;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (section == 0) {
|
|
|
|
if (convertView == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
convertView = li.inflate(R.layout.empty_layout, parent, false);
|
|
|
|
}
|
|
|
|
return convertView;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (convertView == null) {
|
|
|
|
LayoutInflater li = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
convertView = li.inflate(R.layout.settings_section_layout, parent, false);
|
|
|
|
convertView.setBackgroundColor(0xffffffff);
|
|
|
|
}
|
|
|
|
TextView textView = (TextView)convertView.findViewById(R.id.settings_section_text);
|
|
|
|
textView.setText(MessagesController.Instance.sortedContactsSectionsArray.get(section - 1));
|
|
|
|
return convertView;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class ContactListRowHolder {
|
|
|
|
public BackupImageView avatarImage;
|
|
|
|
public TextView messageTextView;
|
|
|
|
public TextView nameTextView;
|
|
|
|
|
|
|
|
public ContactListRowHolder(View view) {
|
|
|
|
messageTextView = (TextView)view.findViewById(R.id.messages_list_row_message);
|
|
|
|
nameTextView = (TextView)view.findViewById(R.id.messages_list_row_name);
|
|
|
|
avatarImage = (BackupImageView)view.findViewById(R.id.messages_list_row_avatar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|