Implemented landscape layout for videoplayer
This commit is contained in:
parent
2ba8847610
commit
0eded316b3
@ -30,7 +30,7 @@
|
|||||||
<activity android:name="de.podfetcher.activity.ItemviewActivity"/>
|
<activity android:name="de.podfetcher.activity.ItemviewActivity"/>
|
||||||
<activity android:name="de.podfetcher.activity.DownloadActivity"
|
<activity android:name="de.podfetcher.activity.DownloadActivity"
|
||||||
android:label="@string/downloads_label"/>
|
android:label="@string/downloads_label"/>
|
||||||
<activity android:name="de.podfetcher.activity.MediaplayerActivity" android:launchMode="singleTask"/>
|
<activity android:name="de.podfetcher.activity.MediaplayerActivity" android:launchMode="singleTask" android:configChanges="orientation"/>
|
||||||
|
|
||||||
<service android:enabled="true" android:name="de.podfetcher.service.DownloadService" />
|
<service android:enabled="true" android:name="de.podfetcher.service.DownloadService" />
|
||||||
<service android:enabled="true" android:name="de.podfetcher.service.PlaybackService" />
|
<service android:enabled="true" android:name="de.podfetcher.service.PlaybackService" />
|
||||||
|
51
res/layout-land/mediaplayer_activity.xml
Normal file
51
res/layout-land/mediaplayer_activity.xml
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical" >
|
||||||
|
|
||||||
|
<VideoView
|
||||||
|
android:id="@+id/videoview"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
/>
|
||||||
|
<!-- Mediaplayer controls -->
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/playercontrols"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="30dp"
|
||||||
|
android:layout_gravity="bottom|center"
|
||||||
|
android:background="@color/gray" >
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/txtvPosition"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_alignParentBottom="true"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:text="@string/position_default_label" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/txtvLength"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentBottom="true"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:text="@string/position_default_label"
|
||||||
|
android:textColor="@color/white" />
|
||||||
|
|
||||||
|
<SeekBar
|
||||||
|
android:id="@+id/sbPosition"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="0px"
|
||||||
|
android:layout_toLeftOf="@id/txtvLength"
|
||||||
|
android:layout_toRightOf="@id/txtvPosition"
|
||||||
|
android:layout_alignParentBottom="true"
|
||||||
|
android:max="500" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
</FrameLayout>
|
@ -7,6 +7,7 @@ import android.content.Intent;
|
|||||||
import android.content.IntentFilter;
|
import android.content.IntentFilter;
|
||||||
import android.content.ServiceConnection;
|
import android.content.ServiceConnection;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
|
import android.content.res.Configuration;
|
||||||
import android.graphics.PixelFormat;
|
import android.graphics.PixelFormat;
|
||||||
import android.media.MediaPlayer;
|
import android.media.MediaPlayer;
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
@ -38,12 +39,15 @@ import de.podfetcher.util.Converter;
|
|||||||
|
|
||||||
public class MediaplayerActivity extends SherlockActivity implements
|
public class MediaplayerActivity extends SherlockActivity implements
|
||||||
SurfaceHolder.Callback {
|
SurfaceHolder.Callback {
|
||||||
|
|
||||||
private final String TAG = "MediaplayerActivity";
|
private final String TAG = "MediaplayerActivity";
|
||||||
|
|
||||||
private static final int DEFAULT_SEEK_DELTA = 30000; // Seek-Delta to use
|
private static final int DEFAULT_SEEK_DELTA = 30000; // Seek-Delta to use
|
||||||
// when using FF or
|
// when using FF or
|
||||||
// Rev Buttons
|
// Rev Buttons
|
||||||
|
|
||||||
|
private int orientation;
|
||||||
|
|
||||||
private PlaybackService playbackService;
|
private PlaybackService playbackService;
|
||||||
private MediaPositionObserver positionObserver;
|
private MediaPositionObserver positionObserver;
|
||||||
|
|
||||||
@ -96,6 +100,26 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onConfigurationChanged(Configuration newConfig) {
|
||||||
|
super.onConfigurationChanged(newConfig);
|
||||||
|
Log.d(TAG, "Configuration changed");
|
||||||
|
orientation = newConfig.orientation;
|
||||||
|
positionObserver.cancel(true);
|
||||||
|
if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
|
||||||
|
setContentView(R.layout.mediaplayer_activity);
|
||||||
|
} else {
|
||||||
|
setContentView(R.layout.mediaplayer_activity);
|
||||||
|
}
|
||||||
|
setupGUI();
|
||||||
|
if (playbackService != null && playbackService.isPlayingVideo()) {
|
||||||
|
playbackService.resetVideoSurface();
|
||||||
|
if (!videoview.isShown()) {
|
||||||
|
viewswitcher.showNext();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onPause() {
|
protected void onPause() {
|
||||||
super.onPause();
|
super.onPause();
|
||||||
@ -109,6 +133,7 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
Log.d(TAG, "Creating Activity");
|
Log.d(TAG, "Creating Activity");
|
||||||
|
orientation = getResources().getConfiguration().orientation;
|
||||||
getWindow().setFormat(PixelFormat.TRANSPARENT);
|
getWindow().setFormat(PixelFormat.TRANSPARENT);
|
||||||
this.setContentView(R.layout.mediaplayer_activity);
|
this.setContentView(R.layout.mediaplayer_activity);
|
||||||
manager = FeedManager.getInstance();
|
manager = FeedManager.getInstance();
|
||||||
@ -163,13 +188,17 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
positionObserver.cancel(true);
|
positionObserver.cancel(true);
|
||||||
positionObserver = null;
|
positionObserver = null;
|
||||||
}
|
}
|
||||||
|
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||||
butPlay.setImageResource(android.R.drawable.ic_media_play);
|
butPlay.setImageResource(android.R.drawable.ic_media_play);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case PLAYING:
|
case PLAYING:
|
||||||
setStatusMsg(R.string.player_playing_msg, View.INVISIBLE);
|
setStatusMsg(R.string.player_playing_msg, View.INVISIBLE);
|
||||||
loadMediaInfo();
|
loadMediaInfo();
|
||||||
setupPositionObserver();
|
setupPositionObserver();
|
||||||
|
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||||
butPlay.setImageResource(android.R.drawable.ic_media_pause);
|
butPlay.setImageResource(android.R.drawable.ic_media_pause);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case PREPARING:
|
case PREPARING:
|
||||||
setStatusMsg(R.string.player_preparing_msg, View.VISIBLE);
|
setStatusMsg(R.string.player_preparing_msg, View.VISIBLE);
|
||||||
@ -181,7 +210,9 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
case PREPARED:
|
case PREPARED:
|
||||||
loadMediaInfo();
|
loadMediaInfo();
|
||||||
setStatusMsg(R.string.player_ready_msg, View.VISIBLE);
|
setStatusMsg(R.string.player_ready_msg, View.VISIBLE);
|
||||||
|
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||||
butPlay.setImageResource(android.R.drawable.ic_media_play);
|
butPlay.setImageResource(android.R.drawable.ic_media_play);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case SEEKING:
|
case SEEKING:
|
||||||
setStatusMsg(R.string.player_seeking_msg, View.VISIBLE);
|
setStatusMsg(R.string.player_seeking_msg, View.VISIBLE);
|
||||||
@ -189,17 +220,24 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
case AWAITING_VIDEO_SURFACE:
|
case AWAITING_VIDEO_SURFACE:
|
||||||
Log.d(TAG, "Preparing video playback");
|
Log.d(TAG, "Preparing video playback");
|
||||||
SurfaceHolder holder = videoview.getHolder();
|
SurfaceHolder holder = videoview.getHolder();
|
||||||
|
playbackService.setVideoSurface(holder);
|
||||||
holder.addCallback(this);
|
holder.addCallback(this);
|
||||||
|
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||||
|
if (!videoview.isShown()) {
|
||||||
viewswitcher.showNext();
|
viewswitcher.showNext();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void setStatusMsg(int resId, int visibility) {
|
private void setStatusMsg(int resId, int visibility) {
|
||||||
|
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||||
if (visibility == View.VISIBLE) {
|
if (visibility == View.VISIBLE) {
|
||||||
txtvStatus.setText(resId);
|
txtvStatus.setText(resId);
|
||||||
}
|
}
|
||||||
txtvStatus.setVisibility(visibility);
|
txtvStatus.setVisibility(visibility);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void setupPositionObserver() {
|
private void setupPositionObserver() {
|
||||||
if (positionObserver == null || positionObserver.isCancelled()) {
|
if (positionObserver == null || positionObserver.isCancelled()) {
|
||||||
@ -221,6 +259,7 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void updateProgressbarPosition() {
|
private void updateProgressbarPosition() {
|
||||||
|
Log.d(TAG, "Updating progressbar info");
|
||||||
MediaPlayer player = playbackService.getPlayer();
|
MediaPlayer player = playbackService.getPlayer();
|
||||||
float progress = ((float) player.getCurrentPosition())
|
float progress = ((float) player.getCurrentPosition())
|
||||||
/ player.getDuration();
|
/ player.getDuration();
|
||||||
@ -228,15 +267,17 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void loadMediaInfo() {
|
private void loadMediaInfo() {
|
||||||
|
Log.d(TAG, "Loading media info");
|
||||||
if (media != null) {
|
if (media != null) {
|
||||||
MediaPlayer player = playbackService.getPlayer();
|
MediaPlayer player = playbackService.getPlayer();
|
||||||
|
|
||||||
|
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||||
getSupportActionBar().setSubtitle(media.getItem().getTitle());
|
getSupportActionBar().setSubtitle(media.getItem().getTitle());
|
||||||
getSupportActionBar()
|
getSupportActionBar().setTitle(
|
||||||
.setTitle(media.getItem().getFeed().getTitle());
|
media.getItem().getFeed().getTitle());
|
||||||
|
|
||||||
imgvCover.setImageBitmap(media.getItem().getFeed().getImage()
|
imgvCover.setImageBitmap(media.getItem().getFeed().getImage()
|
||||||
.getImageBitmap());
|
.getImageBitmap());
|
||||||
|
}
|
||||||
|
|
||||||
txtvPosition.setText(Converter.getDurationStringLong((player
|
txtvPosition.setText(Converter.getDurationStringLong((player
|
||||||
.getCurrentPosition())));
|
.getCurrentPosition())));
|
||||||
@ -252,15 +293,10 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
|
|
||||||
private void setupGUI() {
|
private void setupGUI() {
|
||||||
viewswitcher = (ViewSwitcher) findViewById(R.id.viewswitcher);
|
viewswitcher = (ViewSwitcher) findViewById(R.id.viewswitcher);
|
||||||
imgvCover = (ImageView) findViewById(R.id.imgvCover);
|
sbPosition = (SeekBar) findViewById(R.id.sbPosition);
|
||||||
videoview = (VideoView) findViewById(R.id.videoview);
|
videoview = (VideoView) findViewById(R.id.videoview);
|
||||||
txtvPosition = (TextView) findViewById(R.id.txtvPosition);
|
txtvPosition = (TextView) findViewById(R.id.txtvPosition);
|
||||||
txtvLength = (TextView) findViewById(R.id.txtvLength);
|
txtvLength = (TextView) findViewById(R.id.txtvLength);
|
||||||
txtvStatus = (TextView) findViewById(R.id.txtvStatus);
|
|
||||||
sbPosition = (SeekBar) findViewById(R.id.sbPosition);
|
|
||||||
butPlay = (ImageButton) findViewById(R.id.butPlay);
|
|
||||||
butRev = (ImageButton) findViewById(R.id.butRev);
|
|
||||||
butFF = (ImageButton) findViewById(R.id.butFF);
|
|
||||||
|
|
||||||
sbPosition.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {
|
sbPosition.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {
|
||||||
int duration;
|
int duration;
|
||||||
@ -294,17 +330,14 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
butPlay.setOnClickListener(new OnClickListener() {
|
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
|
||||||
@Override
|
imgvCover = (ImageView) findViewById(R.id.imgvCover);
|
||||||
public void onClick(View v) {
|
txtvStatus = (TextView) findViewById(R.id.txtvStatus);
|
||||||
if (status == PlayerStatus.PLAYING) {
|
butPlay = (ImageButton) findViewById(R.id.butPlay);
|
||||||
playbackService.pause();
|
butRev = (ImageButton) findViewById(R.id.butRev);
|
||||||
} else if (status == PlayerStatus.PAUSED
|
butFF = (ImageButton) findViewById(R.id.butFF);
|
||||||
|| status == PlayerStatus.PREPARED) {
|
|
||||||
playbackService.play();
|
butPlay.setOnClickListener(playbuttonListener);
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
butFF.setOnClickListener(new OnClickListener() {
|
butFF.setOnClickListener(new OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
@ -323,7 +356,23 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
setTheme(R.style.Theme_Sherlock_Light_NoActionBar);
|
||||||
|
videoview.setOnClickListener(playbuttonListener);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private OnClickListener playbuttonListener = new OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
if (status == PlayerStatus.PLAYING) {
|
||||||
|
playbackService.pause();
|
||||||
|
} else if (status == PlayerStatus.PAUSED
|
||||||
|
|| status == PlayerStatus.PREPARED) {
|
||||||
|
playbackService.play();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
private void handleError() {
|
private void handleError() {
|
||||||
// TODO implement
|
// TODO implement
|
||||||
@ -381,6 +430,7 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
Log.d(TAG,
|
Log.d(TAG,
|
||||||
"Thread was interrupted while waiting. Finishing now");
|
"Thread was interrupted while waiting. Finishing now");
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
publishProgress();
|
publishProgress();
|
||||||
}
|
}
|
||||||
@ -389,14 +439,17 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean holderCreated;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void surfaceChanged(SurfaceHolder holder, int format, int width,
|
public void surfaceChanged(SurfaceHolder holder, int format, int width,
|
||||||
int height) {
|
int height) {
|
||||||
|
holder.setFixedSize(width, height);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void surfaceCreated(SurfaceHolder holder) {
|
public void surfaceCreated(SurfaceHolder holder) {
|
||||||
|
holderCreated = true;
|
||||||
Log.d(TAG, "Videoview holder created");
|
Log.d(TAG, "Videoview holder created");
|
||||||
if (status == PlayerStatus.AWAITING_VIDEO_SURFACE) {
|
if (status == PlayerStatus.AWAITING_VIDEO_SURFACE) {
|
||||||
playbackService.setVideoSurface(holder);
|
playbackService.setVideoSurface(holder);
|
||||||
@ -406,7 +459,7 @@ public class MediaplayerActivity extends SherlockActivity implements
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void surfaceDestroyed(SurfaceHolder holder) {
|
public void surfaceDestroyed(SurfaceHolder holder) {
|
||||||
|
holderCreated = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -188,7 +188,11 @@ public class PlaybackService extends Service {
|
|||||||
* mediaplayer.
|
* mediaplayer.
|
||||||
*/
|
*/
|
||||||
public void setVideoSurface(SurfaceHolder sh) {
|
public void setVideoSurface(SurfaceHolder sh) {
|
||||||
|
Log.d(TAG, "Setting display");
|
||||||
|
player.setDisplay(null);
|
||||||
player.setDisplay(sh);
|
player.setDisplay(sh);
|
||||||
|
if (status == PlayerStatus.STOPPED
|
||||||
|
|| status == PlayerStatus.AWAITING_VIDEO_SURFACE) {
|
||||||
try {
|
try {
|
||||||
if (shouldStream) {
|
if (shouldStream) {
|
||||||
player.setDataSource(media.getDownload_url());
|
player.setDataSource(media.getDownload_url());
|
||||||
@ -208,9 +212,24 @@ public class PlaybackService extends Service {
|
|||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Called when the surface holder of the mediaplayer has to be changed. */
|
||||||
|
public void resetVideoSurface() {
|
||||||
|
positionSaver.cancel(true);
|
||||||
|
player.setDisplay(null);
|
||||||
|
player.reset();
|
||||||
|
player.release();
|
||||||
|
player = new MediaPlayer();
|
||||||
|
player.setOnPreparedListener(preparedListener);
|
||||||
|
player.setOnCompletionListener(completionListener);
|
||||||
|
player.setOnSeekCompleteListener(onSeekCompleteListener);
|
||||||
|
status = PlayerStatus.STOPPED;
|
||||||
|
setupMediaplayer();
|
||||||
|
}
|
||||||
|
|
||||||
/** Called after service has extracted the media it is supposed to play. */
|
/** Called after service has extracted the media it is supposed to play. */
|
||||||
private void setupMediaplayer() {
|
private void setupMediaplayer() {
|
||||||
try {
|
try {
|
||||||
@ -228,6 +247,7 @@ public class PlaybackService extends Service {
|
|||||||
} else if (media.getMime_type().startsWith("video")) {
|
} else if (media.getMime_type().startsWith("video")) {
|
||||||
playingVideo = true;
|
playingVideo = true;
|
||||||
setStatus(PlayerStatus.AWAITING_VIDEO_SURFACE);
|
setStatus(PlayerStatus.AWAITING_VIDEO_SURFACE);
|
||||||
|
player.setScreenOnWhilePlaying(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user