From 7d75bb162d5d046a07f0857a1402f2e251032772 Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Thu, 16 Aug 2012 11:41:22 -0400 Subject: [PATCH] Changed the order of refreshing the listview and dismissing the progress dialog closes #144 --- LocationRinger/AndroidManifest.xml | 4 ++-- .../TwentyCodes/android/LocationRinger/ui/ListActivity.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LocationRinger/AndroidManifest.xml b/LocationRinger/AndroidManifest.xml index 5d56bee..5706afc 100644 --- a/LocationRinger/AndroidManifest.xml +++ b/LocationRinger/AndroidManifest.xml @@ -2,8 +2,8 @@ + android:versionCode="152" + android:versionName="d36c436" > diff --git a/LocationRinger/src/com/TwentyCodes/android/LocationRinger/ui/ListActivity.java b/LocationRinger/src/com/TwentyCodes/android/LocationRinger/ui/ListActivity.java index de35a08..0a2e7c9 100644 --- a/LocationRinger/src/com/TwentyCodes/android/LocationRinger/ui/ListActivity.java +++ b/LocationRinger/src/com/TwentyCodes/android/LocationRinger/ui/ListActivity.java @@ -95,8 +95,8 @@ public class ListActivity extends Activity implements OnItemClickListener, OnCli mListView.post(new Runnable() { @Override public void run() { - progress.dismiss(); populate(); + progress.dismiss(); } }); }