mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-11 03:55:04 -05:00
Avoid endless loop via Handler
This commit is contained in:
parent
7c2aa39202
commit
246ed6990c
@ -439,11 +439,10 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void updateFooter(final String message, final boolean showProgress) {
|
public void updateFooter(final String message, final boolean showProgress) {
|
||||||
//TODO: use message
|
|
||||||
post(new Runnable() {
|
post(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
updateFooter(message, showProgress);
|
MessageListFragment.this.updateFooter(message, showProgress);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user