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

300 lines
11 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.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
2014-11-12 23:16:59 +01:00
import android.os.Build;
2013-10-25 17:19:00 +02:00
import android.os.Bundle;
2014-11-12 23:16:59 +01:00
import android.view.Gravity;
2013-10-25 17:19:00 +02:00
import android.view.LayoutInflater;
2014-10-07 22:14:27 +02:00
import android.view.MotionEvent;
2013-10-25 17:19:00 +02:00
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
2014-11-12 23:16:59 +01:00
import android.widget.FrameLayout;
2013-10-25 17:19:00 +02:00
import android.widget.ListView;
2014-11-12 23:16:59 +01:00
import android.widget.ProgressBar;
2013-10-25 17:19:00 +02:00
import android.widget.TextView;
import org.telegram.PhoneFormat.PhoneFormat;
import org.telegram.android.LocaleController;
import org.telegram.messenger.TLRPC;
import org.telegram.android.MessagesController;
import org.telegram.android.NotificationCenter;
2013-10-25 17:19:00 +02:00
import org.telegram.messenger.R;
import org.telegram.ui.Adapters.BaseFragmentAdapter;
2014-11-12 23:16:59 +01:00
import org.telegram.ui.Cells.TextInfoCell;
2014-11-10 12:05:22 +01:00
import org.telegram.ui.Cells.UserCell;
2014-11-13 21:10:14 +01:00
import org.telegram.ui.ActionBar.ActionBar;
import org.telegram.ui.ActionBar.ActionBarMenu;
import org.telegram.ui.ActionBar.BaseFragment;
import org.telegram.ui.Components.LayoutHelper;
2013-10-25 17:19:00 +02:00
2014-11-13 21:10:14 +01:00
public class BlockedUsersActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate, ContactsActivity.ContactsActivityDelegate {
2014-11-17 03:44:57 +01:00
2013-10-25 17:19:00 +02:00
private ListView listView;
private ListAdapter listViewAdapter;
2014-11-12 23:16:59 +01:00
private FrameLayout progressView;
private TextView emptyTextView;
2013-10-25 17:19:00 +02:00
private int selectedUserId;
private final static int block_user = 1;
2013-10-25 17:19:00 +02:00
@Override
public boolean onFragmentCreate() {
super.onFragmentCreate();
NotificationCenter.getInstance().addObserver(this, NotificationCenter.updateInterfaces);
NotificationCenter.getInstance().addObserver(this, NotificationCenter.blockedUsersDidLoaded);
2013-10-25 17:19:00 +02:00
return true;
}
@Override
public void onFragmentDestroy() {
super.onFragmentDestroy();
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.updateInterfaces);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.blockedUsersDidLoaded);
MessagesController.getInstance().getBlockedUsers(false);
2013-10-25 17:19:00 +02:00
}
@Override
2015-04-09 20:00:14 +02:00
public View createView(Context context, LayoutInflater inflater) {
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
actionBar.setAllowOverlayTitle(true);
actionBar.setTitle(LocaleController.getString("BlockedUsers", R.string.BlockedUsers));
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
@Override
public void onItemClick(int id) {
if (id == -1) {
finishFragment();
} else if (id == block_user) {
Bundle args = new Bundle();
args.putBoolean("onlyUsers", true);
args.putBoolean("destroyAfterSelect", true);
args.putBoolean("returnAsResult", true);
ContactsActivity fragment = new ContactsActivity(args);
fragment.setDelegate(BlockedUsersActivity.this);
presentFragment(fragment);
2014-10-07 22:14:27 +02:00
}
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
});
ActionBarMenu menu = actionBar.createMenu();
menu.addItem(block_user, R.drawable.plus);
fragmentView = new FrameLayout(context);
FrameLayout frameLayout = (FrameLayout) fragmentView;
emptyTextView = new TextView(context);
emptyTextView.setTextColor(0xff808080);
emptyTextView.setTextSize(20);
emptyTextView.setGravity(Gravity.CENTER);
emptyTextView.setVisibility(View.INVISIBLE);
emptyTextView.setText(LocaleController.getString("NoBlocked", R.string.NoBlocked));
2015-05-21 23:27:27 +02:00
frameLayout.addView(emptyTextView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT, Gravity.TOP | Gravity.LEFT));
2015-04-09 20:00:14 +02:00
emptyTextView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
return true;
}
});
progressView = new FrameLayout(context);
2015-05-21 23:27:27 +02:00
frameLayout.addView(progressView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT));
2015-04-09 20:00:14 +02:00
ProgressBar progressBar = new ProgressBar(context);
2015-05-21 23:27:27 +02:00
progressView.addView(progressBar, LayoutHelper.createFrame(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER));
2015-04-09 20:00:14 +02:00
listView = new ListView(context);
listView.setEmptyView(emptyTextView);
listView.setVerticalScrollBarEnabled(false);
listView.setDivider(null);
listView.setDividerHeight(0);
listView.setAdapter(listViewAdapter = new ListAdapter(context));
if (Build.VERSION.SDK_INT >= 11) {
listView.setVerticalScrollbarPosition(LocaleController.isRTL ? ListView.SCROLLBAR_POSITION_LEFT : ListView.SCROLLBAR_POSITION_RIGHT);
}
2015-05-21 23:27:27 +02:00
frameLayout.addView(listView, LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT));
2015-04-09 20:00:14 +02:00
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
if (i < MessagesController.getInstance().blockedUsers.size()) {
Bundle args = new Bundle();
args.putInt("user_id", MessagesController.getInstance().blockedUsers.get(i));
presentFragment(new ProfileActivity(args));
2013-10-25 17:19:00 +02:00
}
2015-04-09 20:00:14 +02:00
}
});
2013-10-25 17:19:00 +02:00
2015-04-09 20:00:14 +02:00
listView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> adapterView, View view, int i, long l) {
if (i < 0 || i >= MessagesController.getInstance().blockedUsers.size() || getParentActivity() == null) {
2013-10-25 17:19:00 +02:00
return true;
}
2015-04-09 20:00:14 +02:00
selectedUserId = MessagesController.getInstance().blockedUsers.get(i);
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
CharSequence[] items = new CharSequence[]{LocaleController.getString("Unblock", R.string.Unblock)};
builder.setItems(items, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if (i == 0) {
MessagesController.getInstance().unblockUser(selectedUserId);
}
}
});
2015-05-21 23:27:27 +02:00
showDialog(builder.create());
2014-11-12 23:16:59 +01:00
2015-04-09 20:00:14 +02:00
return true;
2014-11-12 23:16:59 +01:00
}
2015-04-09 20:00:14 +02:00
});
if (MessagesController.getInstance().loadingBlockedUsers) {
progressView.setVisibility(View.VISIBLE);
emptyTextView.setVisibility(View.GONE);
listView.setEmptyView(null);
2013-10-25 17:19:00 +02:00
} else {
2015-04-09 20:00:14 +02:00
progressView.setVisibility(View.GONE);
listView.setEmptyView(emptyTextView);
2013-10-25 17:19:00 +02:00
}
return fragmentView;
}
@Override
public void didReceivedNotification(int id, Object... args) {
if (id == NotificationCenter.updateInterfaces) {
int mask = (Integer)args[0];
if ((mask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (mask & MessagesController.UPDATE_MASK_NAME) != 0) {
updateVisibleRows(mask);
}
} else if (id == NotificationCenter.blockedUsersDidLoaded) {
if (progressView != null) {
progressView.setVisibility(View.GONE);
}
if (listView != null && listView.getEmptyView() == null) {
2014-11-12 23:16:59 +01:00
listView.setEmptyView(emptyTextView);
}
if (listViewAdapter != null) {
listViewAdapter.notifyDataSetChanged();
}
}
}
private void updateVisibleRows(int mask) {
if (listView == null) {
return;
}
int count = listView.getChildCount();
for (int a = 0; a < count; a++) {
View child = listView.getChildAt(a);
2014-11-10 12:05:22 +01:00
if (child instanceof UserCell) {
((UserCell) child).update(mask);
2013-10-25 17:19:00 +02:00
}
}
}
@Override
public void onResume() {
super.onResume();
if (listViewAdapter != null) {
2013-10-25 17:19:00 +02:00
listViewAdapter.notifyDataSetChanged();
}
}
@Override
public void didSelectContact(final TLRPC.User user, String param) {
if (user == null) {
2013-10-25 17:19:00 +02:00
return;
}
MessagesController.getInstance().blockUser(user.id);
2013-10-25 17:19:00 +02:00
}
private class ListAdapter extends BaseFragmentAdapter {
2013-10-25 17:19:00 +02:00
private Context mContext;
public ListAdapter(Context context) {
mContext = context;
}
@Override
public boolean areAllItemsEnabled() {
return false;
}
@Override
public boolean isEnabled(int i) {
return i != MessagesController.getInstance().blockedUsers.size();
2013-10-25 17:19:00 +02:00
}
@Override
public int getCount() {
if (MessagesController.getInstance().blockedUsers.isEmpty()) {
2013-10-25 17:19:00 +02:00
return 0;
}
return MessagesController.getInstance().blockedUsers.size() + 1;
2013-10-25 17:19:00 +02:00
}
@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 (type == 0) {
if (view == null) {
2014-11-12 23:16:59 +01:00
view = new UserCell(mContext, 1);
2013-10-25 17:19:00 +02:00
}
TLRPC.User user = MessagesController.getInstance().getUser(MessagesController.getInstance().blockedUsers.get(i));
2014-11-21 11:59:05 +01:00
if (user != null) {
((UserCell) view).setData(user, null, user.phone != null && user.phone.length() != 0 ? PhoneFormat.getInstance().format("+" + user.phone) : LocaleController.getString("NumberUnknown", R.string.NumberUnknown), 0);
}
2013-10-25 17:19:00 +02:00
} else if (type == 1) {
if (view == null) {
2014-11-12 23:16:59 +01:00
view = new TextInfoCell(mContext);
((TextInfoCell) view).setText(LocaleController.getString("UnblockText", R.string.UnblockText));
2013-10-25 17:19:00 +02:00
}
}
return view;
}
@Override
public int getItemViewType(int i) {
if(i == MessagesController.getInstance().blockedUsers.size()) {
2013-10-25 17:19:00 +02:00
return 1;
}
return 0;
}
@Override
public int getViewTypeCount() {
return 2;
}
@Override
public boolean isEmpty() {
return MessagesController.getInstance().blockedUsers.isEmpty();
2013-10-25 17:19:00 +02:00
}
}
}