use of net.iGap.messenger.ui.components.ProgressDialog in project iGap-Android by KianIranian-STDG.
the class ContactGroupFragment method onViewCreated.
@Override
public void onViewCreated(final View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
progressDialog = new ProgressDialog(getContext());
// to disable swipe in channel creation mode
if (typeCreate != null) {
if (typeCreate.equals("CHANNEL"))
getSwipeBackLayout().setEnableGesture(false);
}
selectedContacts.clear();
G.onContactsGetList = this;
// some times touch screen remind lock so this method do unlock
hideProgressBar();
Bundle bundle = this.getArguments();
if (bundle != null) {
roomId = bundle.getLong("RoomId");
typeCreate = bundle.getString("TYPE");
}
HelperToolbar mHelperToolbar = HelperToolbar.create().setContext(getContext()).setLifecycleOwner(getViewLifecycleOwner()).setLeftIcon(R.string.icon_back).setRightIcons(R.string.icon_sent).setDefaultTitle(G.context.getResources().getString(R.string.new_group)).setListener(this).setLogoShown(true);
LinearLayout toolbarLayout = view.findViewById(R.id.fcg_layout_toolbar);
toolbarLayout.addView(mHelperToolbar.getView());
/**
* for some problem in theme we created 2 layout and check theme then add at run time
* library does not support change text color or background color at run time until 1.0.8
*/
ViewGroup layoutChips = view.findViewById(R.id.fcg_layout_search);
// todo:// use material chips
if (G.themeColor == Theme.DARK) {
layoutChips.addView(getLayoutInflater().inflate(R.layout.item_chips_layout_dark, null));
} else {
layoutChips.addView(getLayoutInflater().inflate(R.layout.item_chips_layout, null));
}
if (typeCreate.equals("CHANNEL")) {
mHelperToolbar.setDefaultTitle(G.context.getResources().getString(R.string.new_channel));
}
chipsInput = view.findViewById(R.id.chips_input);
// get our recyclerView and do basic setup
RecyclerView rv = view.findViewById(R.id.fcg_recycler_view_add_item_to_group);
rv.setLayoutManager(new ScrollingLinearLayoutManager(getContext(), LinearLayoutManager.VERTICAL, false, 1000));
rv.setItemAnimator(new DefaultItemAnimator());
itemAdapter = new ItemAdapter();
fastAdapter = FastAdapter.with(itemAdapter);
fastAdapter.withSelectable(true);
fastAdapter.setHasStableIds(true);
rv.setAdapter(fastAdapter);
addItems();
FastScroller fastScroller = view.findViewById(R.id.fast_scroller);
fastScroller.setRecyclerView(rv);
itemAdapter.getItemFilter().withFilterPredicate(new IItemAdapter.Predicate<ContactItemGroup>() {
@Override
public boolean filter(ContactItemGroup item, CharSequence constraint) {
return !item.mContact.displayName.toLowerCase().startsWith(String.valueOf(constraint).toLowerCase());
}
});
fastAdapter.withOnClickListener(new OnClickListener<ContactItemGroup>() {
@Override
public boolean onClick(View v, IAdapter adapter, ContactItemGroup item, int position) {
if (item.mContact.isSelected) {
chipsInput.removeChipByLabel(item.mContact.displayName);
selectedContacts.remove(item.mContact);
} else {
Uri uri = null;
if (item.mContact.avatar != null && item.mContact.avatar.getFile() != null && item.mContact.avatar.getFile().getLocalThumbnailPath() != null) {
uri = Uri.fromFile(new File(item.mContact.avatar.getFile().getLocalThumbnailPath()));
}
if (uri == null) {
Drawable d = new BitmapDrawable(getResources(), net.iGap.helper.HelperImageBackColor.drawAlphabetOnPicture((int) G.context.getResources().getDimension(R.dimen.dp60), item.mContact.initials, item.mContact.color));
chipsInput.addChip(item.mContact.peerId, d, item.mContact.displayName, "");
} else {
chipsInput.addChip(item.mContact.peerId, uri, item.mContact.displayName, "");
}
}
if (isRemove) {
notifyAdapter(item, position);
}
return false;
}
});
chipsInput.addChipsListener(new ChipsInput.ChipsListener() {
@Override
public void onChipAdded(ChipInterface chip, int newSize) {
try {
if (chip != null) {
ContactItemGroup contactInfo = ((ContactItemGroup) fastAdapter.getItem(fastAdapter.getPosition((Long) chip.getId())));
selectedContacts.add(contactInfo.mContact);
notifyAdapter(contactInfo, fastAdapter.getPosition((Long) chip.getId()));
isRemove = false;
}
} catch (Exception e) {
}
}
@Override
public void onChipRemoved(ChipInterface chip, int newSize) {
if (chip.getId() != null) {
ContactItemGroup contactInfo = ((ContactItemGroup) fastAdapter.getItem(fastAdapter.getPosition((Long) chip.getId())));
notifyAdapter(contactInfo, fastAdapter.getPosition((Long) chip.getId()));
isRemove = false;
selectedContacts.remove(contactInfo.mContact);
}
}
@Override
public void onTextChanged(CharSequence text) {
// text changed
}
});
initContactRemoveListener();
// restore selections (this has to be done after the items were added
fastAdapter.withSavedInstanceState(savedInstanceState);
}
Aggregations