summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/activity
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-02-01 23:59:02 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2013-02-01 23:59:02 +0100
commit4b9831603b5f318494f59c33f99a04e0cf2477b0 (patch)
treea620777cff25e937c03dd3f5c14b4f760bf20644 /src/de/danoeh/antennapod/activity
parent2566dd012da21deb5fef1cdb5dd6df8369fcd7bf (diff)
downloadAntennaPod-4b9831603b5f318494f59c33f99a04e0cf2477b0.zip
Improved layout of player controls
Diffstat (limited to 'src/de/danoeh/antennapod/activity')
-rw-r--r--src/de/danoeh/antennapod/activity/AudioplayerActivity.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/de/danoeh/antennapod/activity/AudioplayerActivity.java b/src/de/danoeh/antennapod/activity/AudioplayerActivity.java
index 0c99b6954..ac1cf6ddb 100644
--- a/src/de/danoeh/antennapod/activity/AudioplayerActivity.java
+++ b/src/de/danoeh/antennapod/activity/AudioplayerActivity.java
@@ -34,7 +34,6 @@ public class AudioplayerActivity extends MediaplayerActivity {
ViewPager viewpager;
TabPageIndicator tabs;
MediaPlayerPagerAdapter pagerAdapter;
- TextView txtvStatus;
@Override
protected void onAwaitingVideoSurface() {
@@ -43,20 +42,17 @@ public class AudioplayerActivity extends MediaplayerActivity {
@Override
protected void postStatusMsg(int resId) {
- txtvStatus.setText(resId);
}
@Override
protected void clearStatusMsg() {
- txtvStatus.setText("");
}
@Override
protected void setupGUI() {
super.setupGUI();
- txtvStatus = (TextView) findViewById(R.id.txtvStatus);
viewpager = (ViewPager) findViewById(R.id.viewpager);
tabs = (TabPageIndicator) findViewById(R.id.tabs);
pagerAdapter = new MediaPlayerPagerAdapter(getSupportFragmentManager());