我正在使用运行Android 4.2.2的Geniatech ATV1220以简单的VideoView
显示视频。它通过HDMI端口连接到显示器。对于我的设置,我需要以不同的方向显示内容。它在4个方向中的3个方向都可以正常工作(横向,横向翻转,纵向翻转)。在纵向中,视频显示错误。
我创建了一个基本的应用程序来重现这种行为。 (https://github.com/IngoAlbers/SimpleVideoView)
相关部分:
VideoViewActivity
public class VideoViewActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_video_view);
final VideoView videoView =
(VideoView) findViewById(com.ingoalbers.simplevideoview.R.id.videoView);
assert videoView != null;
videoView.setVideoPath("http://clips.vorwaerts-gmbh.de/VfE_html5.mp4");
videoView.start();
}
}
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ingoalbers.simplevideoview">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".VideoViewActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
activity_video_view.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ingoalbers.simplevideoview.VideoViewActivity">
<VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"/>
</RelativeLayout>
纵向翻转
风景
肖像
正如您在纵向模式中看到的那样,视频已播放但仅占屏幕宽度的50%,并且似乎在高度上拉伸,因此您无法看到整个视频。
我在TextureView
和SurfaceView
中有相同的行为。所以我认为这个问题与MediaPlayer
有关。我还将android:background
的{{1}}属性更改为红色,我看到VideoView
的实际尺寸是正确的。
这可能是系统或硬件相关的问题,但我也可能以编程方式解决它,因为其他应用程序(如默认的VideoPlayer应用程序)不会遭受此行为。
我也应该可以更改系统设置等。我很乐意提供解决此问题可能需要的任何其他信息和文件。
更新:
我能够使用MXPlayer重现问题。 但是当我从HW切换到SW解码时,它被正确渲染。即使使用硬件解码,视频也没有垂直拉伸,但它仍然只显示宽度的50%。
更新#2 :
当我在开发人员选项中启用“显示曲面更新”时,只有显示视频的屏幕的一半在人像模式下闪烁。在其他3个方向上,整个屏幕闪烁。
纵向翻转
肖像
此外,我上传了系统VideoPlayer.apk,它可以正确播放视频,如果它可以帮助任何人。