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.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.net.Uri;
|
2014-10-31 19:02:29 +00:00
|
|
|
import android.os.Build;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.os.Bundle;
|
2014-07-10 21:15:39 +00:00
|
|
|
import android.text.InputType;
|
|
|
|
import android.view.Gravity;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.view.LayoutInflater;
|
2014-10-07 20:14:27 +00:00
|
|
|
import android.view.MotionEvent;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2014-07-10 21:15:39 +00:00
|
|
|
import android.view.inputmethod.EditorInfo;
|
2014-05-24 22:47:05 +00:00
|
|
|
import android.widget.AbsListView;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.widget.AdapterView;
|
2014-06-03 23:31:48 +00:00
|
|
|
import android.widget.EditText;
|
2014-07-13 10:50:31 +00:00
|
|
|
import android.widget.FrameLayout;
|
2014-10-31 19:02:29 +00:00
|
|
|
import android.widget.ListView;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.AndroidUtilities;
|
|
|
|
import org.telegram.android.LocaleController;
|
2014-10-17 18:29:13 +00:00
|
|
|
import org.telegram.android.MessagesStorage;
|
2014-02-28 22:28:25 +00:00
|
|
|
import org.telegram.messenger.TLRPC;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.ContactsController;
|
2013-12-20 19:25:49 +00:00
|
|
|
import org.telegram.messenger.FileLog;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.MessagesController;
|
2014-08-22 14:24:33 +00:00
|
|
|
import org.telegram.android.NotificationCenter;
|
2013-10-25 15:19:00 +00:00
|
|
|
import org.telegram.messenger.R;
|
|
|
|
import org.telegram.messenger.UserConfig;
|
2014-11-10 11:05:22 +00:00
|
|
|
import org.telegram.ui.Adapters.BaseSectionsAdapter;
|
2014-11-13 20:10:14 +00:00
|
|
|
import org.telegram.ui.Adapters.ContactsAdapter;
|
|
|
|
import org.telegram.ui.Adapters.ContactsSearchAdapter;
|
2014-11-10 11:05:22 +00:00
|
|
|
import org.telegram.ui.Cells.UserCell;
|
2014-11-13 20:10:14 +00:00
|
|
|
import org.telegram.ui.ActionBar.ActionBar;
|
|
|
|
import org.telegram.ui.ActionBar.ActionBarMenu;
|
|
|
|
import org.telegram.ui.ActionBar.ActionBarMenuItem;
|
|
|
|
import org.telegram.ui.ActionBar.BaseFragment;
|
2014-11-10 11:05:22 +00:00
|
|
|
import org.telegram.ui.Views.SectionsListView;
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
|
|
|
public class ContactsActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate {
|
2014-11-10 11:05:22 +00:00
|
|
|
|
|
|
|
private BaseSectionsAdapter listViewAdapter;
|
|
|
|
private TextView emptyTextView;
|
|
|
|
private SectionsListView listView;
|
2014-11-13 20:10:14 +00:00
|
|
|
private ContactsSearchAdapter searchListViewAdapter;
|
2014-11-10 11:05:22 +00:00
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
private boolean searchWas;
|
|
|
|
private boolean searching;
|
|
|
|
private boolean onlyUsers;
|
2014-11-10 11:05:22 +00:00
|
|
|
private boolean needPhonebook;
|
2013-10-25 15:19:00 +00:00
|
|
|
private boolean destroyAfterSelect;
|
|
|
|
private boolean returnAsResult;
|
|
|
|
private boolean createSecretChat;
|
|
|
|
private boolean creatingChat = false;
|
2014-06-03 23:31:48 +00:00
|
|
|
private String selectAlertString = null;
|
2013-10-25 15:19:00 +00:00
|
|
|
private HashMap<Integer, TLRPC.User> ignoreUsers;
|
2014-10-23 07:55:32 +00:00
|
|
|
private boolean allowUsernameSearch = true;
|
2014-06-03 23:31:48 +00:00
|
|
|
private ContactsActivityDelegate delegate;
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
public static interface ContactsActivityDelegate {
|
2014-07-10 21:15:39 +00:00
|
|
|
public abstract void didSelectContact(TLRPC.User user, String param);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
2014-06-03 23:31:48 +00:00
|
|
|
public ContactsActivity(Bundle args) {
|
|
|
|
super(args);
|
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@Override
|
|
|
|
public boolean onFragmentCreate() {
|
|
|
|
super.onFragmentCreate();
|
2014-08-22 14:24:33 +00:00
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.contactsDidLoaded);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.updateInterfaces);
|
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.encryptedChatCreated);
|
2014-06-03 23:31:48 +00:00
|
|
|
if (arguments != null) {
|
2013-10-25 15:19:00 +00:00
|
|
|
onlyUsers = getArguments().getBoolean("onlyUsers", false);
|
2014-10-23 07:55:32 +00:00
|
|
|
destroyAfterSelect = arguments.getBoolean("destroyAfterSelect", false);
|
|
|
|
returnAsResult = arguments.getBoolean("returnAsResult", false);
|
|
|
|
createSecretChat = arguments.getBoolean("createSecretChat", false);
|
2014-06-03 23:31:48 +00:00
|
|
|
selectAlertString = arguments.getString("selectAlertString");
|
2014-10-23 07:55:32 +00:00
|
|
|
allowUsernameSearch = arguments.getBoolean("allowUsernameSearch", true);
|
2014-11-10 11:05:22 +00:00
|
|
|
} else {
|
|
|
|
needPhonebook = true;
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2014-02-11 14:32:09 +00:00
|
|
|
|
2014-11-10 11:05:22 +00:00
|
|
|
ContactsController.getInstance().checkInviteText();
|
2014-02-11 14:32:09 +00:00
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFragmentDestroy() {
|
|
|
|
super.onFragmentDestroy();
|
2014-08-22 14:24:33 +00:00
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.contactsDidLoaded);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.updateInterfaces);
|
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.encryptedChatCreated);
|
2013-10-25 15:19:00 +00:00
|
|
|
delegate = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-03 23:31:48 +00:00
|
|
|
public View createView(LayoutInflater inflater, ViewGroup container) {
|
|
|
|
if (fragmentView == null) {
|
2014-11-10 11:05:22 +00:00
|
|
|
searching = false;
|
|
|
|
searchWas = false;
|
|
|
|
|
2014-11-11 22:16:17 +00:00
|
|
|
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
|
|
|
|
actionBar.setBackOverlay(R.layout.updating_state_layout);
|
2014-11-12 22:16:59 +00:00
|
|
|
actionBar.setTitle(destroyAfterSelect ? LocaleController.getString("SelectContact", R.string.SelectContact) : LocaleController.getString("Contacts", R.string.Contacts));
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2014-11-11 22:16:17 +00:00
|
|
|
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
|
2014-06-03 23:31:48 +00:00
|
|
|
@Override
|
|
|
|
public void onItemClick(int id) {
|
|
|
|
if (id == -1) {
|
|
|
|
finishFragment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-11-11 22:16:17 +00:00
|
|
|
ActionBarMenu menu = actionBar.createMenu();
|
2014-06-03 23:31:48 +00:00
|
|
|
menu.addItem(0, R.drawable.ic_ab_search).setIsSearchField(true).setActionBarMenuItemSearchListener(new ActionBarMenuItem.ActionBarMenuItemSearchListener() {
|
|
|
|
@Override
|
|
|
|
public void onSearchExpand() {
|
|
|
|
searching = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSearchCollapse() {
|
|
|
|
searchListViewAdapter.searchDialogs(null);
|
|
|
|
searching = false;
|
|
|
|
searchWas = false;
|
|
|
|
ViewGroup group = (ViewGroup) listView.getParent();
|
|
|
|
listView.setAdapter(listViewAdapter);
|
2014-06-14 08:36:01 +00:00
|
|
|
listViewAdapter.notifyDataSetChanged();
|
2014-06-03 23:31:48 +00:00
|
|
|
if (android.os.Build.VERSION.SDK_INT >= 11) {
|
|
|
|
listView.setFastScrollAlwaysVisible(true);
|
|
|
|
}
|
|
|
|
listView.setFastScrollEnabled(true);
|
|
|
|
listView.setVerticalScrollBarEnabled(false);
|
|
|
|
emptyTextView.setText(LocaleController.getString("NoContacts", R.string.NoContacts));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextChanged(EditText editText) {
|
|
|
|
if (searchListViewAdapter == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String text = editText.getText().toString();
|
|
|
|
if (text.length() != 0) {
|
|
|
|
searchWas = true;
|
|
|
|
if (listView != null) {
|
|
|
|
listView.setAdapter(searchListViewAdapter);
|
2014-06-14 08:36:01 +00:00
|
|
|
searchListViewAdapter.notifyDataSetChanged();
|
2014-06-03 23:31:48 +00:00
|
|
|
if(android.os.Build.VERSION.SDK_INT >= 11) {
|
|
|
|
listView.setFastScrollAlwaysVisible(false);
|
|
|
|
}
|
|
|
|
listView.setFastScrollEnabled(false);
|
|
|
|
listView.setVerticalScrollBarEnabled(true);
|
|
|
|
}
|
|
|
|
if (emptyTextView != null) {
|
|
|
|
emptyTextView.setText(LocaleController.getString("NoResult", R.string.NoResult));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
searchListViewAdapter.searchDialogs(text);
|
|
|
|
}
|
|
|
|
});
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2014-11-13 20:10:14 +00:00
|
|
|
searchListViewAdapter = new ContactsSearchAdapter(getParentActivity(), ignoreUsers, allowUsernameSearch);
|
|
|
|
listViewAdapter = new ContactsAdapter(getParentActivity(), onlyUsers, needPhonebook, ignoreUsers);
|
2014-02-28 22:28:25 +00:00
|
|
|
|
2014-11-10 11:05:22 +00:00
|
|
|
fragmentView = new FrameLayout(getParentActivity());
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2014-11-10 11:05:22 +00:00
|
|
|
emptyTextView = new TextView(getParentActivity());
|
|
|
|
emptyTextView.setTextColor(0xff808080);
|
|
|
|
emptyTextView.setTextSize(24);
|
|
|
|
emptyTextView.setGravity(Gravity.CENTER);
|
|
|
|
emptyTextView.setVisibility(View.INVISIBLE);
|
2014-03-25 00:25:32 +00:00
|
|
|
emptyTextView.setText(LocaleController.getString("NoContacts", R.string.NoContacts));
|
2014-11-10 11:05:22 +00:00
|
|
|
((FrameLayout) fragmentView).addView(emptyTextView);
|
|
|
|
FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) emptyTextView.getLayoutParams();
|
|
|
|
layoutParams.width = FrameLayout.LayoutParams.MATCH_PARENT;
|
|
|
|
layoutParams.height = FrameLayout.LayoutParams.MATCH_PARENT;
|
|
|
|
layoutParams.gravity = Gravity.TOP;
|
|
|
|
emptyTextView.setLayoutParams(layoutParams);
|
2014-10-07 20:14:27 +00:00
|
|
|
emptyTextView.setOnTouchListener(new View.OnTouchListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View v, MotionEvent event) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2014-11-10 11:05:22 +00:00
|
|
|
listView = new SectionsListView(getParentActivity());
|
|
|
|
listView.setEmptyView(emptyTextView);
|
|
|
|
listView.setVerticalScrollBarEnabled(false);
|
|
|
|
listView.setDivider(null);
|
|
|
|
listView.setDividerHeight(0);
|
|
|
|
listView.setFastScrollEnabled(true);
|
|
|
|
listView.setScrollBarStyle(View.SCROLLBARS_OUTSIDE_OVERLAY);
|
2014-02-28 22:28:25 +00:00
|
|
|
listView.setAdapter(listViewAdapter);
|
2014-11-10 11:05:22 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= 11) {
|
|
|
|
listView.setFastScrollAlwaysVisible(true);
|
|
|
|
listView.setVerticalScrollbarPosition(LocaleController.isRTL ? ListView.SCROLLBAR_POSITION_LEFT : ListView.SCROLLBAR_POSITION_RIGHT);
|
|
|
|
}
|
|
|
|
((FrameLayout) fragmentView).addView(listView);
|
|
|
|
layoutParams = (FrameLayout.LayoutParams) listView.getLayoutParams();
|
|
|
|
layoutParams.width = FrameLayout.LayoutParams.MATCH_PARENT;
|
|
|
|
layoutParams.height = FrameLayout.LayoutParams.MATCH_PARENT;
|
|
|
|
listView.setLayoutParams(layoutParams);
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
|
|
|
|
if (searching && searchWas) {
|
2014-02-28 22:28:25 +00:00
|
|
|
TLRPC.User user = searchListViewAdapter.getItem(i);
|
2014-06-13 10:42:21 +00:00
|
|
|
if (user == null || user.id == UserConfig.getClientUserId()) {
|
2013-10-25 15:19:00 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-10-17 18:29:13 +00:00
|
|
|
if (searchListViewAdapter.isGlobalSearch(i)) {
|
|
|
|
ArrayList<TLRPC.User> users = new ArrayList<TLRPC.User>();
|
|
|
|
users.add(user);
|
|
|
|
MessagesController.getInstance().putUsers(users, false);
|
|
|
|
MessagesStorage.getInstance().putUsersAndChats(users, null, false, true);
|
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
if (returnAsResult) {
|
2014-02-04 18:36:55 +00:00
|
|
|
if (ignoreUsers != null && ignoreUsers.containsKey(user.id)) {
|
2013-10-25 15:19:00 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-07-10 21:15:39 +00:00
|
|
|
didSelectResult(user, true, null);
|
2013-10-25 15:19:00 +00:00
|
|
|
} else {
|
|
|
|
if (createSecretChat) {
|
|
|
|
creatingChat = true;
|
2014-06-03 23:31:48 +00:00
|
|
|
MessagesController.getInstance().startSecretChat(getParentActivity(), user);
|
2013-10-25 15:19:00 +00:00
|
|
|
} else {
|
2014-06-03 23:31:48 +00:00
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", user.id);
|
|
|
|
presentFragment(new ChatActivity(args), true);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int section = listViewAdapter.getSectionForPosition(i);
|
|
|
|
int row = listViewAdapter.getPositionInSectionForPosition(i);
|
2014-02-11 14:32:09 +00:00
|
|
|
if (row < 0 || section < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2014-11-10 11:05:22 +00:00
|
|
|
if (!onlyUsers && section == 0) {
|
|
|
|
if (needPhonebook) {
|
2013-10-25 15:19:00 +00:00
|
|
|
if (row == 0) {
|
|
|
|
try {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_SEND);
|
|
|
|
intent.setType("text/plain");
|
2014-11-10 11:05:22 +00:00
|
|
|
intent.putExtra(Intent.EXTRA_TEXT, ContactsController.getInstance().getInviteText());
|
2014-06-03 23:31:48 +00:00
|
|
|
getParentActivity().startActivity(intent);
|
2013-10-25 15:19:00 +00:00
|
|
|
} catch (Exception e) {
|
2013-12-20 19:25:49 +00:00
|
|
|
FileLog.e("tmessages", e);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-11-10 11:05:22 +00:00
|
|
|
if (row == 0) {
|
|
|
|
presentFragment(new GroupCreateActivity(), true);
|
|
|
|
} else if (row == 1) {
|
2014-06-03 23:31:48 +00:00
|
|
|
Bundle args = new Bundle();
|
2014-11-10 11:05:22 +00:00
|
|
|
args.putBoolean("onlyUsers", true);
|
|
|
|
args.putBoolean("destroyAfterSelect", true);
|
|
|
|
args.putBoolean("createSecretChat", true);
|
|
|
|
presentFragment(new ContactsActivity(args), true);
|
|
|
|
} else if (row == 2) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putBoolean("broadcast", true);
|
|
|
|
presentFragment(new GroupCreateActivity(args), true);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-11-10 11:05:22 +00:00
|
|
|
Object item = listViewAdapter.getItem(section, row);
|
|
|
|
|
|
|
|
if (item instanceof TLRPC.User) {
|
|
|
|
TLRPC.User user = (TLRPC.User) item;
|
|
|
|
if (user.id == UserConfig.getClientUserId()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (returnAsResult) {
|
|
|
|
if (ignoreUsers != null && ignoreUsers.containsKey(user.id)) {
|
|
|
|
return;
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2014-11-10 11:05:22 +00:00
|
|
|
didSelectResult(user, true, null);
|
|
|
|
} else {
|
|
|
|
if (createSecretChat) {
|
|
|
|
creatingChat = true;
|
|
|
|
MessagesController.getInstance().startSecretChat(getParentActivity(), user);
|
|
|
|
} else {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putInt("user_id", user.id);
|
|
|
|
presentFragment(new ChatActivity(args), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (item instanceof ContactsController.Contact) {
|
|
|
|
ContactsController.Contact contact = (ContactsController.Contact) item;
|
|
|
|
String usePhone = null;
|
|
|
|
if (!contact.phones.isEmpty()) {
|
|
|
|
usePhone = contact.phones.get(0);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2014-11-10 11:05:22 +00:00
|
|
|
if (usePhone == null || getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setMessage(LocaleController.getString("InviteUser", R.string.InviteUser));
|
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
|
|
|
final String arg1 = usePhone;
|
|
|
|
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
try {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromParts("sms", arg1, null));
|
|
|
|
intent.putExtra("sms_body", LocaleController.getString("InviteText", R.string.InviteText));
|
|
|
|
getParentActivity().startActivity(intent);
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
|
|
|
showAlertDialog(builder);
|
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-05-24 22:47:05 +00:00
|
|
|
listView.setOnScrollListener(new AbsListView.OnScrollListener() {
|
|
|
|
@Override
|
|
|
|
public void onScrollStateChanged(AbsListView absListView, int i) {
|
|
|
|
if (i == SCROLL_STATE_TOUCH_SCROLL && searching && searchWas) {
|
2014-07-02 22:39:05 +00:00
|
|
|
AndroidUtilities.hideKeyboard(getParentActivity().getCurrentFocus());
|
2014-05-24 22:47:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onScroll(AbsListView absListView, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
|
|
|
|
}
|
|
|
|
});
|
2013-10-25 15:19:00 +00:00
|
|
|
} else {
|
|
|
|
ViewGroup parent = (ViewGroup)fragmentView.getParent();
|
|
|
|
if (parent != null) {
|
|
|
|
parent.removeView(fragmentView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fragmentView;
|
|
|
|
}
|
|
|
|
|
2014-07-10 21:15:39 +00:00
|
|
|
private void didSelectResult(final TLRPC.User user, boolean useAlert, String param) {
|
2014-06-03 23:31:48 +00:00
|
|
|
if (useAlert && selectAlertString != null) {
|
2014-06-14 08:36:01 +00:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-06-03 23:31:48 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
2014-04-02 17:36:57 +00:00
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
2014-09-24 02:17:27 +00:00
|
|
|
builder.setMessage(LocaleController.formatStringSimple(selectAlertString, ContactsController.formatName(user.first_name, user.last_name)));
|
2014-07-10 21:15:39 +00:00
|
|
|
final EditText editText = new EditText(getParentActivity());
|
2014-07-13 10:50:31 +00:00
|
|
|
if (android.os.Build.VERSION.SDK_INT < 11) {
|
|
|
|
editText.setBackgroundResource(android.R.drawable.editbox_background_normal);
|
|
|
|
}
|
2014-07-10 21:15:39 +00:00
|
|
|
editText.setTextSize(18);
|
|
|
|
editText.setText("50");
|
|
|
|
editText.setGravity(Gravity.CENTER);
|
|
|
|
editText.setInputType(InputType.TYPE_CLASS_NUMBER);
|
|
|
|
editText.setImeOptions(EditorInfo.IME_ACTION_DONE);
|
|
|
|
builder.setView(editText);
|
2013-10-25 15:19:00 +00:00
|
|
|
builder.setPositiveButton(R.string.OK, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
2014-07-10 21:15:39 +00:00
|
|
|
didSelectResult(user, false, editText.getText().toString());
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.Cancel, null);
|
2014-06-06 23:35:21 +00:00
|
|
|
showAlertDialog(builder);
|
2014-07-10 21:15:39 +00:00
|
|
|
ViewGroup.MarginLayoutParams layoutParams = (ViewGroup.MarginLayoutParams)editText.getLayoutParams();
|
|
|
|
if (layoutParams != null) {
|
2014-07-13 10:50:31 +00:00
|
|
|
if (layoutParams instanceof FrameLayout.LayoutParams) {
|
|
|
|
((FrameLayout.LayoutParams)layoutParams).gravity = Gravity.CENTER_HORIZONTAL;
|
|
|
|
}
|
2014-07-10 21:15:39 +00:00
|
|
|
layoutParams.rightMargin = layoutParams.leftMargin = AndroidUtilities.dp(10);
|
|
|
|
editText.setLayoutParams(layoutParams);
|
|
|
|
}
|
2014-07-13 10:50:31 +00:00
|
|
|
editText.setSelection(editText.getText().length());
|
2013-10-25 15:19:00 +00:00
|
|
|
} else {
|
|
|
|
if (delegate != null) {
|
2014-07-10 21:15:39 +00:00
|
|
|
delegate.didSelectContact(user, param);
|
2013-10-25 15:19:00 +00:00
|
|
|
delegate = null;
|
|
|
|
}
|
|
|
|
finishFragment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
2014-06-04 16:00:42 +00:00
|
|
|
super.onResume();
|
2014-06-03 23:31:48 +00:00
|
|
|
if (listViewAdapter != null) {
|
2013-10-25 15:19:00 +00:00
|
|
|
listViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void didReceivedNotification(int id, Object... args) {
|
2014-08-22 14:24:33 +00:00
|
|
|
if (id == NotificationCenter.contactsDidLoaded) {
|
2013-10-25 15:19:00 +00:00
|
|
|
if (listViewAdapter != null) {
|
|
|
|
listViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
2014-08-22 14:24:33 +00:00
|
|
|
} else if (id == NotificationCenter.updateInterfaces) {
|
2014-02-04 18:36:55 +00:00
|
|
|
int mask = (Integer)args[0];
|
|
|
|
if ((mask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (mask & MessagesController.UPDATE_MASK_NAME) != 0 || (mask & MessagesController.UPDATE_MASK_STATUS) != 0) {
|
|
|
|
updateVisibleRows(mask);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2014-08-22 14:24:33 +00:00
|
|
|
} else if (id == NotificationCenter.encryptedChatCreated) {
|
2013-10-25 15:19:00 +00:00
|
|
|
if (createSecretChat && creatingChat) {
|
|
|
|
TLRPC.EncryptedChat encryptedChat = (TLRPC.EncryptedChat)args[0];
|
2014-06-03 23:31:48 +00:00
|
|
|
Bundle args2 = new Bundle();
|
|
|
|
args2.putInt("enc_id", encryptedChat.id);
|
|
|
|
presentFragment(new ChatActivity(args2), true);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-28 22:28:25 +00:00
|
|
|
private void updateVisibleRows(int mask) {
|
|
|
|
if (listView != null) {
|
|
|
|
int count = listView.getChildCount();
|
|
|
|
for (int a = 0; a < count; a++) {
|
|
|
|
View child = listView.getChildAt(a);
|
2014-11-10 11:05:22 +00:00
|
|
|
if (child instanceof UserCell) {
|
|
|
|
((UserCell) child).update(mask);
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-03 23:31:48 +00:00
|
|
|
|
|
|
|
public void setDelegate(ContactsActivityDelegate delegate) {
|
|
|
|
this.delegate = delegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIgnoreUsers(HashMap<Integer, TLRPC.User> users) {
|
|
|
|
ignoreUsers = users;
|
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|