diff --git a/ExceptionReportViewer/bin/ExceptionReportViewer.apk b/ExceptionReportViewer/bin/ExceptionReportViewer.apk index 52262df..7ae3c26 100644 Binary files a/ExceptionReportViewer/bin/ExceptionReportViewer.apk and b/ExceptionReportViewer/bin/ExceptionReportViewer.apk differ diff --git a/ExceptionReportViewer/bin/classes.dex b/ExceptionReportViewer/bin/classes.dex index f7d21c3..6c84bb1 100644 Binary files a/ExceptionReportViewer/bin/classes.dex and b/ExceptionReportViewer/bin/classes.dex differ diff --git a/ExceptionReportViewer/bin/resources.ap_ b/ExceptionReportViewer/bin/resources.ap_ index 8e0ab3f..cc7751f 100644 Binary files a/ExceptionReportViewer/bin/resources.ap_ and b/ExceptionReportViewer/bin/resources.ap_ differ diff --git a/ExceptionReportViewer/src/com/TwentyCodes/android/ExceptionReportViewer/ReportListFragment.java b/ExceptionReportViewer/src/com/TwentyCodes/android/ExceptionReportViewer/ReportListFragment.java index f8c637a..43c48b2 100644 --- a/ExceptionReportViewer/src/com/TwentyCodes/android/ExceptionReportViewer/ReportListFragment.java +++ b/ExceptionReportViewer/src/com/TwentyCodes/android/ExceptionReportViewer/ReportListFragment.java @@ -11,6 +11,7 @@ import org.json.JSONException; import org.json.JSONObject; import android.content.Intent; +import android.graphics.Color; import android.os.Bundle; import android.support.v4.app.ListFragment; import android.support.v4.app.LoaderManager; @@ -37,6 +38,7 @@ public class ReportListFragment extends ListFragment implements LoaderManager.Lo * @author ricky barrette */ public ReportListFragment(final String url) { + super(); mUrl = url; } @@ -47,6 +49,8 @@ public class ReportListFragment extends ListFragment implements LoaderManager.Lo @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); + this.setListShown(false); + this.getListView().setCacheColorHint(Color.TRANSPARENT); getLoaderManager().initLoader(0, null, this); } @@ -95,8 +99,13 @@ public class ReportListFragment extends ListFragment implements LoaderManager.Lo } + /** + * Called when the loader has been reset + * (non-Javadoc) + * @see android.support.v4.app.LoaderManager.LoaderCallbacks#onLoaderReset(android.support.v4.content.Loader) + */ @Override public void onLoaderReset(Loader loader) { - //not needed + //not Needed } } \ No newline at end of file