私は(フルスクリーンではなく)ポートレートモードで(VideoView
で)ビデオを再生しています。
ランドスケープモードのビデオ停止。
横向きに変更すると、そのビデオは全画面表示され、再生を続けます。
なにか提案を?
あなたがする必要があるのは、AndroidManifest.xmlのアクティビティにこれを追加することだけです:
Android:configChanges="orientation"
ビデオアクティビティは次のようになります。
<activity Android:name=".VideoPlayerActivity"
Android:configChanges="orientation" />
ターゲットAPIレベル13以上の場合は、説明されているようにscreenSize
値に加えてorientation
値を含める必要があります ここ 。ビデオアクティビティは次のようになります。
<activity Android:name=".VideoPlayerActivity"
Android:configChanges="orientation|screenSize" />
次に、VideoPlayerActivityに次のメソッドを追加します。
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
}
フルスクリーンランドスケープビデオ
AndroidManifext.xml(向きの設定)
<activity
Android:name=".Video1"
Android:screenOrientation="landscape" />
Video1.xmlコード:
<?xml version="1.0" encoding="utf-8"?>
<Android.support.constraint.ConstraintLayout
xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
xmlns:app="http://schemas.Android.com/apk/res-auto"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
tools:context=".Video1">
<VideoView
Android:id="@+id/videoView"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:layout_gravity="center"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
</VideoView>
Video1.Javaコード:
import Android.net.Uri;
import Android.os.Bundle;
import Android.support.v7.app.AppCompatActivity;
import Android.view.WindowManager;
import Android.widget.MediaController;
import Android.widget.VideoView;
public class Video1 extends AppCompatActivity {
private VideoView videoView;
private MediaController mediaController;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_video1);
videoView = findViewById(R.id.videoView);
String fullScreen = getIntent().getStringExtra("fullScreenInd");
if("y".equals(fullScreen)){
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
getSupportActionBar().hide();
}
Uri videoUri = Uri.parse("Android.resource://"+getPackageName()+"/"+R.raw.YOUR_VIDEO_NAME);
videoView.setVideoURI(videoUri);
mediaController = new FullScreenMediaController(this);
mediaController.setAnchorView(videoView);
videoView.setMediaController(mediaController);
videoView.start();
}
}
FullScreenMediaControler.Javaコード:
import Android.app.Activity;
import Android.content.Context;
import Android.content.Intent;
import Android.view.Gravity;
import Android.view.View;
import Android.widget.FrameLayout;
import Android.widget.ImageButton;
import Android.widget.MediaController;
public class FullScreenMediaController extends MediaController {
private ImageButton fullScreen;
private String isFullScreen;
public FullScreenMediaController(Context context) {
super(context);
}
@Override
public void setAnchorView(View view) {
super.setAnchorView(view);
//image button for full screen to be added to media controller
fullScreen = new ImageButton (super.getContext());
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params.gravity = Gravity.RIGHT;
params.rightMargin = 80;
addView(fullScreen, params);
//fullscreen indicator from intent
isFullScreen = ((Activity)getContext()).getIntent().
getStringExtra("fullScreenInd");
if("y".equals(isFullScreen)){
fullScreen.setImageResource(R.drawable.ic_fullscreen_exit);
}else{
fullScreen.setImageResource(R.drawable.ic_fullscreen);
}
//add listener to image button to handle full screen and exit full screen events
fullScreen.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getContext(),Video1.class);
if("y".equals(isFullScreen)){
intent.putExtra("fullScreenInd", "");
}else{
intent.putExtra("fullScreenInd", "y");
}
((Activity)getContext()).startActivity(intent);
}
});
}
}