use of net.iGap.messenger.ui.toolBar.Toolbar in project iGap-Android by KianIranian-STDG.
the class FragmentBlockedUser method onViewCreated.
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
blockedUserToolbar = new Toolbar(getContext());
blockedUserToolbar.setBackIcon(new BackDrawable(false));
blockedUserToolbar.setTitle(getString(R.string.Block_Users));
blockedUserToolbar.setListener(i -> {
switch(i) {
case -1:
popBackStackFragment();
break;
}
});
ViewGroup layoutToolbar = view.findViewById(R.id.fbu_layout_toolbar);
layoutToolbar.addView(blockedUserToolbar, LayoutCreator.createLinear(LayoutCreator.MATCH_PARENT, LayoutCreator.dp(56), Gravity.TOP));
RecyclerView realmRecyclerView = view.findViewById(R.id.fbu_realm_recycler_view);
realmRecyclerView.setItemViewCacheSize(100);
realmRecyclerView.setItemAnimator(null);
realmRecyclerView.setLayoutManager(new LinearLayoutManager(G.fragmentActivity));
RealmResults<RealmRegisteredInfo> results = DbManager.getInstance().doRealmTask(realm -> {
return realm.where(RealmRegisteredInfo.class).equalTo("blockUser", true).findAll();
});
BlockListAdapter blockListAdapter = new BlockListAdapter(results.sort("displayName"));
realmRecyclerView.setAdapter(blockListAdapter);
fastScroller = view.findViewById(R.id.fast_scroller);
if (realmRecyclerView.getAdapter().getItemCount() > 0) {
fastScroller.setRecyclerView(realmRecyclerView);
} else {
fastScroller.setVisibility(View.GONE);
}
}
use of net.iGap.messenger.ui.toolBar.Toolbar in project iGap-Android by KianIranian-STDG.
the class FragmentDataUsage method onViewCreated.
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
dataUsageToolbar = new Toolbar(getContext());
dataUsageToolbar.setBackIcon(new BackDrawable(false));
dataUsageToolbar.setListener(i -> {
switch(i) {
case -1:
if (getActivity() != null) {
getActivity().onBackPressed();
}
break;
}
});
ViewGroup layoutToolbar = view.findViewById(R.id.fdu_layout_toolbar);
layoutToolbar.addView(dataUsageToolbar, LayoutCreator.createLinear(LayoutCreator.MATCH_PARENT, LayoutCreator.dp(56), Gravity.TOP));
type = getArguments().getBoolean("TYPE", false);
initData(type);
usageArrayList.add(new DataUsageStruct(1, 0, 0, 0, 0, "Total"));
usageArrayList.add(new DataUsageStruct(2, 0, 0, 0, 0, "ClearData"));
RecyclerView rcDataUsage = view.findViewById(R.id.rcDataUsage);
adapter = new DataUsageAdapter(usageArrayList, totalReceivedByte, totalSendByte, type, this);
rcDataUsage.setAdapter(adapter);
}
use of net.iGap.messenger.ui.toolBar.Toolbar in project iGap-Android by KianIranian-STDG.
the class DataStorageFragment method onViewCreated.
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
dataStorageToolbar = new Toolbar(getContext());
dataStorageToolbar.setBackIcon(new BackDrawable(false));
dataStorageToolbar.setTitle(getString(R.string.data_storage));
dataStorageToolbar.setListener(i -> {
switch(i) {
case -1:
if (getActivity() != null) {
getActivity().onBackPressed();
}
popBackStackFragment();
break;
}
});
binding.toolbar.addView(dataStorageToolbar, LayoutCreator.createLinear(LayoutCreator.MATCH_PARENT, LayoutCreator.dp(56), Gravity.TOP));
viewModel.getGoToDataUsagePage().observe(getViewLifecycleOwner(), isWifiData -> {
if (getActivity() instanceof ActivityManageSpace && isWifiData != null) {
Bundle bundle = new Bundle();
bundle.putBoolean("TYPE", isWifiData);
FragmentDataUsage fragmentDataUsage = new FragmentDataUsage();
fragmentDataUsage.setArguments(bundle);
((ActivityManageSpace) getActivity()).loadFragment(fragmentDataUsage);
}
});
viewModel.getShowDialogKeepMedia().observe(getViewLifecycleOwner(), selectedPosition -> {
if (getContext() != null && selectedPosition != null) {
new MaterialDialog.Builder(getContext()).title(R.string.st_keepMedia).titleGravity(GravityEnum.START).titleColor(getResources().getColor(android.R.color.black)).items(R.array.keepMedia).itemsCallbackSingleChoice(selectedPosition, (dialog, itemView, which, text) -> false).positiveText(R.string.B_ok).negativeText(R.string.B_cancel).onPositive((dialog, which) -> viewModel.setKeepMediaTime(dialog.getSelectedIndex())).show();
}
});
viewModel.getShowAutoDownloadDataDialog().observe(getViewLifecycleOwner(), values -> {
if (getContext() != null && values != null) {
new MaterialDialog.Builder(getContext()).title(R.string.title_auto_download_data).items(R.array.auto_download_data).itemsCallbackMultiChoice(values, (dialog, which, text) -> true).positiveText(getResources().getString(R.string.B_ok)).onPositive((dialog, which) -> viewModel.setAutoDownloadOverData(Objects.requireNonNull(dialog.getSelectedIndices()))).negativeText(getResources().getString(R.string.B_cancel)).show();
}
});
viewModel.getShowAutoDownloadWifiDialog().observe(getViewLifecycleOwner(), values -> {
if (getContext() != null && values != null) {
new MaterialDialog.Builder(getContext()).title(R.string.title_auto_download_wifi).items(R.array.auto_download_data).itemsCallbackMultiChoice(values, (dialog, which, text) -> true).positiveText(R.string.B_ok).onPositive((dialog, which) -> viewModel.setAutoDownloadOverWifi(Objects.requireNonNull(dialog.getSelectedIndices()))).negativeText(R.string.cancel).show();
}
});
viewModel.getShowAutoDownloadRoamingDialog().observe(getViewLifecycleOwner(), values -> {
if (getContext() != null && values != null) {
new MaterialDialog.Builder(getContext()).title(R.string.title_auto_download_roaming).items(R.array.auto_download_data).itemsCallbackMultiChoice(values, (dialog, which, text) -> true).positiveText(R.string.B_ok).onPositive((dialog, which) -> viewModel.setAutoDownloadOverRoaming(Objects.requireNonNull(dialog.getSelectedIndices()))).negativeText(R.string.B_cancel).show();
}
});
viewModel.getShowClearCashDialog().observe(getViewLifecycleOwner(), data -> {
if (getContext() != null && data != null && data.length == 7) {
MaterialDialog dialog = new MaterialDialog.Builder(getContext()).title(R.string.st_title_Clear_Cache).customView(R.layout.st_dialog_clear_cach, true).positiveText(R.string.st_title_Clear_Cache).show();
View dialogView = dialog.getCustomView();
assert dialogView != null;
AppCompatCheckBox checkBoxAll = dialogView.findViewById(R.id.all);
AppCompatCheckBox checkBoxPhoto = dialogView.findViewById(R.id.photo);
AppCompatCheckBox checkBoxVideo = dialogView.findViewById(R.id.video);
AppCompatCheckBox checkBoxDocument = dialogView.findViewById(R.id.document);
AppCompatCheckBox checkBoxAudio = dialogView.findViewById(R.id.audio);
AppCompatCheckBox checkBoxMap = dialogView.findViewById(R.id.map);
AppCompatCheckBox checkBoxOtherFiles = dialogView.findViewById(R.id.other);
AppCompatTextView txtTotalSize = dialogView.findViewById(R.id.allFileSize);
AppCompatTextView photo = dialogView.findViewById(R.id.photoFileSize);
AppCompatTextView video = dialogView.findViewById(R.id.videoFileSize);
AppCompatTextView document = dialogView.findViewById(R.id.documentFileSize);
AppCompatTextView txtAudio = dialogView.findViewById(R.id.audioFileSize);
AppCompatTextView txtMap = dialogView.findViewById(R.id.mapFileSize);
AppCompatTextView txtOtherFiles = dialogView.findViewById(R.id.otherFileSize);
txtTotalSize.setText(data[0]);
photo.setText(data[1]);
video.setText(data[2]);
document.setText(data[3]);
txtAudio.setText(data[4]);
txtMap.setText(data[5]);
txtOtherFiles.setText(data[6]);
checkBoxAll.setOnClickListener(v -> {
boolean tmp = ((AppCompatCheckBox) v).isChecked();
checkBoxPhoto.setChecked(tmp);
checkBoxVideo.setChecked(tmp);
checkBoxDocument.setChecked(tmp);
checkBoxAudio.setChecked(tmp);
checkBoxMap.setChecked(tmp);
checkBoxOtherFiles.setChecked(tmp);
});
checkBoxAll.setOnCheckedChangeListener((buttonView, isChecked) -> {
});
checkBoxPhoto.setOnCheckedChangeListener((buttonView, isChecked) -> {
boolean state = checkBoxAudio.isChecked() && checkBoxPhoto.isChecked() && checkBoxVideo.isChecked() && checkBoxDocument.isChecked() && checkBoxOtherFiles.isChecked() && checkBoxMap.isChecked();
checkBoxAll.setChecked(state);
});
checkBoxVideo.setOnCheckedChangeListener((buttonView, isChecked) -> {
boolean state = checkBoxAudio.isChecked() && checkBoxPhoto.isChecked() && checkBoxVideo.isChecked() && checkBoxDocument.isChecked() && checkBoxOtherFiles.isChecked() && checkBoxMap.isChecked();
checkBoxAll.setChecked(state);
});
checkBoxDocument.setOnCheckedChangeListener((buttonView, isChecked) -> {
boolean state = checkBoxAudio.isChecked() && checkBoxPhoto.isChecked() && checkBoxVideo.isChecked() && checkBoxDocument.isChecked() && checkBoxOtherFiles.isChecked() && checkBoxMap.isChecked();
checkBoxAll.setChecked(state);
});
checkBoxAudio.setOnCheckedChangeListener((buttonView, isChecked) -> {
boolean state = checkBoxAudio.isChecked() && checkBoxPhoto.isChecked() && checkBoxVideo.isChecked() && checkBoxDocument.isChecked() && checkBoxOtherFiles.isChecked() && checkBoxMap.isChecked();
checkBoxAll.setChecked(state);
});
checkBoxMap.setOnCheckedChangeListener((buttonView, isChecked) -> {
boolean state = checkBoxAudio.isChecked() && checkBoxPhoto.isChecked() && checkBoxVideo.isChecked() && checkBoxDocument.isChecked() && checkBoxOtherFiles.isChecked() && checkBoxMap.isChecked();
checkBoxAll.setChecked(state);
});
checkBoxOtherFiles.setOnCheckedChangeListener((buttonView, isChecked) -> {
boolean state = checkBoxAudio.isChecked() && checkBoxPhoto.isChecked() && checkBoxVideo.isChecked() && checkBoxDocument.isChecked() && checkBoxOtherFiles.isChecked() && checkBoxMap.isChecked();
checkBoxAll.setChecked(state);
});
dialog.getActionButton(DialogAction.POSITIVE).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
viewModel.setClearCashData(checkBoxPhoto.isChecked(), checkBoxVideo.isChecked(), checkBoxDocument.isChecked(), checkBoxAudio.isChecked(), checkBoxMap.isChecked(), checkBoxOtherFiles.isChecked());
dialog.dismiss();
}
});
/*dialog.setOnDismissListener(dialog1 -> onCacheCheckedChanged = null);*/
}
});
viewModel.getShowClearAllDialog().observe(getViewLifecycleOwner(), isShow -> {
if (getContext() != null && isShow != null && isShow) {
MaterialDialog inDialog = new MaterialDialog.Builder(getContext()).customView(R.layout.dialog_content_custom, true).build();
View dialogView = inDialog.getCustomView();
inDialog.show();
assert dialogView != null;
TextView txtTitle = dialogView.findViewById(R.id.txtDialogTitle);
txtTitle.setText(R.string.clean_up_chat_rooms);
TextView iconTitle = dialogView.findViewById(R.id.iconDialogTitle);
iconTitle.setTypeface(ResourcesCompat.getFont(iconTitle.getContext(), R.font.font_icons));
iconTitle.setText(R.string.icon_clearing);
TextView txtContent = dialogView.findViewById(R.id.txtDialogContent);
txtContent.setText(R.string.do_you_want_to_clean_all_data_in_chat_rooms);
TextView txtCancel = dialogView.findViewById(R.id.txtDialogCancel);
TextView txtOk = dialogView.findViewById(R.id.txtDialogOk);
txtOk.setOnClickListener(v -> {
viewModel.clearAll();
inDialog.dismiss();
});
txtCancel.setOnClickListener(v -> inDialog.dismiss());
}
});
viewModel.getShowActiveSDCardDialog().observe(getViewLifecycleOwner(), isShow -> {
if (getContext() != null && isShow != null && isShow) {
new MaterialDialog.Builder(getContext()).title(R.string.are_you_sure).negativeText(R.string.B_cancel).content(R.string.change_storage_place).positiveText(R.string.B_ok).onPositive((dialog, which) -> viewModel.setActiveSDCard()).show();
}
});
viewModel.getNeedToGetStoragePermission().observe(getViewLifecycleOwner(), new Observer<Boolean>() {
@RequiresApi(api = Build.VERSION_CODES.R)
@Override
public void onChanged(Boolean aBoolean) {
try {
getPermission();
} catch (IOException ioException) {
ioException.printStackTrace();
}
}
});
}
use of net.iGap.messenger.ui.toolBar.Toolbar in project iGap-Android by KianIranian-STDG.
the class FragmentChat method onCreateView.
@Nullable
@Override
public View onCreateView(@NotNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
isNeedResume = true;
G.locationListener = this;
StickerRepository.getInstance().getUserStickersGroup();
notifyFrameLayout = new NotifyFrameLayout(context) {
@Override
public boolean dispatchKeyEventPreIme(KeyEvent event) {
if (event != null && event.getKeyCode() == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) {
if (topFragmentIsChat() && keyboardViewVisible) {
showPopup(-1);
return true;
}
return false;
}
return super.dispatchKeyEventPreIme(event);
}
};
Bundle extras = getArguments();
if (extras != null) {
mRoomId = extras.getLong("RoomId");
if (mustCheckPermission())
currentRoomAccess = DbManager.getInstance().doRealmTask(realm -> {
return realm.where(RealmRoomAccess.class).equalTo("id", mRoomId + "_" + AccountManager.getInstance().getCurrentUser().getId()).findFirst();
});
}
notifyFrameLayout.setListener(this::onScreenSizeChanged);
rootView = (FrameLayout) inflater.inflate(R.layout.fragment_chat, container, false);
chatContainer = rootView.findViewById(R.id.chatMainContainer);
mediaContainer = new FragmentMediaContainer(getActivity(), this);
mediaContainer.setListener(i -> {
switch(i) {
case FragmentMediaContainer.CALL_TAG:
getActivity().startActivity(new Intent(getContext(), CallActivity.class));
break;
case FragmentMediaContainer.MEDIA_TAG:
if (!MusicPlayer.isVoice) {
Intent intent = new Intent(context, ActivityMain.class);
intent.putExtra(ActivityMain.openMediaPlayer, true);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getActivity().startActivity(intent);
}
break;
case FragmentMediaContainer.PLAY_TAG:
break;
}
});
// mediaContainer.setVisibility(View.GONE);
chatContainer.addView(mediaContainer, LayoutCreator.createLinear(LayoutCreator.MATCH_PARENT, 39, Gravity.TOP | Gravity.LEFT, 0, 59, 0, 0));
mToolbar = new Toolbar(context);
searchFieldItem = mToolbar.addItem(searchFieldTag, R.string.icon_search, Theme.getInstance().getTitleTextColor(getContext())).setIsSearchBox(true).setActionBarMenuItemSearchListener(new ToolbarItem.ActionBarMenuItemSearchListener() {
int textLength;
@Override
public void onSearchExpand() {
if (layoutMute != null) {
layoutMute.setVisibility(View.GONE);
}
if (viewAttachFile != null) {
viewAttachFile.setVisibility(View.GONE);
}
if (rootView.findViewById(R.id.ac_ll_join).getVisibility() == View.VISIBLE) {
rootView.findViewById(R.id.ac_ll_join).setVisibility(View.GONE);
}
if (pinedMessageLayout != null) {
changePinnedMessageVisibility(true, false, MusicPlayer.isMusicPlyerEnable, CallManager.getInstance().isCallAlive());
}
if (vgSpamUser != null) {
vgSpamUser.setVisibility(View.GONE);
}
isSearchVisible = true;
}
@Override
public void onTextChanged(EditText editText) {
String text = editText.getText().toString();
if (text.length() > 0 && !text.startsWith("#")) {
if (!initHash) {
initHash = true;
initHashView();
}
searchHash.setHashString(editText.getText().toString());
searchHash.setPosition("");
if (searchFragment != null) {
searchFragment.onSearchCollapsed();
}
if (ll_navigateHash != null) {
ll_navigateHash.setVisibility(View.VISIBLE);
}
if (viewAttachFile != null) {
viewAttachFile.setVisibility(View.GONE);
}
} else if (text.startsWith("#") && text.length() < 2) {
if (text.length() > textLength) {
searchFragment = SearchFragment.newInstance(mRoomId, text, true);
getActivity().getSupportFragmentManager().beginTransaction().replace(R.id.chatContainer, searchFragment).commit();
}
if (keyboardContainer != null) {
keyboardContainer.setVisibility(View.GONE);
}
if (ll_navigateHash != null) {
ll_navigateHash.setVisibility(View.GONE);
}
if (txtFloatingTime != null) {
txtFloatingTime.setVisibility(View.GONE);
}
} else if (text.startsWith("#") && text.length() > 1) {
if (searchFragment != null && searchFragment.isAdded()) {
searchFragment.onTextChanged(editText.getText().toString());
}
} else {
hideKeyboardView();
if (ll_navigateHash != null) {
ll_navigateHash.setVisibility(View.GONE);
}
if (searchFragment != null && searchFragment.isAdded()) {
searchFragment.onSearchCollapsed();
}
}
textLength = editText.getText().length();
}
@Override
public void onSearchCollapse() {
if (muteIcon != null) {
muteIcon.setVisibility(getRoom().getMute() ? View.VISIBLE : View.GONE);
}
if (verifiedIcon != null) {
RealmChannelRoom channelRoom = getRoom().getChannelRoom();
boolean isVerified = false;
if (channelRoom != null) {
isVerified = channelRoom.isVerified();
}
verifiedIcon.setVisibility(isVerified ? View.VISIBLE : View.GONE);
}
if (avatarItem != null) {
avatarItem.setVisibility(View.VISIBLE);
}
if (pinedMessageLayout != null) {
if (isPinAvailable) {
changePinnedMessageVisibility(true, true, MusicPlayer.isMusicPlyerEnable, CallManager.getInstance().isCallAlive());
}
}
if (isNotJoin) {
rootView.findViewById(R.id.ac_ll_join).setVisibility(View.VISIBLE);
}
if (searchFragment != null) {
searchFragment.onSearchCollapsed();
}
if (vgSpamUser != null) {
showSpamBar();
}
goneSearchHashFooter();
hideKeyboardView();
searchFieldItem.setVisibility(View.GONE);
isSearchVisible = false;
}
});
searchFieldItem.setVisibility(View.GONE);
mToolbar.setOnClickListener(view -> {
hideKeyboard();
goToProfile();
});
mToolbar.setListener(i -> {
switch(i) {
case -1:
if (mToolbar.isActionModeShowed()) {
mAdapter.deselect();
return;
}
if (webViewChatPage != null) {
closeWebViewForSpecialUrlChat(false);
return;
}
hideKeyboard();
if (chatType == CHANNEL && !floatingHidden) {
if (channelRole == ChannelChatRole.OWNER && !isRecording) {
hideFloatingButton(true);
micAndAddStoryAnimateVisible(false);
}
return;
}
if (currentRoomAccess != null) {
if (currentRoomAccess != null) {
if (!currentRoomAccess.getRealmPostMessageRights().isCanSendText()) {
G.runOnUiThread(() -> {
viewAttachFile.setVisibility(View.GONE);
});
}
}
}
if (G.twoPaneMode) {
if (getActivity() instanceof ActivityMain) {
((ActivityMain) getActivity()).goToTabletEmptyPage();
}
} else {
if (!mToolbar.isSearchFieldVisible()) {
popBackStackFragment();
}
}
break;
case searchItem:
initLayoutSearchNavigation();
if (!initHash) {
initHash = true;
initHashView();
}
openSearchBox(null);
showPopup(KeyboardView.MODE_KEYBOARD);
G.handler.postDelayed(() -> editTextRequestFocus(searchEditText), 300);
break;
case voiceCallTag:
if (CallManager.getInstance().getCallPeerId() == chatPeerId) {
Intent activityIntent = new Intent(getActivity(), CallActivity.class);
activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(activityIntent);
} else if (!CallManager.getInstance().isCallAlive()) {
CallSelectFragment selectFragment = CallSelectFragment.getInstance(chatPeerId, false, null);
if (getFragmentManager() != null)
selectFragment.show(getFragmentManager(), null);
if (keyboardViewVisible) {
hideKeyboard();
}
} else {
Toast.makeText(getContext(), "NOT ALLOWED", Toast.LENGTH_SHORT).show();
}
break;
case moreTag:
createMoreItems();
break;
case clearHistoryItem:
new MaterialDialog.Builder(G.fragmentActivity).title(R.string.clear_history).content(R.string.clear_history_content).positiveText(R.string.yes).onPositive((dialog, which) -> clearHistory(mRoomId)).negativeText(R.string.no).show();
break;
case deleteItem:
new MaterialDialog.Builder(G.fragmentActivity).title(R.string.delete_chat).content(R.string.delete_chat_content).positiveText(R.string.yes).onPositive((dialog, which) -> deleteChat(mRoomId)).negativeText(R.string.no).show();
break;
case muteItem:
case unMuteItem:
muteNotification(mRoomId);
break;
case chatToGroupItem:
new MaterialDialog.Builder(G.fragmentActivity).title(R.string.convert_chat_to_group_title).content(R.string.convert_chat_to_group_content).positiveText(R.string.yes).negativeText(R.string.no).onPositive((dialog, which) -> {
// finish();
finishChat();
dialog.dismiss();
G.handler.post(() -> G.onConvertToGroup.openFragmentOnActivity("ConvertToGroup", mRoomId));
}).show();
break;
case cleanUpItem:
resetMessagingValue();
setDownBtnGone();
setCountNewMessageZero();
DbManager.getInstance().doRealmTask(realm -> {
RealmRoomMessage.ClearAllMessageRoomAsync(realm, mRoomId, () -> {
recyclerView.addOnScrollListener(scrollListener);
saveMessageIdPositionState(0, 0);
/**
* get history from server
*/
topMore = true;
getOnlineMessage(0, 0, UP);
});
});
break;
case reportItem:
dialogReport(false, 0, 0);
break;
case sendMoneyItem:
showPaymentDialog();
break;
case exportChatItem:
if (HelperPermission.grantedUseStorage()) {
exportChat();
} else {
try {
HelperPermission.getStoragePermission(G.fragmentActivity, new OnGetPermission() {
@Override
public void Allow() {
exportChat();
}
@Override
public void deny() {
Toast.makeText(G.currentActivity, R.string.export_message, Toast.LENGTH_SHORT).show();
}
});
} catch (IOException e) {
e.printStackTrace();
}
}
break;
case stopItem:
new MaterialDialog.Builder(G.fragmentActivity).title(R.string.stop).content(R.string.stop_message_bot).positiveText(R.string.yes).onPositive((dialog, which) -> {
// onSelectRoomMenu("txtClearHistory", mRoomId);
closeWebViewForSpecialUrlChat(true);
// popBackStackFragment();
}).negativeText(R.string.no).show();
break;
case copyMessageTag:
copySelectedItemTextToClipboard();
break;
case forwardMessageTag:
// forward selected messages to room list for selecting room
if (mAdapter != null && mAdapter.getSelectedItems().size() > 0) {
onForwardClick(null);
}
break;
case replyMessageTag:
if (mAdapter != null && !mAdapter.getSelectedItems().isEmpty() && mAdapter.getSelectedItems().size() == 1) {
reply(mAdapter.getSelectedItems().iterator().next().messageObject, false);
}
break;
case deleteMessageTag:
messageIds = new ArrayList<>();
documentIds = new ArrayList<>();
bothDeleteMessageId = new ArrayList<>();
G.handler.post(() -> {
for (final AbstractMessage item : mAdapter.getSelectedItems()) {
if (mAdapter.getSelectedItems().size() == 1) {
confirmAndDeleteMessage(item.messageObject, true);
return;
}
try {
if (item != null && item.messageObject != null) {
Long messageId = item.messageObject.id;
Long documentId = item.messageObject.documentId;
messageIds.add(messageId);
documentIds.add(documentId);
boolean bothDelete = RealmRoomMessage.isBothDelete(item.messageObject.getUpdateOrCreateTime());
if (bothDelete)
bothDeleteMessageId.add(messageId);
}
} catch (NullPointerException e) {
e.printStackTrace();
}
}
if (chatType == CHAT && !isCloudRoom && bothDeleteMessageId.size() > 0 && mAdapter.getSelectedItems().iterator().next().messageObject.userId == AccountManager.getInstance().getCurrentUser().getId()) {
String delete;
String textCheckBox = getContext().getResources().getString(R.string.st_checkbox_delete) + " " + title;
delete = getContext().getResources().getString(R.string.st_desc_deletes);
new MaterialDialog.Builder(getContext()).content(delete).title(R.string.message).positiveText(R.string.ok).negativeText(R.string.cancel).onPositive((dialog, which) -> {
if (!dialog.isPromptCheckBoxChecked()) {
bothDeleteMessageId = null;
}
getMessageController().deleteSelectedMessage(chatType.getNumber(), mRoomId, messageIds, documentIds, bothDeleteMessageId);
// deleteSelectedMessageFromAdapter(messageIds);
}).checkBoxPrompt(textCheckBox, false, null).show();
} else {
new MaterialDialog.Builder(getActivity()).title(R.string.message).content(getActivity().getResources().getString(R.string.st_desc_deletes)).positiveText(R.string.ok).negativeText(R.string.cancel).onPositive((dialog, which) -> {
bothDeleteMessageId = null;
getMessageController().deleteSelectedMessage(chatType.getNumber(), mRoomId, messageIds, documentIds, bothDeleteMessageId);
// deleteSelectedMessageFromAdapter(messageIds);
}).show();
}
});
break;
}
});
searchEditText = searchFieldItem.getSearchEditText();
mToolbar.setBackIcon(new BackDrawable(false));
verifiedIcon = mToolbar.addVerifiedChannelsIcon();
muteIcon = mToolbar.addMuteIcon();
ToolbarItems toolbarItems = mToolbar.createToolbarItems();
toolbarItems.setBackground(null);
moreItem = toolbarItems.addItemWithWidth(moreTag, R.string.icon_other_vertical_dots, 48);
callItem = toolbarItems.addItemWithWidth(voiceCallTag, R.string.icon_voice_call, 48);
createActionMode();
rootView.addView(mToolbar, LayoutCreator.createFrame(LayoutCreator.MATCH_PARENT, 60, Gravity.TOP));
notifyFrameLayout.addView(rootView, LayoutCreator.createFrame(LayoutCreator.MATCH_PARENT, LayoutCreator.MATCH_PARENT));
keyboardContainer = rootView.findViewById(R.id.fl_chat_keyboardContainer);
sendMoney = rootView.findViewById(R.id.btn_chatRoom_wallet);
/**
* init chat box edit text and send item because we need change this color in dark mode!
*/
edtChat = rootView.findViewById(R.id.et_chatRoom_writeMessage);
edtChat.setGravity(Gravity.CENTER_VERTICAL);
edtChat.setListener(this::chatMotionEvent);
imvSendButton = rootView.findViewById(R.id.btn_chatRoom_send);
editTextProgress = rootView.findViewById(R.id.editTextProgress);
chatRoom_send_container = rootView.findViewById(R.id.chatRoom_send_container);
getEventManager().addObserver(EventManager.CALL_STATE_CHANGED, this);
getEventManager().addObserver(EventManager.EMOJI_LOADED, this);
getEventManager().addObserver(EventManager.ON_MESSAGE_DELETE, this);
getEventManager().addObserver(EventManager.ON_EDIT_MESSAGE, this);
getEventManager().addObserver(EventManager.ON_PINNED_MESSAGE, this);
getEventManager().addObserver(EventManager.CHAT_CLEAR_MESSAGE, this);
getEventManager().addObserver(EventManager.CHANNEL_ADD_VOTE, this);
getEventManager().addObserver(EventManager.CHANNEL_GET_VOTE, this);
getEventManager().addObserver(EventManager.CHANNEL_UPDATE_VOTE, this);
getEventManager().addObserver(EventManager.CHANNEL_UPDATE_VOTE, this);
getEventManager().addObserver(EventManager.CHAT_UPDATE_STATUS, this);
getEventManager().addObserver(EventManager.MEDIA_PLAYER_STATE_CHANGED, this);
getEventManager().addObserver(EventManager.NEXT_VOICE, this);
getEventManager().addObserver(EventManager.ON_FILE_PICKED_FROM_INTENT, this);
if (twoPaneMode)
EventManager.getInstance(AccountManager.selectedAccount).addObserver(EventManager.CHAT_BACKGROUND_CHANGED, this);
return attachToSwipeBack(notifyFrameLayout);
}
use of net.iGap.messenger.ui.toolBar.Toolbar in project iGap-Android by KianIranian-STDG.
the class FragmentCall method onViewCreated.
@Override
public void onViewCreated(@NotNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
HelperTracker.sendTracker(HelperTracker.TRACKER_CALL_PAGE);
if (getContext() != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
StatusBarUtil.setColor(getActivity(), new Theme().getPrimaryDarkColor(getContext()), 50);
}
callToolbar = new Toolbar(getContext());
callToolbar.setTitle(isAppRtl ? R.string.logo_igap_fa : R.string.logo_igap_en);
ToolbarItems toolbarItems = callToolbar.createToolbarItems();
toolbarItems.addItemWithWidth(createCallTag, R.string.icon_add, 54);
toolbarItems.addItemWithWidth(codeScannerTag, R.string.icon_QR_code, 54);
callToolbar.setListener(i -> {
switch(i) {
case -1:
setViewState(!mIsMultiSelectEnable);
hideActionMode();
mSelectedLogList.clear();
break;
case createCallTag:
showContactListForCall();
break;
case codeScannerTag:
onCodeScannerClickListener();
break;
case deleteAllTag:
if (getRequestManager().isUserLogin()) {
new MaterialDialog.Builder(getContext()).title(R.string.clean_log).content(R.string.are_you_sure_clear_call_logs).positiveText(R.string.B_ok).onPositive((dialog, which) -> {
DbManager.getInstance().doRealmTask(realm -> {
// ToDo: add callback to proto request
setViewState(false);
RealmCallLog realmCallLog = realm.where(RealmCallLog.class).findAll().sort("offerTime", Sort.DESCENDING).first();
new RequestSignalingClearLog().signalingClearLog(realmCallLog.getId());
view.findViewById(R.id.empty_layout).setVisibility(View.VISIBLE);
mSelectedLogList.clear();
});
hideActionMode();
}).negativeText(R.string.B_cancel).show();
} else {
HelperError.showSnackMessage(getString(R.string.there_is_no_connection_to_server), false);
}
break;
case deleteTag:
if (mSelectedLogList.size() == 0) {
Toast.makeText(_mActivity, getString(R.string.no_item_selected), Toast.LENGTH_SHORT).show();
return;
}
if (getRequestManager().isUserLogin()) {
new MaterialDialog.Builder(getActivity()).title(R.string.clean_log).content(R.string.are_you_sure_clear_call_log).positiveText(R.string.B_ok).onPositive((dialog, which) -> {
try {
List<Long> logIds = new ArrayList<>();
for (int j = 0; j < mSelectedLogList.size(); j++) {
logIds.add(mSelectedLogList.get(j).getLogId());
}
new RequestSignalingClearLog().signalingClearLog(logIds);
setViewState(false);
mSelectedLogList.clear();
if (realmResults.size() == 0) {
view.findViewById(R.id.empty_layout).setVisibility(View.VISIBLE);
}
} catch (Exception e) {
e.printStackTrace();
}
hideActionMode();
}).negativeText(R.string.B_cancel).show();
} else {
HelperError.showSnackMessage(getString(R.string.there_is_no_connection_to_server), false);
}
break;
}
});
createToolbarActions();
mediaContainer = new FragmentMediaContainer(getContext(), this);
mediaContainer.setListener(i -> {
switch(i) {
case FragmentMediaContainer.CALL_TAG:
getActivity().startActivity(new Intent(getContext(), CallActivity.class));
break;
case FragmentMediaContainer.MEDIA_TAG:
if (!MusicPlayer.isVoice) {
Intent intent = new Intent(context, ActivityMain.class);
intent.putExtra(ActivityMain.openMediaPlayer, true);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getActivity().startActivity(intent);
}
break;
case FragmentMediaContainer.PLAY_TAG:
break;
}
});
ViewGroup layoutToolbar = view.findViewById(R.id.fc_layout_toolbar);
layoutToolbar.addView(mediaContainer, LayoutCreator.createFrame(LayoutCreator.MATCH_PARENT, 38, Gravity.BOTTOM, 0, 60, 0, 0));
layoutToolbar.addView(callToolbar, LayoutCreator.createFrame(LayoutCreator.MATCH_PARENT, 64, Gravity.TOP));
mBtnAllCalls = view.findViewById(R.id.fc_btn_all_calls);
mBtnMissedCalls = view.findViewById(R.id.fc_btn_missed_calls);
mBtnCanceledCalls = view.findViewById(R.id.fc_btn_canceled_calls);
mBtnIncomingCalls = view.findViewById(R.id.fc_btn_incoming_calls);
mBtnOutgoingCalls = view.findViewById(R.id.fc_btn_outgoing_calls);
progressBar = view.findViewById(R.id.fc_progress_bar_waiting);
emptuListView = view.findViewById(R.id.empty_layout);
progressBar = view.findViewById(R.id.fc_progress_bar_waiting);
mRecyclerView = view.findViewById(R.id.fc_recycler_view_call);
mFiltersLayout = view.findViewById(R.id.fc_layout_filters);
setEnableButton(mSelectedStatus);
mRecyclerView = view.findViewById(R.id.fc_recycler_view_call);
mRecyclerView.setItemAnimator(null);
mRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity(), LinearLayoutManager.VERTICAL, false));
if (realmResults == null) {
realmResults = DbManager.getInstance().doRealmTask(realm -> {
return getRealmResult(mSelectedStatus, realm);
});
}
realmResults.addChangeListener((realmCallLogs, changeSet) -> {
checkListIsEmpty();
});
checkListIsEmpty();
mRecyclerView.setAdapter(new CallAdapter(realmResults));
mOffset = 0;
getLogListWithOffset();
mRecyclerView.getAdapter().registerAdapterDataObserver(new RecyclerView.AdapterDataObserver() {
@Override
public void onItemRangeInserted(int positionStart, int itemCount) {
super.onItemRangeInserted(positionStart, itemCount);
checkListIsEmpty();
}
@Override
public void onItemRangeRemoved(int positionStart, int itemCount) {
super.onItemRangeRemoved(positionStart, itemCount);
checkListIsEmpty();
}
});
onScrollListener = new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(@NotNull RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
if (isThereAnyMoreItemToLoad) {
if (!isSendRequestForLoading) {
int lastVisiblePosition = ((LinearLayoutManager) recyclerView.getLayoutManager()).findLastVisibleItemPosition();
if (lastVisiblePosition + 15 >= mOffset) {
getLogListWithOffset();
}
}
}
}
};
mRecyclerView.addOnScrollListener(onScrollListener);
G.iSignalingGetCallLog = (size, signalingLogList) -> {
if (signalingLogList != null) {
G.handler.post(() -> progressBar.setVisibility(View.GONE));
}
if (size == -1) {
if (attampOnError < 2) {
isSendRequestForLoading = false;
attampOnError++;
} else {
isThereAnyMoreItemToLoad = false;
mRecyclerView.removeOnScrollListener(onScrollListener);
}
} else if (size == 0) {
isThereAnyMoreItemToLoad = false;
mRecyclerView.removeOnScrollListener(onScrollListener);
} else {
isSendRequestForLoading = false;
mOffset += size;
}
};
mBtnAllCalls.setOnClickListener(v -> {
if (mSelectedStatus != ProtoSignalingGetLog.SignalingGetLog.Filter.ALL) {
setEnableButton(ProtoSignalingGetLog.SignalingGetLog.Filter.ALL);
getCallLogsFromRealm(ProtoSignalingGetLog.SignalingGetLog.Filter.ALL);
}
});
mBtnMissedCalls.setOnClickListener(v -> {
if (mSelectedStatus != ProtoSignalingGetLog.SignalingGetLog.Filter.MISSED) {
setEnableButton(ProtoSignalingGetLog.SignalingGetLog.Filter.MISSED);
getCallLogsFromRealm(ProtoSignalingGetLog.SignalingGetLog.Filter.MISSED);
}
});
mBtnOutgoingCalls.setOnClickListener(v -> {
if (mSelectedStatus != ProtoSignalingGetLog.SignalingGetLog.Filter.OUTGOING) {
setEnableButton(ProtoSignalingGetLog.SignalingGetLog.Filter.OUTGOING);
getCallLogsFromRealm(ProtoSignalingGetLog.SignalingGetLog.Filter.OUTGOING);
}
});
mBtnIncomingCalls.setOnClickListener(v -> {
if (mSelectedStatus != ProtoSignalingGetLog.SignalingGetLog.Filter.INCOMING) {
setEnableButton(ProtoSignalingGetLog.SignalingGetLog.Filter.INCOMING);
getCallLogsFromRealm(ProtoSignalingGetLog.SignalingGetLog.Filter.INCOMING);
}
});
mBtnCanceledCalls.setOnClickListener(v -> {
if (mSelectedStatus != ProtoSignalingGetLog.SignalingGetLog.Filter.CANCELED) {
setEnableButton(ProtoSignalingGetLog.SignalingGetLog.Filter.CANCELED);
getCallLogsFromRealm(ProtoSignalingGetLog.SignalingGetLog.Filter.CANCELED);
}
});
// Todo: fixed it, cause load view with delay
setViewState(mIsMultiSelectEnable);
}
Aggregations