Temporarily disable "left-handed" controls if we're doing a search.

view configuration needs to move to be global for this to work right.
This commit is contained in:
Jesse Vincent 2009-12-27 17:19:49 +00:00
parent bc61c90e1a
commit f6756879ef
1 changed files with 4 additions and 1 deletions

View File

@ -405,8 +405,11 @@ public class MessageList
mSelectedCount = savedInstanceState.getInt(STATE_KEY_SELECTED_COUNT);
}
mLeftHanded = mAccount.getLeftHanded();
if (mAccount != null)
{
mLeftHanded = mAccount.getLeftHanded();
}
mAdapter = new MessageListAdapter();
final Object previousData = getLastNonConfigurationInstance();