Always show text at the top

pull/14/head
Tim Su 17 years ago
parent 3c09c367dc
commit 327bc1b7ae

@ -178,7 +178,6 @@ public class TaskListSubActivity extends SubActivity {
@Override
public void run() {
loadingText.setText(getParent().getResources().getString(R.string.updating));
loadingText.setVisibility(View.VISIBLE);
}
});
@ -432,6 +431,13 @@ public class TaskListSubActivity extends SubActivity {
int hiddenTasks = 0; // # of tasks hidden
int completedTasks = 0; // # of tasks on list that are done
handler.post(new Runnable() {
@Override
public void run() {
loadingText.setVisibility(View.VISIBLE);
}
});
try {
// get a cursor to the task list
Cursor tasksCursor;

Loading…
Cancel
Save