summaryrefslogtreecommitdiff
path: root/android/src
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-02-21 15:49:00 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-02-21 17:38:23 +0100
commit71b7e5af9c95d42428336ec41deb64f8e74f5520 (patch)
treeb2f7bc4b7209892b77bedcd5535c345f43a7c68c /android/src
parent84e4170aff12e0e6dbaec1b0ae5a98372a0d091c (diff)
downloadmupdf-71b7e5af9c95d42428336ec41deb64f8e74f5520.tar.xz
Add new Android button icons and tweak the layouts.
Diffstat (limited to 'android/src')
-rw-r--r--android/src/com/artifex/mupdf/MuPDFActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/src/com/artifex/mupdf/MuPDFActivity.java b/android/src/com/artifex/mupdf/MuPDFActivity.java
index 69cfa271..50e3a9ea 100644
--- a/android/src/com/artifex/mupdf/MuPDFActivity.java
+++ b/android/src/com/artifex/mupdf/MuPDFActivity.java
@@ -51,7 +51,7 @@ public class MuPDFActivity extends Activity
private SeekBar mPageSlider;
private TextView mPageNumberView;
private ImageButton mSearchButton;
- private Button mCancelButton;
+ private ImageButton mCancelButton;
private ImageButton mOutlineButton;
private ViewSwitcher mTopBarSwitcher;
private boolean mTopBarIsSearch;
@@ -462,7 +462,7 @@ public class MuPDFActivity extends Activity
mPageSlider = (SeekBar)mButtonsView.findViewById(R.id.pageSlider);
mPageNumberView = (TextView)mButtonsView.findViewById(R.id.pageNumber);
mSearchButton = (ImageButton)mButtonsView.findViewById(R.id.searchButton);
- mCancelButton = (Button)mButtonsView.findViewById(R.id.cancel);
+ mCancelButton = (ImageButton)mButtonsView.findViewById(R.id.cancel);
mOutlineButton = (ImageButton)mButtonsView.findViewById(R.id.outlineButton);
mTopBarSwitcher = (ViewSwitcher)mButtonsView.findViewById(R.id.switcher);
mSearchBack = (ImageButton)mButtonsView.findViewById(R.id.searchBack);