Changed the order of refreshing the listview and dismissing the progress

dialog

closes #144
This commit is contained in:
2012-08-16 11:41:22 -04:00
parent d36c436143
commit 7d75bb162d
2 changed files with 3 additions and 3 deletions

View File

@@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.TwentyCodes.android.LocationRinger"
android:installLocation="internalOnly"
android:versionCode="151"
android:versionName="d1b09be" >
android:versionCode="152"
android:versionName="d36c436" >
<uses-sdk android:minSdkVersion="7"/>

View File

@@ -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();
}
});
}