mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 11:35:11 -05:00
Revert "An attempt to make message lists start displaying messages earlier by precomputing a list item."
Sadly, it caused explosions This reverts commit 5b321f4d0893ad5538d229b1c84f6806d0d8cbfe.
This commit is contained in:
parent
bdc80584c1
commit
bf4e37d3b5
@ -343,26 +343,6 @@ public class MessageList
|
||||
|
||||
mInflater = getLayoutInflater();
|
||||
|
||||
|
||||
/*
|
||||
* Dirty hack - the first time we inflate a message list item
|
||||
* actually takes a lot longer as Android is doing a fair bit of
|
||||
* work. Instead of letting that happen when the first item
|
||||
* is displayed, do it in a thread as we're doing initial setup
|
||||
* Subjective performance feels a lot better, but who knows.
|
||||
*
|
||||
*/
|
||||
new Thread(new Runnable()
|
||||
{
|
||||
public void run()
|
||||
{
|
||||
mInflater.inflate(R.layout.message_list_item, mListView, false);
|
||||
}
|
||||
|
||||
}).start();
|
||||
|
||||
|
||||
|
||||
mBatchButtonArea = findViewById(R.id.batch_button_area);
|
||||
mBatchReadButton = (Button) findViewById(R.id.batch_read_button);
|
||||
mBatchReadButton.setOnClickListener(this);
|
||||
|
Loading…
Reference in New Issue
Block a user