diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-09-17 13:27:27 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-09-17 13:27:27 +0400 |
| commit | 219531f1384f18ac04c6a61a940329580d02863e (patch) | |
| tree | f0e18d0ee2a73fa4a8bddcd11ba282e9dec054f8 /src/org/fox/ttrss/CommonActivity.java | |
| parent | 4f8cc7aeebe6794319b9fc8a63406ed6a38d9747 (diff) | |
implement background loading in ArticlePager
various loading and state related fixes
Diffstat (limited to 'src/org/fox/ttrss/CommonActivity.java')
| -rw-r--r-- | src/org/fox/ttrss/CommonActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/fox/ttrss/CommonActivity.java b/src/org/fox/ttrss/CommonActivity.java index 9f67e49d..d9359b24 100644 --- a/src/org/fox/ttrss/CommonActivity.java +++ b/src/org/fox/ttrss/CommonActivity.java @@ -32,7 +32,7 @@ public class CommonActivity extends FragmentActivity { m_smallScreenMode = smallScreen;
}
- protected void setLoadingStatus(int status, boolean showProgress) {
+ public void setLoadingStatus(int status, boolean showProgress) {
TextView tv = (TextView) findViewById(R.id.loading_message);
if (tv != null) {
|