Я пишу приложение для Android, и у меня есть видео в качестве заставки, но всякий раз, когда я открываю приложение на планшетах, экран становится черным на протяжении всего видео. Заставка хорошо работает на телефонах и виртуальных устройствах (эмуляторах телефонов и планшетов), но на любом физическом планшете виден только черный экран.
Я предоставил мой файл манифеста и файл Java для заставки. Я делаю что-то неправильно? Относятся ли заставки к видео по-другому, чем к обычным статическим заставкам для фотографий?
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myPackage">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:hardwareAccelerated="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".SplashScreen"
android:configChanges="orientation"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".HomeActivity"
android:label="@string/title_activity_home"
android:theme="@style/AppTheme.NoActionBar"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
<activity
android:name=".InfoActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"
android:label="@string/title_activity_info"
android:theme="@style/AppTheme.NoActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".InfoActivity" />
</activity>
<activity
android:name=".FixConditions"
android:label=""
android:configChanges="orientation"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".InfoActivity" />
</activity>
<activity
android:name=".WebViewSignUp"
android:configChanges="orientation"
android:screenOrientation="portrait"
android:label=""
android:theme="@style/AppTheme.NoActionBar"></activity>
</application>
SplashScreen.java
public class SplashScreen extends AppCompatActivity {
VideoView videoView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().hide();
videoView = (VideoView)findViewById(R.id.videoView);
Uri video = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.into);
videoView.setVideoURI(video);
videoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mediaPlayer) {
if (isFinishing())
return;
startActivity(new Intent(SplashScreen.this, HomeActivity.class));
finish();
}
});
videoView.start();
}
}