2010-07-13 17:49:28 -04:00
|
|
|
package com.fsck.k9.activity;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
2010-09-21 18:12:45 -04:00
|
|
|
import java.util.Comparator;
|
|
|
|
import java.util.EnumMap;
|
2010-10-08 02:18:30 -04:00
|
|
|
import java.util.Iterator;
|
2010-07-13 17:49:28 -04:00
|
|
|
import java.util.List;
|
2010-09-21 18:12:45 -04:00
|
|
|
import java.util.Map;
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.app.Dialog;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
2010-08-30 10:37:34 -04:00
|
|
|
import android.graphics.Color;
|
2010-07-13 17:49:28 -04:00
|
|
|
import android.graphics.Typeface;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.text.Spannable;
|
2010-08-30 10:37:34 -04:00
|
|
|
import android.text.SpannableStringBuilder;
|
|
|
|
import android.text.style.ForegroundColorSpan;
|
|
|
|
import android.text.style.StyleSpan;
|
2010-07-13 17:49:28 -04:00
|
|
|
import android.util.Log;
|
|
|
|
import android.util.TypedValue;
|
2010-11-07 14:40:42 -05:00
|
|
|
import android.view.animation.Animation;
|
|
|
|
import android.view.animation.AnimationUtils;
|
|
|
|
import android.view.animation.Animation.AnimationListener;
|
2010-07-13 17:49:28 -04:00
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.GestureDetector;
|
|
|
|
import android.view.KeyEvent;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.MotionEvent;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.view.Window;
|
2010-09-21 18:12:45 -04:00
|
|
|
import android.view.ContextMenu.ContextMenuInfo;
|
|
|
|
import android.view.GestureDetector.SimpleOnGestureListener;
|
|
|
|
import android.view.View.OnClickListener;
|
2010-07-13 17:49:28 -04:00
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.BaseAdapter;
|
|
|
|
import android.widget.CheckBox;
|
|
|
|
import android.widget.CompoundButton;
|
|
|
|
import android.widget.ImageButton;
|
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.ProgressBar;
|
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.Toast;
|
2010-09-21 18:12:45 -04:00
|
|
|
import android.widget.AdapterView.AdapterContextMenuInfo;
|
|
|
|
import android.widget.CompoundButton.OnCheckedChangeListener;
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
import com.fsck.k9.Account;
|
|
|
|
import com.fsck.k9.AccountStats;
|
|
|
|
import com.fsck.k9.FontSizes;
|
|
|
|
import com.fsck.k9.K9;
|
|
|
|
import com.fsck.k9.Preferences;
|
|
|
|
import com.fsck.k9.R;
|
|
|
|
import com.fsck.k9.SearchSpecification;
|
|
|
|
import com.fsck.k9.activity.setup.AccountSettings;
|
|
|
|
import com.fsck.k9.activity.setup.FolderSettings;
|
|
|
|
import com.fsck.k9.activity.setup.Prefs;
|
|
|
|
import com.fsck.k9.controller.MessagingController;
|
|
|
|
import com.fsck.k9.controller.MessagingListener;
|
2010-09-21 18:12:45 -04:00
|
|
|
import com.fsck.k9.controller.MessagingController.SORT_TYPE;
|
2010-10-03 06:56:16 -04:00
|
|
|
import com.fsck.k9.helper.MessageHelper;
|
2010-07-13 17:49:28 -04:00
|
|
|
import com.fsck.k9.helper.Utility;
|
|
|
|
import com.fsck.k9.mail.Flag;
|
|
|
|
import com.fsck.k9.mail.Folder;
|
|
|
|
import com.fsck.k9.mail.Message;
|
|
|
|
import com.fsck.k9.mail.store.LocalStore;
|
|
|
|
import com.fsck.k9.mail.store.LocalStore.LocalFolder;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MessageList is the primary user interface for the program. This Activity
|
|
|
|
* shows a list of messages.
|
|
|
|
* From this Activity the user can perform all standard message operations.
|
|
|
|
*/
|
|
|
|
public class MessageList
|
2010-10-05 02:04:28 -04:00
|
|
|
extends K9Activity
|
2010-11-07 14:40:42 -05:00
|
|
|
implements OnClickListener, AdapterView.OnItemClickListener, AnimationListener
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-08-02 07:55:31 -04:00
|
|
|
|
2010-09-21 18:12:45 -04:00
|
|
|
/**
|
|
|
|
* Reverses the result of a {@link Comparator}.
|
2010-10-03 20:01:59 -04:00
|
|
|
*
|
2010-09-21 18:12:45 -04:00
|
|
|
* @param <T>
|
|
|
|
*/
|
|
|
|
public static class ReverseComparator<T> implements Comparator<T>
|
|
|
|
{
|
|
|
|
private Comparator<T> mDelegate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param delegate
|
|
|
|
* Never <code>null</code>.
|
|
|
|
*/
|
|
|
|
public ReverseComparator(final Comparator<T> delegate)
|
|
|
|
{
|
|
|
|
mDelegate = delegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(final T object1, final T object2)
|
|
|
|
{
|
|
|
|
// arg1 & 2 are mixed up, this is done on purpose
|
|
|
|
return mDelegate.compare(object2, object1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Chains comparator to find a non-0 result.
|
2010-10-03 20:01:59 -04:00
|
|
|
*
|
2010-09-21 18:12:45 -04:00
|
|
|
* @param <T>
|
|
|
|
*/
|
|
|
|
public static class ComparatorChain<T> implements Comparator<T>
|
|
|
|
{
|
|
|
|
|
|
|
|
private List<Comparator<T>> mChain;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param chain
|
|
|
|
* Comparator chain. Never <code>null</code>.
|
|
|
|
*/
|
|
|
|
public ComparatorChain(final List<Comparator<T>> chain)
|
|
|
|
{
|
|
|
|
mChain = chain;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(T object1, T object2)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
for (final Comparator<T> comparator : mChain)
|
|
|
|
{
|
|
|
|
result = comparator.compare(object1, object2);
|
|
|
|
if (result != 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2010-10-03 20:01:59 -04:00
|
|
|
|
2010-09-21 18:12:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static class AttachmentComparator implements Comparator<MessageInfoHolder>
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(MessageInfoHolder object1, MessageInfoHolder object2)
|
|
|
|
{
|
|
|
|
return (object1.hasAttachments ? 0 : 1) - (object2.hasAttachments ? 0 : 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class FlaggedComparator implements Comparator<MessageInfoHolder>
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(MessageInfoHolder object1, MessageInfoHolder object2)
|
|
|
|
{
|
|
|
|
return (object1.flagged ? 0 : 1) - (object2.flagged ? 0 : 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class UnreadComparator implements Comparator<MessageInfoHolder>
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(MessageInfoHolder object1, MessageInfoHolder object2)
|
|
|
|
{
|
|
|
|
return (object1.read ? 1 : 0) - (object2.read ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class SenderComparator implements Comparator<MessageInfoHolder>
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(MessageInfoHolder object1, MessageInfoHolder object2)
|
|
|
|
{
|
|
|
|
return object1.compareCounterparty.toLowerCase().compareTo(object2.compareCounterparty.toLowerCase());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class DateComparator implements Comparator<MessageInfoHolder>
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(MessageInfoHolder object1, MessageInfoHolder object2)
|
|
|
|
{
|
|
|
|
return object1.compareDate.compareTo(object2.compareDate);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class SubjectComparator implements Comparator<MessageInfoHolder>
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(MessageInfoHolder arg0, MessageInfoHolder arg1)
|
|
|
|
{
|
|
|
|
// XXX doesn't respect the Comparator contract since it alters the compared object
|
|
|
|
if (arg0.compareSubject == null)
|
|
|
|
{
|
|
|
|
arg0.compareSubject = Utility.stripSubject(arg0.subject);
|
|
|
|
}
|
|
|
|
if (arg1.compareSubject == null)
|
|
|
|
{
|
|
|
|
arg1.compareSubject = Utility.stripSubject(arg1.subject);
|
|
|
|
}
|
|
|
|
return arg0.compareSubject.compareToIgnoreCase(arg1.compareSubject);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-08-02 07:55:31 -04:00
|
|
|
/**
|
|
|
|
* Immutable empty {@link Message} array
|
|
|
|
*/
|
|
|
|
private static final Message[] EMPTY_MESSAGE_ARRAY = new Message[0];
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
private static final int DIALOG_MARK_ALL_AS_READ = 1;
|
|
|
|
|
|
|
|
private static final int ACTIVITY_CHOOSE_FOLDER_MOVE = 1;
|
|
|
|
private static final int ACTIVITY_CHOOSE_FOLDER_COPY = 2;
|
|
|
|
private static final int ACTIVITY_CHOOSE_FOLDER_MOVE_BATCH = 3;
|
|
|
|
private static final int ACTIVITY_CHOOSE_FOLDER_COPY_BATCH = 4;
|
|
|
|
|
|
|
|
private static final String EXTRA_ACCOUNT = "account";
|
|
|
|
private static final String EXTRA_FOLDER = "folder";
|
|
|
|
private static final String EXTRA_QUERY = "query";
|
|
|
|
private static final String EXTRA_QUERY_FLAGS = "queryFlags";
|
|
|
|
private static final String EXTRA_FORBIDDEN_FLAGS = "forbiddenFlags";
|
|
|
|
private static final String EXTRA_INTEGRATE = "integrate";
|
|
|
|
private static final String EXTRA_ACCOUNT_UUIDS = "accountUuids";
|
|
|
|
private static final String EXTRA_FOLDER_NAMES = "folderNames";
|
|
|
|
private static final String EXTRA_TITLE = "title";
|
|
|
|
private static final String EXTRA_LIST_POSITION = "listPosition";
|
|
|
|
|
2010-09-21 18:12:45 -04:00
|
|
|
/**
|
|
|
|
* Maps a {@link SORT_TYPE} to a {@link Comparator} implementation.
|
|
|
|
*/
|
|
|
|
private static final Map<SORT_TYPE, Comparator<MessageInfoHolder>> SORT_COMPARATORS;
|
|
|
|
|
|
|
|
static
|
|
|
|
{
|
|
|
|
// fill the mapping at class time loading
|
|
|
|
|
|
|
|
final Map<SORT_TYPE, Comparator<MessageInfoHolder>> map = new EnumMap<SORT_TYPE, Comparator<MessageInfoHolder>>(SORT_TYPE.class);
|
|
|
|
map.put(SORT_TYPE.SORT_ATTACHMENT, new AttachmentComparator());
|
|
|
|
map.put(SORT_TYPE.SORT_DATE, new DateComparator());
|
|
|
|
map.put(SORT_TYPE.SORT_FLAGGED, new FlaggedComparator());
|
|
|
|
map.put(SORT_TYPE.SORT_SENDER, new SenderComparator());
|
|
|
|
map.put(SORT_TYPE.SORT_SUBJECT, new SubjectComparator());
|
|
|
|
map.put(SORT_TYPE.SORT_UNREAD, new UnreadComparator());
|
|
|
|
|
|
|
|
// make it immutable to prevent accidental alteration (content is immutable already)
|
|
|
|
SORT_COMPARATORS = Collections.unmodifiableMap(map);
|
|
|
|
}
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
private ListView mListView;
|
|
|
|
|
|
|
|
private boolean mTouchView = true;
|
2010-11-04 22:59:26 -04:00
|
|
|
private int mPreviewLines = 0;
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
private MessageListAdapter mAdapter;
|
|
|
|
|
|
|
|
private FolderInfoHolder mCurrentFolder;
|
|
|
|
|
|
|
|
private LayoutInflater mInflater;
|
|
|
|
|
|
|
|
private MessagingController mController;
|
|
|
|
|
|
|
|
private Account mAccount;
|
|
|
|
private int mUnreadMessageCount = 0;
|
|
|
|
|
|
|
|
private GestureDetector gestureDetector;
|
|
|
|
private View.OnTouchListener gestureListener;
|
|
|
|
/**
|
|
|
|
* Stores the name of the folder that we want to open as soon as possible
|
|
|
|
* after load.
|
|
|
|
*/
|
|
|
|
private String mFolderName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If we're doing a search, this contains the query string.
|
|
|
|
*/
|
|
|
|
private String mQueryString;
|
|
|
|
private Flag[] mQueryFlags = null;
|
|
|
|
private Flag[] mForbiddenFlags = null;
|
|
|
|
private boolean mIntegrate = false;
|
|
|
|
private String[] mAccountUuids = null;
|
|
|
|
private String[] mFolderNames = null;
|
|
|
|
private String mTitle;
|
|
|
|
|
|
|
|
private MessageListHandler mHandler = new MessageListHandler();
|
|
|
|
|
|
|
|
private SORT_TYPE sortType = SORT_TYPE.SORT_DATE;
|
|
|
|
|
|
|
|
private boolean sortAscending = true;
|
|
|
|
private boolean sortDateAscending = false;
|
|
|
|
|
|
|
|
private boolean mStars = true;
|
|
|
|
private boolean mCheckboxes = true;
|
|
|
|
private int mSelectedCount = 0;
|
|
|
|
|
|
|
|
private View mBatchButtonArea;
|
|
|
|
private ImageButton mBatchReadButton;
|
|
|
|
private ImageButton mBatchDeleteButton;
|
|
|
|
private ImageButton mBatchFlagButton;
|
|
|
|
private ImageButton mBatchDoneButton;
|
|
|
|
|
|
|
|
private FontSizes mFontSizes = K9.getFontSizes();
|
|
|
|
|
|
|
|
private Bundle mState = null;
|
2010-07-14 14:39:57 -04:00
|
|
|
private MessageInfoHolder mSelectedMessage = null;
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-08-17 22:49:13 -04:00
|
|
|
private Context context = null;
|
|
|
|
|
2010-10-05 02:04:28 -04:00
|
|
|
/* package visibility for faster inner class access */
|
|
|
|
MessageHelper mMessageHelper = MessageHelper.getInstance(this);
|
2010-10-03 06:56:16 -04:00
|
|
|
|
2010-08-03 02:09:39 -04:00
|
|
|
class MessageListHandler
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
public void removeMessage(final List<MessageInfoHolder> messages)
|
|
|
|
{
|
|
|
|
runOnUiThread(new Runnable()
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder message : messages)
|
|
|
|
{
|
|
|
|
if (message != null)
|
|
|
|
{
|
|
|
|
if (mFolderName == null || (message.folder != null && message.folder.name.equals(mFolderName)))
|
|
|
|
{
|
|
|
|
if (message.selected && mSelectedCount > 0)
|
|
|
|
{
|
|
|
|
mSelectedCount--;
|
|
|
|
}
|
|
|
|
mAdapter.messages.remove(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resetUnreadCountOnThread();
|
|
|
|
|
|
|
|
mAdapter.notifyDataSetChanged();
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addMessages(final List<MessageInfoHolder> messages)
|
|
|
|
{
|
|
|
|
final boolean wasEmpty = mAdapter.messages.isEmpty();
|
|
|
|
runOnUiThread(new Runnable()
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
for (final MessageInfoHolder message : messages)
|
|
|
|
{
|
|
|
|
if (mFolderName == null || (message.folder != null && message.folder.name.equals(mFolderName)))
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
2010-09-21 18:12:45 -04:00
|
|
|
index = Collections.binarySearch(mAdapter.messages, message, getComparator());
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (index < 0)
|
|
|
|
{
|
|
|
|
index = (index * -1) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mAdapter.messages.add(index, message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wasEmpty)
|
|
|
|
{
|
|
|
|
mListView.setSelection(0);
|
|
|
|
}
|
|
|
|
resetUnreadCountOnThread();
|
|
|
|
|
|
|
|
mAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void resetUnreadCount()
|
|
|
|
{
|
|
|
|
runOnUiThread(new Runnable()
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
resetUnreadCountOnThread();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void resetUnreadCountOnThread()
|
|
|
|
{
|
|
|
|
if (mQueryString != null)
|
|
|
|
{
|
|
|
|
int unreadCount = 0;
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
unreadCount += holder.read ? 0 : 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mUnreadMessageCount = unreadCount;
|
|
|
|
refreshTitleOnThread();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void sortMessages()
|
|
|
|
{
|
2010-09-21 18:12:45 -04:00
|
|
|
final Comparator<MessageInfoHolder> chainComparator = getComparator();
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
runOnUiThread(new Runnable()
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
2010-09-21 18:12:45 -04:00
|
|
|
Collections.sort(mAdapter.messages, chainComparator);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
mAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2010-09-21 18:12:45 -04:00
|
|
|
/**
|
|
|
|
* @return The comparator to use to display messages in an ordered
|
|
|
|
* fashion. Never <code>null</code>.
|
|
|
|
*/
|
|
|
|
protected Comparator<MessageInfoHolder> getComparator()
|
|
|
|
{
|
|
|
|
final List<Comparator<MessageInfoHolder>> chain = new ArrayList<Comparator<MessageInfoHolder>>(2 /* we add 2 comparators at most */ );
|
|
|
|
|
|
|
|
{
|
|
|
|
// add the specified comparator
|
|
|
|
final Comparator<MessageInfoHolder> comparator = SORT_COMPARATORS.get(sortType);
|
|
|
|
if (sortAscending)
|
|
|
|
{
|
|
|
|
chain.add(comparator);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
chain.add(new ReverseComparator<MessageInfoHolder>(comparator));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// add the date comparator if not already specified
|
|
|
|
if (sortType != SORT_TYPE.SORT_DATE)
|
|
|
|
{
|
|
|
|
final Comparator<MessageInfoHolder> comparator = SORT_COMPARATORS.get(SORT_TYPE.SORT_DATE);
|
|
|
|
if (sortDateAscending)
|
|
|
|
{
|
|
|
|
chain.add(comparator);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
chain.add(new ReverseComparator<MessageInfoHolder>(comparator));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// build the comparator chain
|
|
|
|
final Comparator<MessageInfoHolder> chainComparator = new ComparatorChain<MessageInfoHolder>(chain);
|
|
|
|
|
|
|
|
return chainComparator;
|
|
|
|
}
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
public void folderLoading(String folder, boolean loading)
|
|
|
|
{
|
|
|
|
if (mCurrentFolder != null && mCurrentFolder.name.equals(folder))
|
|
|
|
{
|
|
|
|
mCurrentFolder.loading = loading;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void refreshTitle()
|
|
|
|
{
|
|
|
|
runOnUiThread(new Runnable()
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
refreshTitleOnThread();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void refreshTitleOnThread()
|
|
|
|
{
|
|
|
|
setWindowTitle();
|
|
|
|
setWindowProgress();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setWindowProgress()
|
|
|
|
{
|
|
|
|
int level = Window.PROGRESS_END;
|
|
|
|
|
|
|
|
if (mCurrentFolder != null && mCurrentFolder.loading && mAdapter.mListener.getFolderTotal() > 0)
|
|
|
|
{
|
2010-09-02 20:56:19 -04:00
|
|
|
int divisor = mAdapter.mListener.getFolderTotal();
|
|
|
|
if (divisor != 0)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-09-02 20:56:19 -04:00
|
|
|
level = (Window.PROGRESS_END / divisor) * (mAdapter.mListener.getFolderCompleted()) ;
|
|
|
|
if (level > Window.PROGRESS_END)
|
|
|
|
{
|
|
|
|
level = Window.PROGRESS_END;
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getWindow().setFeatureInt(Window.FEATURE_PROGRESS, level);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setWindowTitle()
|
|
|
|
{
|
|
|
|
String displayName;
|
|
|
|
|
|
|
|
if (mFolderName != null)
|
|
|
|
{
|
|
|
|
displayName = mFolderName;
|
|
|
|
|
|
|
|
if (K9.INBOX.equalsIgnoreCase(displayName))
|
|
|
|
{
|
|
|
|
displayName = getString(R.string.special_mailbox_name_inbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
String dispString = mAdapter.mListener.formatHeader(MessageList.this, getString(R.string.message_list_title, mAccount.getDescription(), displayName), mUnreadMessageCount, getTimeFormat());
|
|
|
|
setTitle(dispString);
|
|
|
|
}
|
|
|
|
else if (mQueryString != null)
|
|
|
|
{
|
|
|
|
if (mTitle != null)
|
|
|
|
{
|
|
|
|
String dispString = mAdapter.mListener.formatHeader(MessageList.this, mTitle, mUnreadMessageCount, getTimeFormat());
|
|
|
|
setTitle(dispString);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setTitle(getString(R.string.search_results) + ": "+ mQueryString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void progress(final boolean progress)
|
|
|
|
{
|
|
|
|
runOnUiThread(new Runnable()
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
showProgressIndicator(progress);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void actionHandleFolder(Context context, Account account, String folder)
|
|
|
|
{
|
|
|
|
Intent intent = actionHandleFolderIntent(context,account,folder);
|
|
|
|
context.startActivity(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Intent actionHandleFolderIntent(Context context, Account account, String folder)
|
|
|
|
{
|
|
|
|
Intent intent = new Intent(context, MessageList.class);
|
|
|
|
intent.putExtra(EXTRA_ACCOUNT, account.getUuid());
|
|
|
|
|
|
|
|
if (folder != null)
|
|
|
|
{
|
|
|
|
intent.putExtra(EXTRA_FOLDER, folder);
|
|
|
|
}
|
|
|
|
return intent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void actionHandle(Context context, String title, String queryString, boolean integrate, Flag[] flags, Flag[] forbiddenFlags)
|
|
|
|
{
|
|
|
|
Intent intent = new Intent(context, MessageList.class);
|
|
|
|
intent.putExtra(EXTRA_QUERY, queryString);
|
|
|
|
if (flags != null)
|
|
|
|
{
|
|
|
|
intent.putExtra(EXTRA_QUERY_FLAGS, Utility.combine(flags, ','));
|
|
|
|
}
|
|
|
|
if (forbiddenFlags != null)
|
|
|
|
{
|
|
|
|
intent.putExtra(EXTRA_FORBIDDEN_FLAGS, Utility.combine(forbiddenFlags, ','));
|
|
|
|
}
|
|
|
|
intent.putExtra(EXTRA_INTEGRATE, integrate);
|
|
|
|
intent.putExtra(EXTRA_TITLE, title);
|
|
|
|
context.startActivity(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void actionHandle(Context context, String title, SearchSpecification searchSpecification)
|
|
|
|
{
|
|
|
|
Intent intent = new Intent(context, MessageList.class);
|
|
|
|
intent.putExtra(EXTRA_QUERY, searchSpecification.getQuery());
|
|
|
|
if (searchSpecification.getRequiredFlags() != null)
|
|
|
|
{
|
|
|
|
intent.putExtra(EXTRA_QUERY_FLAGS, Utility.combine(searchSpecification.getRequiredFlags(), ','));
|
|
|
|
}
|
|
|
|
if (searchSpecification.getForbiddenFlags() != null)
|
|
|
|
{
|
|
|
|
intent.putExtra(EXTRA_FORBIDDEN_FLAGS, Utility.combine(searchSpecification.getForbiddenFlags(), ','));
|
|
|
|
}
|
|
|
|
intent.putExtra(EXTRA_INTEGRATE, searchSpecification.isIntegrate());
|
|
|
|
intent.putExtra(EXTRA_ACCOUNT_UUIDS, searchSpecification.getAccountUuids());
|
|
|
|
intent.putExtra(EXTRA_FOLDER_NAMES, searchSpecification.getFolderNames());
|
|
|
|
intent.putExtra(EXTRA_TITLE, title);
|
|
|
|
context.startActivity(intent);
|
|
|
|
}
|
|
|
|
|
2010-08-03 01:46:35 -04:00
|
|
|
@Override
|
2010-07-13 17:49:28 -04:00
|
|
|
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
|
|
|
|
{
|
|
|
|
if (mCurrentFolder != null && ((position+1) == mAdapter.getCount()))
|
|
|
|
{
|
|
|
|
mController.loadMoreMessages(mAccount, mFolderName, mAdapter.mListener);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageInfoHolder message = (MessageInfoHolder) mAdapter.getItem(position);
|
|
|
|
if (mSelectedCount > 0)
|
|
|
|
{
|
|
|
|
// In multiselect mode make sure that clicking on the item results
|
|
|
|
// in toggling the 'selected' checkbox.
|
|
|
|
setSelected(message, !message.selected);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
onOpenMessage(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState)
|
|
|
|
{
|
2010-08-18 10:13:37 -04:00
|
|
|
context=this;
|
2010-07-13 17:49:28 -04:00
|
|
|
super.onCreate(savedInstanceState);
|
2010-08-30 10:37:34 -04:00
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
mInflater = getLayoutInflater();
|
|
|
|
initializeLayout();
|
|
|
|
onNewIntent(getIntent());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onNewIntent(Intent intent)
|
|
|
|
{
|
|
|
|
setIntent(intent); // onNewIntent doesn't autoset our "internal" intent
|
|
|
|
|
|
|
|
// Only set "touchable" when we're first starting up the activity.
|
|
|
|
// Otherwise we get force closes when the user toggles it midstream.
|
|
|
|
mTouchView = K9.messageListTouchable();
|
2010-11-04 22:59:26 -04:00
|
|
|
mPreviewLines = K9.messageListPreviewLines();
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
String accountUuid = intent.getStringExtra(EXTRA_ACCOUNT);
|
|
|
|
mAccount = Preferences.getPreferences(this).getAccount(accountUuid);
|
|
|
|
mFolderName = intent.getStringExtra(EXTRA_FOLDER);
|
|
|
|
mQueryString = intent.getStringExtra(EXTRA_QUERY);
|
|
|
|
|
|
|
|
String queryFlags = intent.getStringExtra(EXTRA_QUERY_FLAGS);
|
|
|
|
if (queryFlags != null)
|
|
|
|
{
|
|
|
|
String[] flagStrings = queryFlags.split(",");
|
|
|
|
mQueryFlags = new Flag[flagStrings.length];
|
|
|
|
for (int i = 0; i < flagStrings.length; i++)
|
|
|
|
{
|
|
|
|
mQueryFlags[i] = Flag.valueOf(flagStrings[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
String forbiddenFlags = intent.getStringExtra(EXTRA_FORBIDDEN_FLAGS);
|
|
|
|
if (forbiddenFlags != null)
|
|
|
|
{
|
|
|
|
String[] flagStrings = forbiddenFlags.split(",");
|
|
|
|
mForbiddenFlags = new Flag[flagStrings.length];
|
|
|
|
for (int i = 0; i < flagStrings.length; i++)
|
|
|
|
{
|
|
|
|
mForbiddenFlags[i] = Flag.valueOf(flagStrings[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mIntegrate = intent.getBooleanExtra(EXTRA_INTEGRATE, false);
|
|
|
|
mAccountUuids = intent.getStringArrayExtra(EXTRA_ACCOUNT_UUIDS);
|
|
|
|
mFolderNames = intent.getStringArrayExtra(EXTRA_FOLDER_NAMES);
|
|
|
|
mTitle = intent.getStringExtra(EXTRA_TITLE);
|
|
|
|
|
|
|
|
// Take the initial folder into account only if we are *not* restoring
|
|
|
|
// the activity already.
|
|
|
|
if (mFolderName == null && mQueryString == null)
|
|
|
|
{
|
|
|
|
mFolderName = mAccount.getAutoExpandFolderName();
|
|
|
|
}
|
|
|
|
|
|
|
|
mAdapter = new MessageListAdapter();
|
|
|
|
final Object previousData = getLastNonConfigurationInstance();
|
|
|
|
|
|
|
|
if (previousData != null)
|
|
|
|
{
|
|
|
|
//noinspection unchecked
|
|
|
|
mAdapter.messages.addAll((List<MessageInfoHolder>) previousData);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mFolderName != null)
|
|
|
|
{
|
|
|
|
mCurrentFolder = mAdapter.getFolder(mFolderName, mAccount);
|
|
|
|
}
|
|
|
|
|
|
|
|
mController = MessagingController.getInstance(getApplication());
|
|
|
|
mListView.setAdapter(mAdapter);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPause()
|
|
|
|
{
|
|
|
|
super.onPause();
|
|
|
|
mController.removeListener(mAdapter.mListener);
|
|
|
|
saveListState();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void saveListState()
|
|
|
|
{
|
|
|
|
mState = new Bundle();
|
|
|
|
mState.putInt(EXTRA_LIST_POSITION, mListView.getSelectedItemPosition());
|
|
|
|
}
|
|
|
|
|
|
|
|
public void restoreListState()
|
|
|
|
{
|
|
|
|
if (mState == null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pos = mState.getInt(EXTRA_LIST_POSITION, ListView.INVALID_POSITION);
|
|
|
|
|
|
|
|
if (pos >= mListView.getCount())
|
|
|
|
{
|
|
|
|
pos = mListView.getCount() - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos == ListView.INVALID_POSITION)
|
|
|
|
{
|
|
|
|
mListView.setSelected(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mListView.setSelection(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On resume we refresh messages for the folder that is currently open.
|
|
|
|
* This guarantees that things like unread message count and read status
|
|
|
|
* are updated.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public void onResume()
|
|
|
|
{
|
|
|
|
super.onResume();
|
|
|
|
|
|
|
|
mStars = K9.messageListStars();
|
|
|
|
mCheckboxes = K9.messageListCheckboxes();
|
|
|
|
|
|
|
|
sortType = mController.getSortType();
|
|
|
|
sortAscending = mController.isSortAscending(sortType);
|
|
|
|
sortDateAscending = mController.isSortAscending(SORT_TYPE.SORT_DATE);
|
|
|
|
|
|
|
|
mController.addListener(mAdapter.mListener);
|
2010-10-23 11:19:56 -04:00
|
|
|
if (mAccount != null)
|
|
|
|
{
|
|
|
|
mController.notifyAccountCancel(this, mAccount);
|
|
|
|
MessagingController.getInstance(getApplication()).notifyAccountCancel(this, mAccount);
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-10-23 11:19:56 -04:00
|
|
|
if (mAdapter.messages.isEmpty())
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-10-23 11:19:56 -04:00
|
|
|
if (mFolderName != null)
|
2010-10-08 02:18:30 -04:00
|
|
|
{
|
|
|
|
mController.listLocalMessages(mAccount, mFolderName, mAdapter.mListener);
|
|
|
|
}
|
2010-10-23 11:19:56 -04:00
|
|
|
else if (mQueryString != null)
|
2010-10-08 02:18:30 -04:00
|
|
|
{
|
2010-10-23 11:19:56 -04:00
|
|
|
mController.searchLocalMessages(mAccountUuids, mFolderNames, null, mQueryString, mIntegrate, mQueryFlags, mForbiddenFlags, mAdapter.mListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
new Thread()
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public void run()
|
2010-10-21 16:49:36 -04:00
|
|
|
{
|
2010-10-23 11:19:56 -04:00
|
|
|
mAdapter.markAllMessagesAsDirty();
|
|
|
|
|
|
|
|
if (mFolderName != null)
|
2010-10-21 16:49:36 -04:00
|
|
|
{
|
|
|
|
mController.listLocalMessagesSynchronous(mAccount, mFolderName, mAdapter.mListener);
|
2010-10-23 11:19:56 -04:00
|
|
|
}
|
|
|
|
else if (mQueryString != null)
|
|
|
|
{
|
|
|
|
mController.searchLocalMessagesSynchronous(mAccountUuids, mFolderNames, null, mQueryString, mIntegrate, mQueryFlags, mForbiddenFlags, mAdapter.mListener);
|
2010-10-21 16:49:36 -04:00
|
|
|
}
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-10-23 11:19:56 -04:00
|
|
|
mAdapter.pruneDirtyMessages();
|
|
|
|
runOnUiThread(new Runnable()
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
mAdapter.notifyDataSetChanged();
|
|
|
|
restoreListState();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-10-23 11:19:56 -04:00
|
|
|
}
|
|
|
|
.start();
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
2010-10-23 11:19:56 -04:00
|
|
|
|
|
|
|
if (mAccount != null && mFolderName != null)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-10-23 11:19:56 -04:00
|
|
|
mController.getFolderUnreadMessageCount(mAccount, mFolderName, mAdapter.mListener);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
|
|
|
|
}
|
|
|
|
private void initializeLayout()
|
|
|
|
{
|
|
|
|
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
|
|
|
|
requestWindowFeature(Window.FEATURE_PROGRESS);
|
|
|
|
setContentView(R.layout.message_list);
|
|
|
|
|
|
|
|
mListView = (ListView) findViewById(R.id.message_list);
|
|
|
|
mListView.setScrollBarStyle(View.SCROLLBARS_OUTSIDE_INSET);
|
|
|
|
mListView.setLongClickable(true);
|
|
|
|
mListView.setFastScrollEnabled(true);
|
|
|
|
mListView.setScrollingCacheEnabled(true);
|
|
|
|
mListView.setOnItemClickListener(this);
|
|
|
|
|
|
|
|
registerForContextMenu(mListView);
|
|
|
|
|
|
|
|
mBatchButtonArea = findViewById(R.id.batch_button_area);
|
|
|
|
mBatchReadButton = (ImageButton) findViewById(R.id.batch_read_button);
|
|
|
|
mBatchReadButton.setOnClickListener(this);
|
|
|
|
mBatchDeleteButton = (ImageButton) findViewById(R.id.batch_delete_button);
|
|
|
|
mBatchDeleteButton.setOnClickListener(this);
|
|
|
|
mBatchFlagButton = (ImageButton) findViewById(R.id.batch_flag_button);
|
|
|
|
mBatchFlagButton.setOnClickListener(this);
|
|
|
|
mBatchDoneButton = (ImageButton) findViewById(R.id.batch_done_button);
|
|
|
|
|
|
|
|
mBatchDoneButton.setOnClickListener(this);
|
|
|
|
|
|
|
|
// Gesture detection
|
|
|
|
gestureDetector = new GestureDetector(new MyGestureDetector());
|
|
|
|
gestureListener = new View.OnTouchListener()
|
|
|
|
{
|
|
|
|
public boolean onTouch(View v, MotionEvent event)
|
|
|
|
{
|
|
|
|
if (gestureDetector.onTouchEvent(event))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
mListView.setOnTouchListener(gestureListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object onRetainNonConfigurationInstance()
|
|
|
|
{
|
|
|
|
return mAdapter.messages;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBackPressed()
|
|
|
|
{
|
|
|
|
// This will be called either automatically for you on 2.0
|
|
|
|
// or later, or by the code above on earlier versions of the
|
|
|
|
// platform.
|
|
|
|
if (K9.manageBack())
|
|
|
|
{
|
|
|
|
if (mQueryString == null)
|
|
|
|
{
|
|
|
|
onShowFolderList();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
onAccounts();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event)
|
|
|
|
{
|
|
|
|
if (
|
|
|
|
// XXX TODO - when we go to android 2.0, uncomment this
|
|
|
|
// android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.ECLAIR &&
|
|
|
|
keyCode == KeyEvent.KEYCODE_BACK
|
|
|
|
&& event.getRepeatCount() == 0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Take care of calling this method on earlier versions of
|
|
|
|
// the platform where it doesn't exist.
|
|
|
|
onBackPressed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shortcuts that work no matter what is selected
|
|
|
|
switch (keyCode)
|
|
|
|
{
|
2010-08-29 22:16:20 -04:00
|
|
|
|
2010-08-30 23:58:33 -04:00
|
|
|
// messagelist is actually a K9Activity, not a K9ListActivity
|
|
|
|
// This saddens me greatly, but to support volume key navigation
|
|
|
|
// in MessageView, we implement this bit of wrapper code
|
2010-08-29 22:16:20 -04:00
|
|
|
case KeyEvent.KEYCODE_VOLUME_UP:
|
|
|
|
{
|
2010-09-03 17:41:32 -04:00
|
|
|
if (K9.useVolumeKeysForListNavigationEnabled())
|
2010-08-29 22:16:20 -04:00
|
|
|
{
|
2010-09-03 17:41:32 -04:00
|
|
|
int currentPosition = mListView.getSelectedItemPosition();
|
|
|
|
if (currentPosition == AdapterView.INVALID_POSITION || mListView.isInTouchMode())
|
|
|
|
{
|
|
|
|
currentPosition = mListView.getFirstVisiblePosition();
|
|
|
|
}
|
|
|
|
if (currentPosition > 0)
|
2010-08-30 23:58:33 -04:00
|
|
|
{
|
2010-09-03 17:41:32 -04:00
|
|
|
mListView.setSelection(currentPosition - 1);
|
2010-08-29 22:16:20 -04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2010-09-03 17:41:32 -04:00
|
|
|
return false;
|
2010-08-29 22:16:20 -04:00
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_VOLUME_DOWN:
|
|
|
|
{
|
2010-09-03 17:41:32 -04:00
|
|
|
if (K9.useVolumeKeysForListNavigationEnabled())
|
2010-08-29 22:16:20 -04:00
|
|
|
{
|
2010-09-03 17:41:32 -04:00
|
|
|
int currentPosition = mListView.getSelectedItemPosition();
|
|
|
|
if (currentPosition == AdapterView.INVALID_POSITION || mListView.isInTouchMode())
|
2010-08-30 23:58:33 -04:00
|
|
|
{
|
2010-09-03 17:41:32 -04:00
|
|
|
currentPosition = mListView.getFirstVisiblePosition();
|
|
|
|
}
|
2010-10-03 20:01:59 -04:00
|
|
|
|
2010-09-03 17:41:32 -04:00
|
|
|
if (currentPosition < mListView.getCount())
|
|
|
|
{
|
|
|
|
mListView.setSelection(currentPosition + 1);
|
2010-08-29 22:16:20 -04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2010-09-03 17:41:32 -04:00
|
|
|
return false;
|
2010-08-29 22:16:20 -04:00
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
case KeyEvent.KEYCODE_DPAD_LEFT:
|
|
|
|
{
|
|
|
|
if (mBatchButtonArea.hasFocus())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_DPAD_RIGHT:
|
|
|
|
{
|
|
|
|
if (mBatchButtonArea.hasFocus())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_C:
|
|
|
|
{
|
|
|
|
onCompose();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_Q:
|
|
|
|
{
|
|
|
|
onShowFolderList();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_O:
|
|
|
|
{
|
|
|
|
onCycleSort();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_I:
|
|
|
|
{
|
|
|
|
onToggleSortAscending();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_H:
|
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this, R.string.message_list_help_key, Toast.LENGTH_LONG);
|
|
|
|
toast.show();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int position = mListView.getSelectedItemPosition();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (position >= 0)
|
|
|
|
{
|
|
|
|
MessageInfoHolder message = (MessageInfoHolder) mAdapter.getItem(position);
|
|
|
|
|
|
|
|
if (message != null)
|
|
|
|
{
|
|
|
|
switch (keyCode)
|
|
|
|
{
|
|
|
|
case KeyEvent.KEYCODE_DEL:
|
|
|
|
{
|
|
|
|
onDelete(message, position);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_S:
|
|
|
|
{
|
|
|
|
setSelected(message, !message.selected);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_D:
|
|
|
|
{
|
|
|
|
onDelete(message, position);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_F:
|
|
|
|
{
|
|
|
|
onForward(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_A:
|
|
|
|
{
|
|
|
|
onReplyAll(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_R:
|
|
|
|
{
|
|
|
|
onReply(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_G:
|
|
|
|
{
|
|
|
|
onToggleFlag(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_M:
|
|
|
|
{
|
|
|
|
onMove(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_V:
|
|
|
|
{
|
|
|
|
onArchive(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_Y:
|
|
|
|
{
|
|
|
|
onCopy(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case KeyEvent.KEYCODE_Z:
|
|
|
|
{
|
|
|
|
onToggleRead(message);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
2010-08-29 22:16:38 -04:00
|
|
|
return super.onKeyDown(keyCode, event);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-08-29 22:16:20 -04:00
|
|
|
@Override
|
|
|
|
public boolean onKeyUp(int keyCode, KeyEvent event)
|
|
|
|
{
|
|
|
|
// Swallow these events too to avoid the audible notification of a volume change
|
2010-09-03 17:41:32 -04:00
|
|
|
if (K9.useVolumeKeysForListNavigationEnabled())
|
2010-08-30 23:58:33 -04:00
|
|
|
{
|
|
|
|
if ((keyCode == KeyEvent.KEYCODE_VOLUME_UP) || (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN))
|
|
|
|
{
|
2010-08-29 22:16:20 -04:00
|
|
|
if (K9.DEBUG)
|
|
|
|
Log.v(K9.LOG_TAG, "Swallowed key up.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return super.onKeyUp(keyCode,event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
private void onOpenMessage(MessageInfoHolder message)
|
|
|
|
{
|
|
|
|
if (message.folder.name.equals(message.message.getFolder().getAccount().getDraftsFolderName()))
|
|
|
|
{
|
|
|
|
MessageCompose.actionEditDraft(this, message.message.getFolder().getAccount(), message.message);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Need to get the list before the sort starts
|
|
|
|
ArrayList<MessageReference> messageRefs = new ArrayList<MessageReference>();
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
MessageReference ref = holder.message.makeMessageReference();
|
|
|
|
messageRefs.add(ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MessageReference ref = message.message.makeMessageReference();
|
|
|
|
Log.i(K9.LOG_TAG, "MessageList sending message " + ref);
|
|
|
|
|
|
|
|
MessageView.actionView(this, ref, messageRefs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We set read=true here for UI performance reasons. The actual value
|
|
|
|
* will get picked up on the refresh when the Activity is resumed but
|
|
|
|
* that may take a second or so and we don't want this to show and
|
|
|
|
* then go away. I've gone back and forth on this, and this gives a
|
|
|
|
* better UI experience, so I am putting it back in.
|
|
|
|
*/
|
|
|
|
if (!message.read)
|
|
|
|
{
|
|
|
|
message.read = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onAccounts()
|
|
|
|
{
|
|
|
|
Accounts.listAccounts(this);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onShowFolderList()
|
|
|
|
{
|
|
|
|
FolderList.actionHandleAccount(this, mAccount);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onCompose()
|
|
|
|
{
|
|
|
|
if (mQueryString != null)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If we have a query string, we don't have an account to let
|
|
|
|
* compose start the default action.
|
|
|
|
*/
|
|
|
|
MessageCompose.actionCompose(this, null);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MessageCompose.actionCompose(this, mAccount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onEditPrefs()
|
|
|
|
{
|
|
|
|
Prefs.actionPrefs(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onEditAccount()
|
|
|
|
{
|
|
|
|
AccountSettings.actionSettings(this, mAccount);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void changeSort(SORT_TYPE newSortType)
|
|
|
|
{
|
|
|
|
if (sortType == newSortType)
|
|
|
|
{
|
|
|
|
onToggleSortAscending();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sortType = newSortType;
|
|
|
|
mController.setSortType(sortType);
|
|
|
|
sortAscending = mController.isSortAscending(sortType);
|
|
|
|
sortDateAscending = mController.isSortAscending(SORT_TYPE.SORT_DATE);
|
|
|
|
reSort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void reSort()
|
|
|
|
{
|
|
|
|
int toastString = sortType.getToast(sortAscending);
|
|
|
|
|
|
|
|
Toast toast = Toast.makeText(this, toastString, Toast.LENGTH_SHORT);
|
|
|
|
toast.show();
|
|
|
|
|
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onCycleSort()
|
|
|
|
{
|
|
|
|
SORT_TYPE[] sorts = SORT_TYPE.values();
|
|
|
|
int curIndex = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < sorts.length; i++)
|
|
|
|
{
|
|
|
|
if (sorts[i] == sortType)
|
|
|
|
{
|
|
|
|
curIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curIndex++;
|
|
|
|
|
|
|
|
if (curIndex == sorts.length)
|
|
|
|
{
|
|
|
|
curIndex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
changeSort(sorts[curIndex]);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onToggleSortAscending()
|
|
|
|
{
|
|
|
|
mController.setSortAscending(sortType, !sortAscending);
|
|
|
|
|
|
|
|
sortAscending = mController.isSortAscending(sortType);
|
|
|
|
sortDateAscending = mController.isSortAscending(SORT_TYPE.SORT_DATE);
|
|
|
|
|
|
|
|
reSort();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onDelete(MessageInfoHolder holder, int position)
|
|
|
|
{
|
|
|
|
mAdapter.removeMessage(holder);
|
|
|
|
mController.deleteMessages(new Message[] { holder.message }, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onMove(MessageInfoHolder holder)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(holder.message.getFolder().getAccount()))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(holder.message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this, R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
final Account account = holder.message.getFolder().getAccount();
|
|
|
|
|
|
|
|
Intent intent = new Intent(this, ChooseFolder.class);
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_ACCOUNT, account.getUuid());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_CUR_FOLDER, holder.folder.name);
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_SEL_FOLDER, account.getLastSelectedFolderName());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_MESSAGE, holder.message.makeMessageReference());
|
|
|
|
startActivityForResult(intent, ACTIVITY_CHOOSE_FOLDER_MOVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onArchive(MessageInfoHolder holder)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(holder.message.getFolder().getAccount()))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(holder.message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this, R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
onMoveChosen(holder, holder.message.getFolder().getAccount().getArchiveFolderName());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onSpam(MessageInfoHolder holder)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(holder.message.getFolder().getAccount()))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(holder.message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this, R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
onMoveChosen(holder, holder.message.getFolder().getAccount().getSpamFolderName());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onCopy(MessageInfoHolder holder)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isCopyCapable(holder.message.getFolder().getAccount()))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isCopyCapable(holder.message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this, R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
final Account account = holder.message.getFolder().getAccount();
|
|
|
|
|
|
|
|
Intent intent = new Intent(this, ChooseFolder.class);
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_ACCOUNT, account.getUuid());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_CUR_FOLDER, holder.folder.name);
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_SEL_FOLDER, account.getLastSelectedFolderName());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_MESSAGE, holder.message.makeMessageReference());
|
|
|
|
startActivityForResult(intent, ACTIVITY_CHOOSE_FOLDER_COPY);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode, Intent data)
|
|
|
|
{
|
|
|
|
if (resultCode != RESULT_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (requestCode)
|
|
|
|
{
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_MOVE:
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_COPY:
|
|
|
|
{
|
|
|
|
if (data == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
final String destFolderName = data.getStringExtra(ChooseFolder.EXTRA_NEW_FOLDER);
|
|
|
|
final MessageReference ref = (MessageReference)data.getSerializableExtra(ChooseFolder.EXTRA_MESSAGE);
|
|
|
|
final MessageInfoHolder m = mAdapter.getMessage(ref);
|
|
|
|
|
|
|
|
if ((destFolderName != null) && (m != null))
|
|
|
|
{
|
|
|
|
final Account account = m.message.getFolder().getAccount();
|
|
|
|
|
|
|
|
account.setLastSelectedFolderName(destFolderName);
|
|
|
|
|
|
|
|
switch (requestCode)
|
|
|
|
{
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_MOVE:
|
|
|
|
onMoveChosen(m, destFolderName);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_COPY:
|
|
|
|
onCopyChosen(m, destFolderName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_MOVE_BATCH:
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_COPY_BATCH:
|
|
|
|
{
|
|
|
|
final String destFolderName = data.getStringExtra(ChooseFolder.EXTRA_NEW_FOLDER);
|
|
|
|
final String accountUuid = data.getStringExtra(ChooseFolder.EXTRA_ACCOUNT);
|
|
|
|
final Account account = Preferences.getPreferences(this).getAccount(accountUuid);
|
|
|
|
|
|
|
|
account.setLastSelectedFolderName(destFolderName);
|
|
|
|
|
|
|
|
switch (requestCode)
|
|
|
|
{
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_MOVE_BATCH:
|
|
|
|
onMoveChosenBatch(destFolderName);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTIVITY_CHOOSE_FOLDER_COPY_BATCH:
|
|
|
|
onCopyChosenBatch(destFolderName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onMoveChosen(MessageInfoHolder holder, String folderName)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (mController.isMoveCapable(holder.message.getFolder().getAccount()) && folderName != null)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(folderName))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mAdapter.removeMessage(holder);
|
|
|
|
mController.moveMessage(holder.message.getFolder().getAccount(), holder.message.getFolder().getName(), holder.message, folderName, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onCopyChosen(MessageInfoHolder holder, String folderName)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (mController.isCopyCapable(holder.message.getFolder().getAccount()) && folderName != null)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
mController.copyMessage(holder.message.getFolder().getAccount(),
|
|
|
|
holder.message.getFolder().getName(), holder.message, folderName, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onReply(MessageInfoHolder holder)
|
|
|
|
{
|
2010-07-27 08:10:09 -04:00
|
|
|
MessageCompose.actionReply(this, holder.message.getFolder().getAccount(), holder.message, false, null);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private void onReplyAll(MessageInfoHolder holder)
|
|
|
|
{
|
2010-07-27 08:10:09 -04:00
|
|
|
MessageCompose.actionReply(this, holder.message.getFolder().getAccount(), holder.message, true, null);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private void onForward(MessageInfoHolder holder)
|
|
|
|
{
|
2010-07-27 08:10:09 -04:00
|
|
|
MessageCompose.actionForward(this, holder.message.getFolder().getAccount(), holder.message, null);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private void onMarkAllAsRead(final Account account, final String folder)
|
|
|
|
{
|
|
|
|
showDialog(DIALOG_MARK_ALL_AS_READ);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onExpunge(final Account account, String folderName)
|
|
|
|
{
|
|
|
|
mController.expunge(account, folderName, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Dialog onCreateDialog(int id)
|
|
|
|
{
|
|
|
|
switch (id)
|
|
|
|
{
|
|
|
|
case DIALOG_MARK_ALL_AS_READ:
|
|
|
|
return createMarkAllAsReadDialog();
|
|
|
|
}
|
|
|
|
|
|
|
|
return super.onCreateDialog(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPrepareDialog(int id, Dialog dialog)
|
|
|
|
{
|
|
|
|
switch (id)
|
|
|
|
{
|
|
|
|
case DIALOG_MARK_ALL_AS_READ:
|
|
|
|
{
|
|
|
|
if (mCurrentFolder != null)
|
|
|
|
{
|
|
|
|
((AlertDialog)dialog).setMessage(getString(R.string.mark_all_as_read_dlg_instructions_fmt,
|
|
|
|
mCurrentFolder.displayName));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
super.onPrepareDialog(id, dialog);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private Dialog createMarkAllAsReadDialog()
|
|
|
|
{
|
|
|
|
return new AlertDialog.Builder(this)
|
|
|
|
.setTitle(R.string.mark_all_as_read_dlg_title)
|
|
|
|
.setMessage(getString(R.string.mark_all_as_read_dlg_instructions_fmt,
|
|
|
|
mCurrentFolder.displayName))
|
|
|
|
.setPositiveButton(R.string.okay_action, new DialogInterface.OnClickListener()
|
|
|
|
{
|
|
|
|
public void onClick(DialogInterface dialog, int whichButton)
|
|
|
|
{
|
|
|
|
dismissDialog(DIALOG_MARK_ALL_AS_READ);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
mController.markAllMessagesRead(mAccount, mCurrentFolder.name);
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
holder.read = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
// Ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.setNegativeButton(R.string.cancel_action, new DialogInterface.OnClickListener()
|
|
|
|
{
|
|
|
|
public void onClick(DialogInterface dialog, int whichButton)
|
|
|
|
{
|
|
|
|
dismissDialog(DIALOG_MARK_ALL_AS_READ);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onToggleRead(MessageInfoHolder holder)
|
|
|
|
{
|
|
|
|
mController.setFlag(holder.message.getFolder().getAccount(), holder.message.getFolder().getName(), new String[] { holder.uid }, Flag.SEEN, !holder.read);
|
|
|
|
holder.read = !holder.read;
|
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onToggleFlag(MessageInfoHolder holder)
|
|
|
|
{
|
|
|
|
mController.setFlag(holder.message.getFolder().getAccount(), holder.message.getFolder().getName(), new String[] { holder.uid }, Flag.FLAGGED, !holder.flagged);
|
|
|
|
holder.flagged = !holder.flagged;
|
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void checkMail(Account account, String folderName)
|
|
|
|
{
|
|
|
|
mController.synchronizeMailbox(account, folderName, mAdapter.mListener, null);
|
|
|
|
mController.sendPendingMessages(account, mAdapter.mListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item)
|
|
|
|
{
|
|
|
|
int itemId = item.getItemId();
|
|
|
|
switch (itemId)
|
|
|
|
{
|
|
|
|
case R.id.compose:
|
|
|
|
{
|
|
|
|
onCompose();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.accounts:
|
|
|
|
{
|
|
|
|
onAccounts();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.set_sort_date:
|
|
|
|
{
|
|
|
|
changeSort(SORT_TYPE.SORT_DATE);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.set_sort_subject:
|
|
|
|
{
|
|
|
|
changeSort(SORT_TYPE.SORT_SUBJECT);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.set_sort_sender:
|
|
|
|
{
|
|
|
|
changeSort(SORT_TYPE.SORT_SENDER);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.set_sort_flag:
|
|
|
|
{
|
|
|
|
changeSort(SORT_TYPE.SORT_FLAGGED);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.set_sort_unread:
|
|
|
|
{
|
|
|
|
changeSort(SORT_TYPE.SORT_UNREAD);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.set_sort_attach:
|
|
|
|
{
|
|
|
|
changeSort(SORT_TYPE.SORT_ATTACHMENT);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.select_all:
|
|
|
|
case R.id.batch_select_all:
|
|
|
|
{
|
|
|
|
setAllSelected(true);
|
|
|
|
toggleBatchButtons();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_deselect_all:
|
|
|
|
{
|
|
|
|
setAllSelected(false);
|
|
|
|
toggleBatchButtons();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_delete_op:
|
|
|
|
{
|
|
|
|
deleteSelected();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_mark_read_op:
|
|
|
|
{
|
|
|
|
flagSelected(Flag.SEEN, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_mark_unread_op:
|
|
|
|
{
|
|
|
|
flagSelected(Flag.SEEN, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_flag_op:
|
|
|
|
{
|
|
|
|
flagSelected(Flag.FLAGGED, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_unflag_op:
|
|
|
|
{
|
|
|
|
flagSelected(Flag.FLAGGED, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.app_settings:
|
|
|
|
{
|
|
|
|
onEditPrefs();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mQueryString != null)
|
|
|
|
{
|
|
|
|
// None of the options after this point are "safe" for search results
|
|
|
|
//TODO: This is not true for "unread" and "starred" searches in regular folders
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (itemId)
|
|
|
|
{
|
|
|
|
case R.id.check_mail:
|
|
|
|
{
|
|
|
|
if (mFolderName != null)
|
|
|
|
{
|
|
|
|
checkMail(mAccount, mFolderName);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.send_messages:
|
|
|
|
{
|
2010-11-12 20:46:41 -05:00
|
|
|
mController.sendPendingMessages(mAccount, mAdapter.mListener);
|
2010-07-13 17:49:28 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.list_folders:
|
|
|
|
{
|
|
|
|
onShowFolderList();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.mark_all_as_read:
|
|
|
|
{
|
|
|
|
if (mFolderName != null)
|
|
|
|
{
|
|
|
|
onMarkAllAsRead(mAccount, mFolderName);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.folder_settings:
|
|
|
|
{
|
|
|
|
if (mFolderName != null)
|
|
|
|
{
|
|
|
|
FolderSettings.actionSettings(this, mAccount, mFolderName);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.account_settings:
|
|
|
|
{
|
|
|
|
onEditAccount();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_copy_op:
|
|
|
|
{
|
|
|
|
onCopyBatch();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_archive_op:
|
|
|
|
{
|
|
|
|
onArchiveBatch();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_spam_op:
|
|
|
|
{
|
|
|
|
onSpamBatch();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.batch_move_op:
|
|
|
|
{
|
|
|
|
onMoveBatch();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case R.id.expunge:
|
|
|
|
{
|
|
|
|
if (mCurrentFolder != null)
|
|
|
|
{
|
|
|
|
onExpunge(mAccount, mCurrentFolder.name);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private final int[] batch_ops = { R.id.batch_copy_op, R.id.batch_delete_op, R.id.batch_flag_op,
|
|
|
|
R.id.batch_unflag_op, R.id.batch_mark_read_op, R.id.batch_mark_unread_op,
|
|
|
|
R.id.batch_archive_op, R.id.batch_spam_op, R.id.batch_move_op,
|
|
|
|
R.id.batch_select_all, R.id.batch_deselect_all
|
|
|
|
};
|
|
|
|
|
|
|
|
private void setOpsState(Menu menu, boolean state, boolean enabled)
|
|
|
|
{
|
|
|
|
for (int id : batch_ops)
|
|
|
|
{
|
|
|
|
menu.findItem(id).setVisible(state);
|
|
|
|
menu.findItem(id).setEnabled(enabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onPrepareOptionsMenu(Menu menu)
|
|
|
|
{
|
|
|
|
boolean anySelected = anySelected();
|
|
|
|
|
|
|
|
menu.findItem(R.id.select_all).setVisible(! anySelected);
|
|
|
|
menu.findItem(R.id.batch_ops).setVisible(anySelected);
|
|
|
|
|
|
|
|
setOpsState(menu, true, anySelected);
|
|
|
|
|
|
|
|
if (mQueryString != null)
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.mark_all_as_read).setVisible(false);
|
|
|
|
menu.findItem(R.id.list_folders).setVisible(false);
|
|
|
|
menu.findItem(R.id.expunge).setVisible(false);
|
|
|
|
menu.findItem(R.id.batch_archive_op).setVisible(false);
|
|
|
|
menu.findItem(R.id.batch_spam_op).setVisible(false);
|
|
|
|
menu.findItem(R.id.batch_move_op).setVisible(false);
|
|
|
|
menu.findItem(R.id.batch_copy_op).setVisible(false);
|
|
|
|
menu.findItem(R.id.check_mail).setVisible(false);
|
|
|
|
menu.findItem(R.id.send_messages).setVisible(false);
|
2010-10-03 20:01:59 -04:00
|
|
|
menu.findItem(R.id.folder_settings).setVisible(false);
|
|
|
|
menu.findItem(R.id.account_settings).setVisible(false);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (mCurrentFolder != null && mCurrentFolder.outbox)
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.check_mail).setVisible(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.send_messages).setVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mCurrentFolder != null && K9.ERROR_FOLDER_NAME.equals(mCurrentFolder.name))
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.expunge).setVisible(false);
|
|
|
|
}
|
2010-07-30 05:58:26 -04:00
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(mAccount.getArchiveFolderName()))
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.batch_archive_op).setVisible(false);
|
|
|
|
}
|
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(mAccount.getSpamFolderName()))
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.batch_spam_op).setVisible(false);
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
boolean newFlagState = computeBatchDirection(true);
|
|
|
|
boolean newReadState = computeBatchDirection(false);
|
|
|
|
menu.findItem(R.id.batch_flag_op).setVisible(newFlagState);
|
|
|
|
menu.findItem(R.id.batch_unflag_op).setVisible(!newFlagState);
|
|
|
|
menu.findItem(R.id.batch_mark_read_op).setVisible(newReadState);
|
|
|
|
menu.findItem(R.id.batch_mark_unread_op).setVisible(!newReadState);
|
|
|
|
menu.findItem(R.id.batch_deselect_all).setVisible(anySelected);
|
|
|
|
menu.findItem(R.id.batch_select_all).setEnabled(true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu)
|
|
|
|
{
|
|
|
|
super.onCreateOptionsMenu(menu);
|
|
|
|
getMenuInflater().inflate(R.menu.message_list_option, menu);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item)
|
|
|
|
{
|
|
|
|
AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
|
2010-07-14 14:39:57 -04:00
|
|
|
MessageInfoHolder holder = mSelectedMessage;
|
|
|
|
// don't need this anymore
|
|
|
|
mSelectedMessage = null;
|
|
|
|
if (holder == null)
|
|
|
|
{
|
|
|
|
holder = (MessageInfoHolder) mAdapter.getItem(info.position);
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
switch (item.getItemId())
|
|
|
|
{
|
|
|
|
case R.id.open:
|
|
|
|
{
|
|
|
|
onOpenMessage(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.select:
|
|
|
|
{
|
|
|
|
setSelected(holder, true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.deselect:
|
|
|
|
{
|
|
|
|
setSelected(holder, false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.delete:
|
|
|
|
{
|
|
|
|
onDelete(holder, info.position);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.reply:
|
|
|
|
{
|
|
|
|
onReply(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.reply_all:
|
|
|
|
{
|
|
|
|
onReplyAll(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.forward:
|
|
|
|
{
|
|
|
|
onForward(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.mark_as_read:
|
|
|
|
{
|
|
|
|
onToggleRead(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.flag:
|
|
|
|
{
|
|
|
|
onToggleFlag(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.archive:
|
|
|
|
{
|
|
|
|
onArchive(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.spam:
|
|
|
|
{
|
|
|
|
onSpam(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.move:
|
|
|
|
{
|
|
|
|
onMove(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.copy:
|
|
|
|
{
|
|
|
|
onCopy(holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.send_alternate:
|
|
|
|
{
|
|
|
|
onSendAlternate(mAccount, holder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R.id.same_sender:
|
|
|
|
{
|
|
|
|
MessageList.actionHandle(MessageList.this,
|
2010-08-11 22:22:08 -04:00
|
|
|
"From "+holder.sender, holder.senderAddress, true,
|
2010-07-13 17:49:28 -04:00
|
|
|
null, null);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return super.onContextItemSelected(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onSendAlternate(Account account, MessageInfoHolder holder)
|
|
|
|
{
|
|
|
|
mController.sendAlternate(this, account, holder.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void showProgressIndicator(boolean status)
|
|
|
|
{
|
|
|
|
setProgressBarIndeterminateVisibility(status);
|
|
|
|
ProgressBar bar = (ProgressBar)mListView.findViewById(R.id.message_list_progress);
|
|
|
|
if (bar == null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bar.setIndeterminate(true);
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
bar.setVisibility(ProgressBar.VISIBLE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bar.setVisibility(ProgressBar.INVISIBLE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyGestureDetector extends SimpleOnGestureListener
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY)
|
|
|
|
{
|
|
|
|
if (e2 == null || e1 == null)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
float deltaX = e2.getX() - e1.getX(),
|
2010-10-05 02:04:28 -04:00
|
|
|
deltaY = e2.getY() - e1.getY();
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
boolean movedAcross = (Math.abs(deltaX) > Math.abs(deltaY * 4));
|
|
|
|
boolean steadyHand = (Math.abs(deltaX / deltaY) > 2);
|
|
|
|
|
|
|
|
if (movedAcross && steadyHand)
|
|
|
|
{
|
|
|
|
boolean selected = (deltaX > 0);
|
|
|
|
int position = mListView.pointToPosition((int)e1.getX(), (int)e1.getY());
|
|
|
|
|
|
|
|
if (position != AdapterView.INVALID_POSITION)
|
|
|
|
{
|
|
|
|
MessageInfoHolder msgInfoHolder = (MessageInfoHolder) mAdapter.getItem(position);
|
|
|
|
|
|
|
|
if (msgInfoHolder != null && msgInfoHolder.selected != selected)
|
|
|
|
{
|
|
|
|
msgInfoHolder.selected = selected;
|
|
|
|
mSelectedCount += (selected ? 1 : -1);
|
|
|
|
mAdapter.notifyDataSetChanged();
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo)
|
|
|
|
{
|
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
|
|
|
|
|
|
|
AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;
|
|
|
|
MessageInfoHolder message = (MessageInfoHolder) mAdapter.getItem(info.position);
|
2010-07-14 14:39:57 -04:00
|
|
|
// remember which message was originally selected, in case the list changes while the
|
|
|
|
// dialog is up
|
|
|
|
mSelectedMessage = message;
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
if (message == null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
getMenuInflater().inflate(R.menu.message_list_context, menu);
|
|
|
|
|
|
|
|
menu.setHeaderTitle((CharSequence) message.subject);
|
|
|
|
|
|
|
|
if (message.read)
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.mark_as_read).setTitle(R.string.mark_as_unread_action);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.flagged)
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.flag).setTitle(R.string.unflag_action);
|
|
|
|
}
|
|
|
|
|
|
|
|
Account account = message.message.getFolder().getAccount();
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isCopyCapable(account))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
menu.findItem(R.id.copy).setVisible(false);
|
|
|
|
}
|
|
|
|
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(account))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
menu.findItem(R.id.move).setVisible(false);
|
|
|
|
menu.findItem(R.id.archive).setVisible(false);
|
|
|
|
menu.findItem(R.id.spam).setVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(account.getArchiveFolderName()))
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.archive).setVisible(false);
|
|
|
|
}
|
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(account.getSpamFolderName()))
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.spam).setVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.selected)
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.select).setVisible(false);
|
|
|
|
menu.findItem(R.id.deselect).setVisible(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
menu.findItem(R.id.select).setVisible(true);
|
|
|
|
menu.findItem(R.id.deselect).setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MessageListAdapter extends BaseAdapter
|
|
|
|
{
|
|
|
|
private final List<MessageInfoHolder> messages = java.util.Collections.synchronizedList(new ArrayList<MessageInfoHolder>());
|
|
|
|
|
|
|
|
private final ActivityListener mListener = new ActivityListener()
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxStarted(Account account, String folder)
|
|
|
|
{
|
|
|
|
super.synchronizeMailboxStarted(account, folder);
|
|
|
|
|
|
|
|
if (updateForMe(account, folder))
|
|
|
|
{
|
|
|
|
mHandler.progress(true);
|
|
|
|
mHandler.folderLoading(folder, true);
|
|
|
|
}
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
2010-07-13 19:59:14 -04:00
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxHeadersProgress(Account account, String folder, int completed, int total)
|
|
|
|
{
|
|
|
|
super.synchronizeMailboxHeadersProgress(account,folder,completed, total);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxHeadersFinished(Account account, String folder,
|
|
|
|
int total, int completed)
|
|
|
|
{
|
|
|
|
super.synchronizeMailboxHeadersFinished(account,folder, total, completed);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxFinished(Account account, String folder,
|
|
|
|
int totalMessagesInMailbox, int numNewMessages)
|
|
|
|
{
|
|
|
|
super.synchronizeMailboxFinished(account, folder, totalMessagesInMailbox, numNewMessages);
|
|
|
|
|
|
|
|
if (updateForMe(account, folder))
|
|
|
|
{
|
|
|
|
mHandler.progress(false);
|
|
|
|
mHandler.folderLoading(folder, false);
|
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxFailed(Account account, String folder, String message)
|
|
|
|
{
|
|
|
|
super.synchronizeMailboxFailed(account, folder, message);
|
|
|
|
|
|
|
|
if (updateForMe(account, folder))
|
|
|
|
{
|
|
|
|
mHandler.progress(false);
|
|
|
|
mHandler.folderLoading(folder, false);
|
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void sendPendingMessagesStarted(Account account)
|
|
|
|
{
|
|
|
|
super.sendPendingMessagesStarted(account);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void sendPendingMessagesCompleted(Account account)
|
|
|
|
{
|
|
|
|
super.sendPendingMessagesCompleted(account);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void sendPendingMessagesFailed(Account account)
|
|
|
|
{
|
|
|
|
super.sendPendingMessagesFailed(account);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxProgress(Account account, String folder, int completed, int total)
|
|
|
|
{
|
|
|
|
super.synchronizeMailboxProgress(account, folder, completed, total);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxAddOrUpdateMessage(Account account, String folder, Message message)
|
|
|
|
{
|
|
|
|
addOrUpdateMessage(account, folder, message, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void synchronizeMailboxRemovedMessage(Account account, String folder,Message message)
|
|
|
|
{
|
|
|
|
MessageInfoHolder holder = getMessage(message);
|
|
|
|
if (holder == null)
|
|
|
|
{
|
|
|
|
Log.w(K9.LOG_TAG, "Got callback to remove non-existent message with UID " + message.getUid());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
removeMessage(holder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void listLocalMessagesStarted(Account account, String folder)
|
|
|
|
{
|
|
|
|
if ((mQueryString != null && folder == null) ||
|
|
|
|
(account != null && account.equals(mAccount))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
mHandler.progress(true);
|
|
|
|
if (folder != null)
|
|
|
|
{
|
|
|
|
mHandler.folderLoading(folder, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void listLocalMessagesFailed(Account account, String folder, String message)
|
|
|
|
{
|
|
|
|
if ((mQueryString != null && folder == null) ||
|
|
|
|
(account != null && account.equals(mAccount)))
|
|
|
|
{
|
|
|
|
mHandler.sortMessages();
|
|
|
|
mHandler.progress(false);
|
|
|
|
if (folder != null)
|
|
|
|
{
|
|
|
|
mHandler.folderLoading(folder, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void listLocalMessagesFinished(Account account, String folder)
|
|
|
|
{
|
|
|
|
if ((mQueryString != null && folder == null) ||
|
|
|
|
(account != null && account.equals(mAccount)))
|
|
|
|
{
|
|
|
|
mHandler.sortMessages();
|
|
|
|
mHandler.progress(false);
|
|
|
|
if (folder != null)
|
|
|
|
{
|
|
|
|
mHandler.folderLoading(folder, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void listLocalMessagesRemoveMessage(Account account, String folder,Message message)
|
|
|
|
{
|
|
|
|
MessageInfoHolder holder = getMessage(message);
|
|
|
|
if (holder != null)
|
|
|
|
{
|
|
|
|
removeMessage(holder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void listLocalMessagesAddMessages(Account account, String folder, List<Message> messages)
|
|
|
|
{
|
|
|
|
addOrUpdateMessages(account, folder, messages, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void listLocalMessagesUpdateMessage(Account account, String folder, Message message)
|
|
|
|
{
|
|
|
|
addOrUpdateMessage(account, folder, message, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void searchStats(AccountStats stats)
|
|
|
|
{
|
|
|
|
mUnreadMessageCount = stats.unreadMessageCount;
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void folderStatusChanged(Account account, String folder, int unreadMessageCount)
|
|
|
|
{
|
|
|
|
super.folderStatusChanged(account, folder, unreadMessageCount);
|
|
|
|
if (updateForMe(account, folder))
|
|
|
|
{
|
|
|
|
mUnreadMessageCount = unreadMessageCount;
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void pendingCommandsProcessing(Account account)
|
|
|
|
{
|
|
|
|
super.pendingCommandsProcessing(account);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void pendingCommandsFinished(Account account)
|
|
|
|
{
|
|
|
|
super.pendingCommandsFinished(account);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void pendingCommandStarted(Account account, String commandTitle)
|
|
|
|
{
|
|
|
|
super.pendingCommandStarted(account, commandTitle);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void pendingCommandCompleted(Account account, String commandTitle)
|
|
|
|
{
|
|
|
|
super.pendingCommandCompleted(account, commandTitle);
|
|
|
|
mHandler.refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void messageUidChanged(Account account, String folder, String oldUid, String newUid)
|
|
|
|
{
|
|
|
|
MessageReference ref = new MessageReference();
|
|
|
|
ref.accountUuid = account.getUuid();
|
|
|
|
ref.folderName = folder;
|
|
|
|
ref.uid = oldUid;
|
|
|
|
|
|
|
|
MessageInfoHolder holder = getMessage(ref);
|
|
|
|
if (holder != null)
|
|
|
|
{
|
|
|
|
holder.uid = newUid;
|
|
|
|
holder.message.setUid(newUid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private boolean updateForMe(Account account, String folder)
|
|
|
|
{
|
|
|
|
if ((account.equals(mAccount) && mFolderName != null && folder.equals(mFolderName)))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private Drawable mAttachmentIcon;
|
|
|
|
private Drawable mAnsweredIcon;
|
|
|
|
private View footerView = null;
|
|
|
|
|
|
|
|
MessageListAdapter()
|
|
|
|
{
|
|
|
|
mAttachmentIcon = getResources().getDrawable(R.drawable.ic_mms_attachment_small);
|
|
|
|
mAnsweredIcon = getResources().getDrawable(R.drawable.ic_mms_answered_small);
|
|
|
|
}
|
|
|
|
|
2010-10-08 01:34:33 -04:00
|
|
|
public void markAllMessagesAsDirty()
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
holder.dirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public void pruneDirtyMessages()
|
|
|
|
{
|
2010-11-04 21:16:35 -04:00
|
|
|
synchronized (mAdapter.messages)
|
2010-10-08 01:34:33 -04:00
|
|
|
{
|
2010-11-04 21:16:35 -04:00
|
|
|
Iterator<MessageInfoHolder> iter = mAdapter.messages.iterator();
|
|
|
|
while (iter.hasNext())
|
2010-10-08 01:34:33 -04:00
|
|
|
{
|
2010-11-04 21:16:35 -04:00
|
|
|
MessageInfoHolder holder = iter.next();
|
|
|
|
if (holder.dirty)
|
2010-10-08 02:18:45 -04:00
|
|
|
{
|
2010-11-04 21:16:35 -04:00
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
mSelectedCount--;
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
mAdapter.removeMessage(holder);
|
2010-10-08 02:18:45 -04:00
|
|
|
}
|
2010-10-08 01:34:33 -04:00
|
|
|
}
|
2010-11-04 22:59:21 -04:00
|
|
|
}
|
2010-10-08 01:34:33 -04:00
|
|
|
}
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
public void removeMessages(List<MessageInfoHolder> holders)
|
|
|
|
{
|
|
|
|
if (holders != null)
|
|
|
|
{
|
|
|
|
mHandler.removeMessage(holders);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void removeMessage(MessageInfoHolder holder)
|
|
|
|
{
|
|
|
|
List<MessageInfoHolder> messages = new ArrayList<MessageInfoHolder>();
|
|
|
|
messages.add(holder);
|
|
|
|
removeMessages(messages);
|
|
|
|
}
|
|
|
|
|
2010-10-03 06:56:16 -04:00
|
|
|
private void addOrUpdateMessage(Account account, String folderName, Message message, boolean verifyAgainstSearch)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
List<Message> messages = new ArrayList<Message>();
|
|
|
|
messages.add(message);
|
2010-10-03 06:56:16 -04:00
|
|
|
addOrUpdateMessages(account, folderName, messages, verifyAgainstSearch);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
2010-10-03 06:56:16 -04:00
|
|
|
private void addOrUpdateMessages(final Account account, final String folderName, final List<Message> providedMessages, final boolean verifyAgainstSearch)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-09-01 23:45:16 -04:00
|
|
|
// we copy the message list because the callback doesn't expect
|
2010-09-02 20:56:19 -04:00
|
|
|
// the callbacks to mutate it.
|
2010-09-01 23:45:16 -04:00
|
|
|
final List<Message> messages = new ArrayList<Message>(providedMessages);
|
|
|
|
|
2010-10-21 16:49:20 -04:00
|
|
|
boolean needsSort = false;
|
|
|
|
final List<MessageInfoHolder> messagesToAdd = new ArrayList<MessageInfoHolder>();
|
|
|
|
List<MessageInfoHolder> messagesToRemove = new ArrayList<MessageInfoHolder>();
|
|
|
|
List<Message> messagesToSearch = new ArrayList<Message>();
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-10-21 16:49:20 -04:00
|
|
|
// cache field into local variable for faster access for JVM without JIT
|
|
|
|
final MessageHelper messageHelper = mMessageHelper;
|
2010-10-03 06:56:16 -04:00
|
|
|
|
2010-10-21 16:49:20 -04:00
|
|
|
for (Message message : messages)
|
|
|
|
{
|
|
|
|
MessageInfoHolder m = getMessage(message);
|
|
|
|
if (message.isSet(Flag.DELETED))
|
|
|
|
{
|
|
|
|
if (m != null)
|
|
|
|
{
|
|
|
|
messagesToRemove.add(m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
final Folder messageFolder = message.getFolder();
|
|
|
|
final Account messageAccount = messageFolder.getAccount();
|
|
|
|
if (m == null)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
if (updateForMe(account, folderName))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
m = new MessageInfoHolder();
|
|
|
|
messageHelper.populate(m, message, new FolderInfoHolder(MessageList.this, messageFolder, messageAccount), messageAccount);
|
|
|
|
messagesToAdd.add(m);
|
2010-08-30 23:58:33 -04:00
|
|
|
}
|
2010-10-03 06:56:16 -04:00
|
|
|
else
|
2010-08-30 23:58:33 -04:00
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
if (mQueryString != null)
|
2010-08-30 23:58:33 -04:00
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
if (verifyAgainstSearch)
|
2010-08-30 23:58:33 -04:00
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
messagesToSearch.add(message);
|
2010-10-03 06:56:16 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
m = new MessageInfoHolder();
|
|
|
|
messageHelper.populate(m, message, new FolderInfoHolder(MessageList.this, messageFolder, messageAccount), messageAccount);
|
|
|
|
messagesToAdd.add(m);
|
2010-08-30 23:58:33 -04:00
|
|
|
}
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
}
|
2010-10-21 16:49:20 -04:00
|
|
|
else
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
m.dirty = false; // as we reload the message, unset its dirty flag
|
|
|
|
messageHelper.populate(m, message, new FolderInfoHolder(MessageList.this, messageFolder, account), account);
|
|
|
|
needsSort = true;
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
2010-10-21 16:49:20 -04:00
|
|
|
}
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-10-21 16:49:20 -04:00
|
|
|
if (messagesToSearch.size() > 0)
|
|
|
|
{
|
|
|
|
mController.searchLocalMessages(mAccountUuids, mFolderNames, messagesToSearch.toArray(EMPTY_MESSAGE_ARRAY), mQueryString, mIntegrate, mQueryFlags, mForbiddenFlags,
|
|
|
|
new MessagingListener()
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public void listLocalMessagesAddMessages(Account account, String folder, List<Message> messages)
|
2010-08-30 23:58:33 -04:00
|
|
|
{
|
2010-10-21 16:49:20 -04:00
|
|
|
addOrUpdateMessages(account, folder, messages, false);
|
2010-08-30 23:58:33 -04:00
|
|
|
}
|
2010-10-21 16:49:20 -04:00
|
|
|
});
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-10-21 16:49:20 -04:00
|
|
|
if (messagesToRemove.size() > 0)
|
|
|
|
{
|
|
|
|
removeMessages(messagesToRemove);
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-10-21 16:49:20 -04:00
|
|
|
if (messagesToAdd.size() > 0)
|
|
|
|
{
|
|
|
|
mHandler.addMessages(messagesToAdd);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needsSort)
|
|
|
|
{
|
|
|
|
mHandler.sortMessages();
|
|
|
|
mHandler.resetUnreadCount();
|
|
|
|
}
|
2010-08-30 23:57:02 -04:00
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
public MessageInfoHolder getMessage(Message message)
|
|
|
|
{
|
2010-10-16 04:27:58 -04:00
|
|
|
return getMessage(message.makeMessageReference());
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX TODO - make this not use a for loop
|
|
|
|
public MessageInfoHolder getMessage(MessageReference messageReference)
|
|
|
|
{
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* 2010-06-21 - cketti
|
|
|
|
* Added null pointer check. Not sure what's causing 'holder'
|
|
|
|
* to be null. See log provided in issue 1749, comment #15.
|
2010-07-13 17:16:56 -04:00
|
|
|
*
|
2010-07-13 17:49:28 -04:00
|
|
|
* Please remove this comment once the cause was found and the
|
|
|
|
* bug(?) fixed.
|
|
|
|
*/
|
|
|
|
if ((holder != null) && holder.message.equalsReference(messageReference))
|
|
|
|
{
|
|
|
|
return holder;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public FolderInfoHolder getFolder(String folder, Account account)
|
|
|
|
{
|
|
|
|
LocalFolder local_folder = null;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
LocalStore localStore = account.getLocalStore();
|
|
|
|
local_folder = localStore.getFolder(folder);
|
2010-08-17 22:49:13 -04:00
|
|
|
return new FolderInfoHolder(context, (Folder)local_folder, account);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Log.e(K9.LOG_TAG, "getFolder(" + folder + ") goes boom: ",e);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
if (local_folder != null)
|
|
|
|
{
|
|
|
|
local_folder.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static final int NON_MESSAGE_ITEMS = 1;
|
2010-08-03 01:46:35 -04:00
|
|
|
|
2010-08-03 03:46:31 -04:00
|
|
|
private final OnClickListener flagClickListener = new OnClickListener()
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-08-03 03:46:31 -04:00
|
|
|
public void onClick(View v)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-08-03 03:46:31 -04:00
|
|
|
// Perform action on clicks
|
|
|
|
MessageInfoHolder message = (MessageInfoHolder) getItem((Integer)v.getTag());
|
|
|
|
onToggleFlag(message);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
2010-08-03 03:46:31 -04:00
|
|
|
};
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-08-03 03:46:31 -04:00
|
|
|
@Override
|
|
|
|
public int getCount()
|
|
|
|
{
|
|
|
|
return messages.size() + NON_MESSAGE_ITEMS;
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
2010-08-03 01:46:35 -04:00
|
|
|
@Override
|
2010-07-13 17:49:28 -04:00
|
|
|
public long getItemId(int position)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
MessageInfoHolder messageHolder =(MessageInfoHolder) getItem(position);
|
|
|
|
if (messageHolder != null)
|
|
|
|
{
|
|
|
|
return ((LocalStore.LocalMessage) messageHolder.message).getId();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Log.i(K9.LOG_TAG,"getItemId("+position+") ",e);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object getItem(long position)
|
|
|
|
{
|
|
|
|
return getItem((int)position);
|
|
|
|
}
|
|
|
|
|
2010-08-03 01:46:35 -04:00
|
|
|
@Override
|
2010-07-13 17:49:28 -04:00
|
|
|
public Object getItem(int position)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (position < mAdapter.messages.size())
|
|
|
|
{
|
|
|
|
return mAdapter.messages.get(position);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Log.e(K9.LOG_TAG, "getItem(" + position + "), but folder.messages.size() = " + mAdapter.messages.size(), e);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2010-08-03 01:46:35 -04:00
|
|
|
@Override
|
2010-07-13 17:49:28 -04:00
|
|
|
public View getView(int position, View convertView, ViewGroup parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (position == mAdapter.messages.size())
|
|
|
|
{
|
|
|
|
return getFooterView(position, convertView, parent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return getItemView(position, convertView, parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public View getItemView(int position, View convertView, ViewGroup parent)
|
|
|
|
{
|
|
|
|
MessageInfoHolder message = (MessageInfoHolder) getItem(position);
|
|
|
|
View view;
|
|
|
|
|
|
|
|
if ((convertView != null) && (convertView.getId() == R.layout.message_list_item))
|
|
|
|
{
|
|
|
|
view = convertView;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (mTouchView)
|
|
|
|
{
|
|
|
|
view = mInflater.inflate(R.layout.message_list_item_touchable, parent, false);
|
|
|
|
view.setId(R.layout.message_list_item);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
view = mInflater.inflate(R.layout.message_list_item, parent, false);
|
|
|
|
view.setId(R.layout.message_list_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageViewHolder holder = (MessageViewHolder) view.getTag();
|
|
|
|
|
|
|
|
if (holder == null)
|
|
|
|
{
|
|
|
|
holder = new MessageViewHolder();
|
|
|
|
holder.subject = (TextView) view.findViewById(R.id.subject);
|
|
|
|
holder.from = (TextView) view.findViewById(R.id.from);
|
|
|
|
holder.date = (TextView) view.findViewById(R.id.date);
|
|
|
|
holder.chip = view.findViewById(R.id.chip);
|
|
|
|
holder.preview = (TextView) view.findViewById(R.id.preview);
|
|
|
|
holder.selected = (CheckBox) view.findViewById(R.id.selected_checkbox);
|
|
|
|
holder.flagged = (CheckBox) view.findViewById(R.id.flagged);
|
|
|
|
|
2010-08-03 03:46:31 -04:00
|
|
|
holder.flagged.setOnClickListener(flagClickListener);
|
2010-07-13 17:49:28 -04:00
|
|
|
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mStars)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
holder.flagged.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
|
2010-08-29 19:39:26 -04:00
|
|
|
if (mCheckboxes)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
holder.selected.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (holder.selected != null)
|
|
|
|
{
|
|
|
|
holder.selected.setOnCheckedChangeListener(holder);
|
|
|
|
}
|
2010-11-06 20:30:17 -04:00
|
|
|
holder.subject.setTextSize(TypedValue.COMPLEX_UNIT_DIP, mFontSizes.getMessageListSubject());
|
|
|
|
holder.date.setTextSize(TypedValue.COMPLEX_UNIT_DIP, mFontSizes.getMessageListDate());
|
|
|
|
|
|
|
|
if (mTouchView)
|
|
|
|
{
|
|
|
|
holder.preview.setLines(mPreviewLines);
|
|
|
|
holder.preview.setTextSize(TypedValue.COMPLEX_UNIT_DIP, mFontSizes.getMessageListSender());
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
holder.from.setTextSize(TypedValue.COMPLEX_UNIT_DIP, mFontSizes.getMessageListSender());
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
view.setTag(holder);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message != null)
|
|
|
|
{
|
2010-08-03 03:46:31 -04:00
|
|
|
bindView(position, view, holder, message);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-21 16:49:05 -04:00
|
|
|
// This branch code is triggered when the local store
|
|
|
|
// hands us an invalid message
|
2010-07-13 17:49:28 -04:00
|
|
|
|
|
|
|
holder.chip.getBackground().setAlpha(0);
|
|
|
|
holder.subject.setText("No subject");
|
|
|
|
holder.subject.setTypeface(null, Typeface.NORMAL);
|
|
|
|
if (holder.preview != null)
|
|
|
|
{
|
|
|
|
holder.preview.setText("No sender");
|
|
|
|
holder.preview.setTypeface(null, Typeface.NORMAL);
|
|
|
|
holder.preview.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
holder.from.setText("No sender");
|
|
|
|
holder.from.setTypeface(null, Typeface.NORMAL);
|
|
|
|
holder.from.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
holder.date.setText("No date");
|
|
|
|
|
|
|
|
//WARNING: Order of the next 2 lines matter
|
|
|
|
holder.position = -1;
|
|
|
|
holder.selected.setChecked(false);
|
|
|
|
|
|
|
|
if (!mCheckboxes)
|
|
|
|
{
|
|
|
|
holder.selected.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
holder.flagged.setChecked(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
2010-08-03 03:46:31 -04:00
|
|
|
/**
|
|
|
|
* Associate model data to view object.
|
2010-08-17 22:48:55 -04:00
|
|
|
*
|
2010-08-03 03:46:31 -04:00
|
|
|
* @param position
|
|
|
|
* The position of the item within the adapter's data set of
|
|
|
|
* the item whose view we want.
|
|
|
|
* @param view
|
|
|
|
* Main view component to alter. Never <code>null</code>.
|
|
|
|
* @param holder
|
|
|
|
* Convenience view holder - eases access to <tt>view</tt>
|
|
|
|
* child views. Never <code>null</code>.
|
|
|
|
* @param message
|
|
|
|
* Never <code>null</code>.
|
|
|
|
*/
|
|
|
|
private void bindView(final int position, final View view, final MessageViewHolder holder,
|
2010-08-17 22:48:55 -04:00
|
|
|
final MessageInfoHolder message)
|
2010-08-03 03:46:31 -04:00
|
|
|
{
|
|
|
|
holder.subject.setTypeface(null, message.read ? Typeface.NORMAL : Typeface.BOLD);
|
|
|
|
|
|
|
|
// XXX TODO there has to be some way to walk our view hierarchy and get this
|
|
|
|
holder.flagged.setTag((Integer)position);
|
|
|
|
holder.flagged.setChecked(message.flagged);
|
|
|
|
|
|
|
|
// So that the mSelectedCount is only incremented/decremented
|
|
|
|
// when a user checks the checkbox (vs code)
|
|
|
|
holder.position = -1;
|
|
|
|
holder.selected.setChecked(message.selected);
|
|
|
|
|
|
|
|
if (!mCheckboxes)
|
|
|
|
{
|
|
|
|
holder.selected.setVisibility(message.selected ? View.VISIBLE : View.GONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
holder.chip.setBackgroundColor(message.message.getFolder().getAccount().getChipColor());
|
|
|
|
holder.chip.getBackground().setAlpha(message.read ? 127 : 255);
|
|
|
|
view.getBackground().setAlpha(message.downloaded ? 0 : 127);
|
|
|
|
|
|
|
|
if ((message.subject == null) || message.subject.equals(""))
|
|
|
|
{
|
|
|
|
holder.subject.setText(getText(R.string.general_no_subject));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
holder.subject.setText(message.subject);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (holder.preview != null)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* In the touchable UI, we have previews. Otherwise, we
|
|
|
|
* have just a "from" line.
|
|
|
|
* Because text views can't wrap around each other(?) we
|
|
|
|
* compose a custom view containing the preview and the
|
|
|
|
* from.
|
|
|
|
*/
|
2010-10-21 16:48:45 -04:00
|
|
|
|
2010-10-24 23:21:08 -04:00
|
|
|
holder.preview.setText(new SpannableStringBuilder(recipientSigil(message)).append(message.sender).append(" ").append(message.preview),
|
2010-08-03 03:46:31 -04:00
|
|
|
TextView.BufferType.SPANNABLE);
|
|
|
|
Spannable str = (Spannable)holder.preview.getText();
|
|
|
|
|
|
|
|
// Create our span sections, and assign a format to each.
|
2010-08-30 10:37:34 -04:00
|
|
|
str.setSpan(new StyleSpan(Typeface.BOLD),
|
2010-08-30 23:58:33 -04:00
|
|
|
0,
|
2010-10-24 23:21:08 -04:00
|
|
|
(message.sender.length()+1),
|
2010-08-30 23:58:33 -04:00
|
|
|
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE
|
|
|
|
);
|
2010-08-30 10:37:34 -04:00
|
|
|
str.setSpan(new ForegroundColorSpan(Color.rgb(128,128,128)), // TODO: How do I can specify the android.R.attr.textColorTertiary
|
2010-10-24 23:21:08 -04:00
|
|
|
(message.sender.length()+1),
|
2010-08-30 23:58:33 -04:00
|
|
|
str.length(),
|
|
|
|
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE
|
|
|
|
);
|
2010-08-03 03:46:31 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-24 23:21:08 -04:00
|
|
|
holder.from.setText(new SpannableStringBuilder(recipientSigil(message)).append( message.sender));
|
2010-10-21 16:48:45 -04:00
|
|
|
|
2010-08-03 03:46:31 -04:00
|
|
|
holder.from.setTypeface(null, message.read ? Typeface.NORMAL : Typeface.BOLD);
|
|
|
|
}
|
|
|
|
|
2010-10-13 06:53:08 -04:00
|
|
|
holder.date.setText(message.getDate(mMessageHelper));
|
2010-08-03 03:46:31 -04:00
|
|
|
holder.subject.setCompoundDrawablesWithIntrinsicBounds(
|
|
|
|
message.answered ? mAnsweredIcon : null, // left
|
|
|
|
null, // top
|
|
|
|
message.hasAttachments ? mAttachmentIcon : null, // right
|
|
|
|
null); // bottom
|
|
|
|
holder.position = position;
|
|
|
|
}
|
|
|
|
|
2010-10-24 23:21:08 -04:00
|
|
|
private String recipientSigil (MessageInfoHolder message)
|
2010-10-21 16:48:45 -04:00
|
|
|
{
|
|
|
|
if (message.toMe)
|
|
|
|
{
|
2010-10-24 23:21:08 -04:00
|
|
|
return getString(R.string.messagelist_sent_to_me_sigil);
|
2010-10-21 16:49:20 -04:00
|
|
|
}
|
|
|
|
else if (message.ccMe)
|
2010-10-21 16:48:45 -04:00
|
|
|
{
|
2010-10-24 23:21:08 -04:00
|
|
|
return getString(R.string.messagelist_sent_cc_me_sigil);
|
2010-10-21 16:48:45 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-24 23:21:08 -04:00
|
|
|
return "";
|
2010-10-21 16:48:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
public View getFooterView(int position, View convertView, ViewGroup parent)
|
|
|
|
{
|
|
|
|
if (footerView == null)
|
|
|
|
{
|
|
|
|
footerView = mInflater.inflate(R.layout.message_list_item_footer, parent, false);
|
|
|
|
if (mQueryString != null)
|
|
|
|
{
|
|
|
|
footerView.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
footerView.setId(R.layout.message_list_item_footer);
|
|
|
|
FooterViewHolder holder = new FooterViewHolder();
|
|
|
|
holder.progress = (ProgressBar)footerView.findViewById(R.id.message_list_progress);
|
|
|
|
holder.progress.setIndeterminate(true);
|
|
|
|
holder.main = (TextView)footerView.findViewById(R.id.main_text);
|
|
|
|
footerView.setTag(holder);
|
|
|
|
}
|
|
|
|
|
|
|
|
FooterViewHolder holder = (FooterViewHolder)footerView.getTag();
|
|
|
|
|
|
|
|
if (mCurrentFolder != null && mAccount != null)
|
|
|
|
{
|
|
|
|
if (mCurrentFolder.loading)
|
|
|
|
{
|
|
|
|
holder.main.setText(getString(R.string.status_loading_more));
|
|
|
|
holder.progress.setVisibility(ProgressBar.VISIBLE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mCurrentFolder.lastCheckFailed)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
2010-11-12 18:41:43 -05:00
|
|
|
if (mAccount.getDisplayCount() == 0 )
|
|
|
|
{
|
|
|
|
holder.main.setText(getString(R.string.message_list_load_more_messages_action));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
holder.main.setText(String.format(getString(R.string.load_more_messages_fmt), mAccount.getDisplayCount()));
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
holder.main.setText(getString(R.string.status_loading_more_failed));
|
|
|
|
}
|
|
|
|
holder.progress.setVisibility(ProgressBar.INVISIBLE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
holder.progress.setVisibility(ProgressBar.INVISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return footerView;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasStableIds()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isItemSelectable(int position)
|
|
|
|
{
|
|
|
|
if (position < mAdapter.messages.size())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MessageViewHolder
|
2010-10-05 02:04:28 -04:00
|
|
|
implements OnCheckedChangeListener
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
public TextView subject;
|
|
|
|
public TextView preview;
|
|
|
|
public TextView from;
|
|
|
|
public TextView time;
|
|
|
|
public TextView date;
|
|
|
|
public CheckBox flagged;
|
|
|
|
public View chip;
|
|
|
|
public CheckBox selected;
|
|
|
|
public int position = -1;
|
|
|
|
|
2010-08-03 01:46:35 -04:00
|
|
|
@Override
|
2010-07-13 17:49:28 -04:00
|
|
|
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
|
|
|
|
{
|
|
|
|
if (position!=-1)
|
|
|
|
{
|
|
|
|
MessageInfoHolder message = (MessageInfoHolder) mAdapter.getItem(position);
|
|
|
|
if (message.selected!=isChecked)
|
|
|
|
{
|
|
|
|
if (isChecked)
|
|
|
|
{
|
|
|
|
mSelectedCount++;
|
|
|
|
}
|
|
|
|
else if (mSelectedCount > 0)
|
|
|
|
{
|
|
|
|
mSelectedCount--;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We must set the flag before showing the buttons as the
|
|
|
|
// buttons text depends on what is selected.
|
|
|
|
message.selected = isChecked;
|
|
|
|
if (!mCheckboxes)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (isChecked)
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
selected.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
selected.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void hideBatchButtons()
|
|
|
|
{
|
2010-11-07 14:40:42 -05:00
|
|
|
if (mBatchButtonArea.getVisibility() != View.GONE)
|
|
|
|
{
|
|
|
|
mBatchButtonArea.setVisibility(View.GONE);
|
|
|
|
mBatchButtonArea.startAnimation(
|
|
|
|
AnimationUtils.loadAnimation(this, R.anim.footer_disappear));
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private void showBatchButtons()
|
|
|
|
{
|
2010-11-07 14:40:42 -05:00
|
|
|
if (mBatchButtonArea.getVisibility() != View.VISIBLE)
|
|
|
|
{
|
|
|
|
mBatchButtonArea.setVisibility(View.VISIBLE);
|
|
|
|
Animation animation = AnimationUtils.loadAnimation(this, R.anim.footer_appear);
|
|
|
|
animation.setAnimationListener(this);
|
|
|
|
mBatchButtonArea.startAnimation(animation);
|
|
|
|
}
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private void toggleBatchButtons()
|
|
|
|
{
|
|
|
|
if (mSelectedCount < 0)
|
|
|
|
{
|
|
|
|
mSelectedCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int readButtonIconId;
|
|
|
|
int flagButtonIconId;
|
|
|
|
|
|
|
|
if (mSelectedCount==0)
|
|
|
|
{
|
|
|
|
readButtonIconId = R.drawable.ic_button_mark_read;
|
|
|
|
flagButtonIconId = R.drawable.ic_button_flag;
|
|
|
|
hideBatchButtons();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
boolean newReadState = computeBatchDirection(false);
|
|
|
|
if (newReadState)
|
|
|
|
{
|
|
|
|
readButtonIconId = R.drawable.ic_button_mark_read;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
readButtonIconId = R.drawable.ic_button_mark_unread;
|
|
|
|
}
|
|
|
|
boolean newFlagState = computeBatchDirection(true);
|
|
|
|
if (newFlagState)
|
|
|
|
{
|
|
|
|
flagButtonIconId = R.drawable.ic_button_flag;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flagButtonIconId = R.drawable.ic_button_unflag;
|
|
|
|
}
|
|
|
|
showBatchButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
mBatchReadButton.setImageResource(readButtonIconId);
|
|
|
|
mBatchFlagButton.setImageResource(flagButtonIconId);
|
|
|
|
}
|
|
|
|
|
|
|
|
class FooterViewHolder
|
|
|
|
{
|
|
|
|
public ProgressBar progress;
|
|
|
|
public TextView main;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private boolean computeBatchDirection(boolean flagged)
|
|
|
|
{
|
|
|
|
boolean newState = false;
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
if (flagged)
|
|
|
|
{
|
|
|
|
if (!holder.flagged)
|
|
|
|
{
|
|
|
|
newState = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!holder.read)
|
|
|
|
{
|
|
|
|
newState = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newState;
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean anySelected()
|
|
|
|
{
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-03 01:46:35 -04:00
|
|
|
@Override
|
2010-07-13 17:49:28 -04:00
|
|
|
public void onClick(View v)
|
|
|
|
{
|
|
|
|
boolean newState = false;
|
|
|
|
List<Message> messageList = new ArrayList<Message>();
|
|
|
|
List<MessageInfoHolder> removeHolderList = new ArrayList<MessageInfoHolder>();
|
|
|
|
|
|
|
|
if (v == mBatchDoneButton)
|
|
|
|
{
|
|
|
|
setAllSelected(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v == mBatchFlagButton)
|
|
|
|
{
|
|
|
|
newState = computeBatchDirection(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
newState = computeBatchDirection(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
if (v == mBatchDeleteButton)
|
|
|
|
{
|
|
|
|
removeHolderList.add(holder);
|
|
|
|
}
|
|
|
|
else if (v == mBatchFlagButton)
|
|
|
|
{
|
|
|
|
holder.flagged = newState;
|
|
|
|
}
|
|
|
|
else if (v == mBatchReadButton)
|
|
|
|
{
|
|
|
|
holder.read = newState;
|
|
|
|
}
|
|
|
|
messageList.add(holder.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mAdapter.removeMessages(removeHolderList);
|
|
|
|
|
|
|
|
if (!messageList.isEmpty())
|
|
|
|
{
|
|
|
|
if (v == mBatchDeleteButton)
|
|
|
|
{
|
2010-08-02 07:55:31 -04:00
|
|
|
mController.deleteMessages(messageList.toArray(EMPTY_MESSAGE_ARRAY), null);
|
2010-07-13 17:49:28 -04:00
|
|
|
mSelectedCount = 0;
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-02 07:55:31 -04:00
|
|
|
mController.setFlag(messageList.toArray(EMPTY_MESSAGE_ARRAY), (v == mBatchReadButton ? Flag.SEEN : Flag.FLAGGED), newState);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Should not happen
|
|
|
|
Toast.makeText(this, R.string.no_message_seletected_toast, Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
|
2010-11-07 14:40:42 -05:00
|
|
|
public void onAnimationEnd(Animation animation)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onAnimationRepeat(Animation animation)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onAnimationStart(Animation animation)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-13 17:49:28 -04:00
|
|
|
private void setAllSelected(boolean isSelected)
|
|
|
|
{
|
|
|
|
mSelectedCount = 0;
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
holder.selected = isSelected;
|
|
|
|
mSelectedCount += (isSelected ? 1 : 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mAdapter.notifyDataSetChanged();
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setSelected(MessageInfoHolder holder, boolean newState)
|
|
|
|
{
|
|
|
|
if (holder.selected != newState)
|
|
|
|
{
|
|
|
|
holder.selected = newState;
|
|
|
|
mSelectedCount += (newState ? 1 : -1);
|
|
|
|
}
|
|
|
|
mAdapter.notifyDataSetChanged();
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void flagSelected(Flag flag, boolean newState)
|
|
|
|
{
|
|
|
|
List<Message> messageList = new ArrayList<Message>();
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
messageList.add(holder.message);
|
|
|
|
if (flag == Flag.SEEN)
|
|
|
|
{
|
|
|
|
holder.read = newState;
|
|
|
|
}
|
|
|
|
else if (flag == Flag.FLAGGED)
|
|
|
|
{
|
|
|
|
holder.flagged = newState;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-08-02 07:55:31 -04:00
|
|
|
mController.setFlag(messageList.toArray(EMPTY_MESSAGE_ARRAY), flag, newState);
|
2010-07-13 17:49:28 -04:00
|
|
|
mHandler.sortMessages();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void deleteSelected()
|
|
|
|
{
|
|
|
|
List<Message> messageList = new ArrayList<Message>();
|
|
|
|
List<MessageInfoHolder> removeHolderList = new ArrayList<MessageInfoHolder>();
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
removeHolderList.add(holder);
|
|
|
|
messageList.add(holder.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mAdapter.removeMessages(removeHolderList);
|
|
|
|
|
2010-08-02 07:55:31 -04:00
|
|
|
mController.deleteMessages(messageList.toArray(EMPTY_MESSAGE_ARRAY), null);
|
2010-07-13 17:49:28 -04:00
|
|
|
mSelectedCount = 0;
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onMoveBatch()
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(mAccount))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
Message message = holder.message;
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this,
|
2010-07-13 17:16:56 -04:00
|
|
|
R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
2010-07-13 17:49:28 -04:00
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final Folder folder = mCurrentFolder.folder;
|
|
|
|
final Intent intent = new Intent(this, ChooseFolder.class);
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_ACCOUNT, mAccount.getUuid());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_CUR_FOLDER, folder.getName());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_SEL_FOLDER, folder.getAccount().getLastSelectedFolderName());
|
|
|
|
startActivityForResult(intent, ACTIVITY_CHOOSE_FOLDER_MOVE_BATCH);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onMoveChosenBatch(String folderName)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(mAccount))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
List<Message> messageList = new ArrayList<Message>();
|
|
|
|
|
|
|
|
List<MessageInfoHolder> removeHolderList = new ArrayList<MessageInfoHolder>();
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
Message message = holder.message;
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this,
|
2010-07-13 17:16:56 -04:00
|
|
|
R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
2010-07-13 17:49:28 -04:00
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
messageList.add(holder.message);
|
|
|
|
removeHolderList.add(holder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mAdapter.removeMessages(removeHolderList);
|
|
|
|
|
2010-08-02 07:55:31 -04:00
|
|
|
mController.moveMessages(mAccount, mCurrentFolder.name, messageList.toArray(EMPTY_MESSAGE_ARRAY), folderName, null);
|
2010-07-13 17:49:28 -04:00
|
|
|
mSelectedCount = 0;
|
|
|
|
toggleBatchButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onArchiveBatch()
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(mAccount))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
Message message = holder.message;
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this, R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String folderName = mAccount.getArchiveFolderName();
|
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(folderName))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
onMoveChosenBatch(folderName);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onSpamBatch()
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(mAccount))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
Message message = holder.message;
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isMoveCapable(message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this, R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String folderName = mAccount.getSpamFolderName();
|
|
|
|
if (K9.FOLDER_NONE.equalsIgnoreCase(folderName))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
onMoveChosenBatch(folderName);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onCopyBatch()
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isCopyCapable(mAccount))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
Message message = holder.message;
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isCopyCapable(message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this,
|
2010-07-13 17:16:56 -04:00
|
|
|
R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
2010-07-13 17:49:28 -04:00
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final Folder folder = mCurrentFolder.folder;
|
|
|
|
final Intent intent = new Intent(this, ChooseFolder.class);
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_ACCOUNT, mAccount.getUuid());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_CUR_FOLDER, folder.getName());
|
|
|
|
intent.putExtra(ChooseFolder.EXTRA_SEL_FOLDER, folder.getAccount().getLastSelectedFolderName());
|
|
|
|
startActivityForResult(intent, ACTIVITY_CHOOSE_FOLDER_COPY_BATCH);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onCopyChosenBatch(String folderName)
|
|
|
|
{
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isCopyCapable(mAccount))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Message> messageList = new ArrayList<Message>();
|
|
|
|
synchronized (mAdapter.messages)
|
|
|
|
{
|
|
|
|
for (MessageInfoHolder holder : mAdapter.messages)
|
|
|
|
{
|
|
|
|
if (holder.selected)
|
|
|
|
{
|
|
|
|
Message message = holder.message;
|
2010-08-29 19:39:26 -04:00
|
|
|
if (!mController.isCopyCapable(message))
|
2010-07-13 17:49:28 -04:00
|
|
|
{
|
|
|
|
Toast toast = Toast.makeText(this,
|
2010-07-13 17:16:56 -04:00
|
|
|
R.string.move_copy_cannot_copy_unsynced_message, Toast.LENGTH_LONG);
|
2010-07-13 17:49:28 -04:00
|
|
|
toast.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
messageList.add(holder.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-08-02 07:55:31 -04:00
|
|
|
mController.copyMessages(mAccount, mCurrentFolder.name, messageList.toArray(EMPTY_MESSAGE_ARRAY), folderName, null);
|
2010-07-13 17:49:28 -04:00
|
|
|
}
|
|
|
|
}
|