use of com.waz.zclient.pages.main.conversationlist.views.row.ConversationListRow in project wire-android by wireapp.
the class ConversationListAdapter method tearDown.
public void tearDown() {
networkStore = null;
streamMediaPlayerController = null;
if (listView == null) {
return;
}
for (int i = 0; i < listView.getChildCount(); i++) {
View view = listView.getChildAt(i);
if (view instanceof ConversationListRow) {
((ConversationListRow) view).tearDown();
}
}
}
use of com.waz.zclient.pages.main.conversationlist.views.row.ConversationListRow in project wire-android by wireapp.
the class ConversationListAdapter method animateSortingOfConversation.
private void animateSortingOfConversation() {
CoreList<IConversation> archivedConversations = conversationList.getArchivedConversations();
boolean isArchiveVisible = archivedState == ArchivedState.VISIBLE;
Map<Integer, View> currentViews = new HashMap<>();
List<Animator> animators = new ArrayList<>();
// Cache all displayed views and store the last and first to hack views that leave the screen
View first = null;
View last = null;
for (int i = 0; i < listView.getChildCount(); i++) {
View view = listView.getChildAt(i);
if (view instanceof ConversationListRow || view instanceof ConversationListArchivedBorderRow) {
if (first == null) {
first = view;
}
last = view;
currentViews.put(view.getId(), view);
}
}
final View firstView = first;
final View lastView = last;
// run once through the list of all displayed items
for (int i = 0; i < listView.getChildCount(); i++) {
if (listView.getChildAt(i) instanceof ConversationListRow) {
final ConversationListRow row = (ConversationListRow) listView.getChildAt(i);
// needs to be called - this view cant be used as a convertView no more
row.redraw();
int currPos = row.getId();
final IConversation conversation = row.getConversation();
int newPos;
// it is the inbox
if (currPos == posOfInboxOld) {
newPos = currPos;
} else {
newPos = conversationList.getConversationIndex(conversation.getId());
// push one up for the inbox
if (posOfInbox != CONNECT_REQUEST_INBOX_POSITION_NONE && newPos >= posOfInbox) {
newPos++;
}
}
// the item is archived
if (newPos == -1 && isArchiveVisible) {
for (int j = 0; j < archivedConversations.size(); j++) {
if (ConversationUtils.isConversationEqual(archivedConversations.get(j), conversation)) {
newPos = getUnarchivedCount() + 1 + j;
}
}
}
if (currPos != newPos) {
if (currentViews.containsKey(newPos)) {
float t = currentViews.get(newPos).getY() - row.getY();
animators.add(ObjectAnimator.ofFloat(row, View.TRANSLATION_Y, t));
} else {
// its archive target
if (newPos == -1) {
ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(row, View.ALPHA, 0);
alphaAnimator.setInterpolator(new Quart.EaseOut());
alphaAnimator.setDuration(sortingAnimationDuration);
alphaAnimator.start();
continue;
}
// this view goes far north - we need to hack a little around it
if (currPos > newPos) {
float targetY = row.getY();
targetY -= first.getY();
animators.add(ObjectAnimator.ofFloat(row, View.TRANSLATION_Y, -targetY));
animators.add(ObjectAnimator.ofFloat(row, View.ALPHA, 1, 0, 1));
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
IConversation changeConversation = getItem(firstView.getId());
if (changeConversation != null) {
row.setConversation(changeConversation);
}
}
}, sortingAnimationDuration / HACK_ANIMATION_FACTOR);
}
// this view goes far south - we need to hack a little around it
if (currPos < newPos) {
float targetY = row.getY() - last.getY();
boolean isOnlyArchive = conversationList.getArchivedConversations().size() == 1 && row.isArchiveTarget();
if (isOnlyArchive) {
targetY -= row.getMeasuredHeight();
}
animators.add(ObjectAnimator.ofFloat(row, View.TRANSLATION_Y, -targetY));
animators.add(ObjectAnimator.ofFloat(row, View.ALPHA, 1, 1, 1, 0, 1));
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
if (conversation != null && lastView != null && row != null) {
IConversation changeConversation = getItem(lastView.getId());
if (changeConversation != null) {
row.setConversation(changeConversation);
}
}
}
}, sortingAnimationDuration / HACK_ANIMATION_FACTOR);
}
}
}
} else if (listView.getChildAt(i) instanceof ConversationListArchivedBorderRow && isArchiveVisible) {
View row = listView.getChildAt(i);
int newPos = getUnarchivedCount();
if (currentViews.containsKey(newPos)) {
float t = currentViews.get(newPos).getY() - row.getY();
animators.add(ObjectAnimator.ofFloat(row, View.TRANSLATION_Y, t));
} else {
animators.add(ObjectAnimator.ofFloat(row, View.TRANSLATION_Y, ViewUtils.getOrientationIndependentDisplayHeight(listView.getContext())));
}
}
}
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.setDuration(sortingAnimationDuration);
animatorSet.playTogether(animators);
animatorSet.setInterpolator(new Expo.EaseOut());
animatorSet.setStartDelay(translationDelay);
animatorSet.start();
cleanUpSorting();
}
use of com.waz.zclient.pages.main.conversationlist.views.row.ConversationListRow in project wire-android by wireapp.
the class ConversationListAdapter method getView.
@Override
public View getView(final int position, View convertView, final ViewGroup parent) {
if (archivedState == ArchivedState.GONE && position == getCount() - 1) {
return createFakeView(parent.getContext());
}
listView = (ListView) parent;
if (getItemViewType(position) == ARCHIVE_BORDER_ROW) {
return getArchiveBorderRow(parent.getContext(), position);
}
ConversationListRow conversationListRowItem;
if (convertView == null || !(convertView instanceof ConversationListRow)) {
conversationListRowItem = new ConversationListRow(parent.getContext());
conversationListRowItem.setStreamMediaPlayerController(streamMediaPlayerController);
conversationListRowItem.setConversationActionCallback(conversationActionCallback);
conversationListRowItem.setNetworkStore(networkStore);
} else {
conversationListRowItem = (ConversationListRow) convertView;
// needs redraw due to animation changes
if (conversationListRowItem.needsRedraw()) {
conversationListRowItem = new ConversationListRow(parent.getContext());
conversationListRowItem.setStreamMediaPlayerController(streamMediaPlayerController);
conversationListRowItem.setConversationActionCallback(conversationActionCallback);
conversationListRowItem.setNetworkStore(networkStore);
}
}
conversationListRowItem.setAlpha(1f);
conversationListRowItem.setMaxAlpha(maxAlpha);
conversationListRowItem.setId(position);
conversationListRowItem.setSwipeable(mode == ConversationListFragment.Mode.NORMAL);
conversationListRowItem.showIndicatorView(mode == ConversationListFragment.Mode.NORMAL);
// integrate model
final IConversation conversation = getItem(position);
if (isArchived(position)) {
conversationListRowItem.setBackgroundColor(parent.getResources().getColor(R.color.list_archive_box__background_color));
} else {
conversationListRowItem.setBackgroundColor(Color.TRANSPARENT);
}
conversationListRowItem.setAccentColor(accentColor);
conversationListRowItem.setConversation(conversation);
conversationListRowItem.setConversationCallback(conversationCallback);
conversationListRowItem.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
((ListView) parent).performItemClick(parent, position, position);
}
});
final ConversationListRow anchorView = conversationListRowItem;
conversationListRowItem.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
if (conversationCallback == null) {
return false;
}
conversationCallback.onConversationListRowLongClicked(conversation, anchorView);
return true;
}
});
setListRowPaddingTopAndBottom(conversationListRowItem, position);
return conversationListRowItem;
}
Aggregations