summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/src/com/artifex/mupdfdemo/MuPDFActivity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/android/src/com/artifex/mupdfdemo/MuPDFActivity.java b/android/src/com/artifex/mupdfdemo/MuPDFActivity.java
index 3307087e..cb9769fe 100644
--- a/android/src/com/artifex/mupdfdemo/MuPDFActivity.java
+++ b/android/src/com/artifex/mupdfdemo/MuPDFActivity.java
@@ -655,8 +655,10 @@ public class MuPDFActivity extends Activity
mReflow = !mReflow;
if (mReflow) {
mDocView.setAdapter(new MuPDFReflowAdapter(this, core));
+ mReflowButton.setColorFilter(Color.argb(0xFF, 172, 114, 37));
} else {
mDocView.setAdapter(new MuPDFPageAdapter(this, core));
+ mReflowButton.setColorFilter(Color.argb(0xFF, 255, 255, 255));
}
mDocView.refresh(mReflow);
}