OnFinishInflate inside ListActivity

Posted by zegnus on Stack Overflow See other posts from Stack Overflow or by zegnus
Published on 2010-01-07T15:26:08Z Indexed on 2010/04/15 9:03 UTC
Read the original article Hit count: 540

Filed under:

I have a main class filled with a cursor adapter:

public class MainMenu extends ListActivity{ 
... 
private void updateData(){ 
... 
SimpleAdapter notes = new SimpleAdapter(this, array, R.layout.row_task, from, to); setListAdapter(notes); 
} 
}

I need to know when this list has finnished to inflate it, so I've discovered this methods:

ListView.onFinishInflate()...

But I have no idea how to override it inside my code.

Any idea?

© Stack Overflow or respective owner

Related posts about android