mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -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
@ -293,7 +293,7 @@ public class MessageList
|
|||||||
|
|
||||||
public void onItemClick(AdapterView parent, View v, int position, long id)
|
public void onItemClick(AdapterView parent, View v, int position, long id)
|
||||||
{
|
{
|
||||||
//Debug.stopMethodTracing();
|
// Debug.stopMethodTracing();
|
||||||
if ((position+1) == (mAdapter.getCount()))
|
if ((position+1) == (mAdapter.getCount()))
|
||||||
{
|
{
|
||||||
MessagingController.getInstance(getApplication()).loadMoreMessages(
|
MessagingController.getInstance(getApplication()).loadMoreMessages(
|
||||||
@ -317,7 +317,7 @@ public class MessageList
|
|||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState)
|
public void onCreate(Bundle savedInstanceState)
|
||||||
{
|
{
|
||||||
//Debug.startMethodTracing("k9");
|
// Debug.startMethodTracing("k9");
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
|
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
|
||||||
@ -343,26 +343,6 @@ public class MessageList
|
|||||||
|
|
||||||
mInflater = getLayoutInflater();
|
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);
|
mBatchButtonArea = findViewById(R.id.batch_button_area);
|
||||||
mBatchReadButton = (Button) findViewById(R.id.batch_read_button);
|
mBatchReadButton = (Button) findViewById(R.id.batch_read_button);
|
||||||
mBatchReadButton.setOnClickListener(this);
|
mBatchReadButton.setOnClickListener(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user