Я следовал этой документации: https://developer.android.com/training/transitions/start-activity#java.
Сначала я покажу вам мою реализацию. Вы найдете мой вопрос в конце этого поста.
Таким образом, я изменил 4 файла:
- fade.xml, который определяет длительность перехода при переходе.
<?xml version="1.0" encoding="utf-8"?>
<transitionSet xmlns:android="http://schemas.android.com/apk/res/android">
<fade android:fadingMode="fade_in" android:duration="3000" />
</transitionSet>
- values / styles.xml, который определяет
windowEnterTransition
благодаря fade.xml. Обратите внимание, что родительский объект MainActivity, AppTheme, имеет в качестве родительского элемента Material.
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Material">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowActivityTransitions">true</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
<style name="MainActivityTheme" parent="AppTheme">
<item name="android:windowEnterTransition">@transition/fade</item>
</style>
- Поскольку я создал эту новую тему "MainActivityTheme", я также изменил манифест Android, чтобы указать эту новую тему для этого действия:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:theme="@style/MainActivityTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
- Наконец, я установил входной переход в
MainActivity.java
:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setEnterTransition(new Fade(Fade.IN));
setContentView(R.layout.activity_main);
}
Эмулятор и Gradle build
build.gradle (Модуль: приложение)
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.."
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:design:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
Emulator
Версия Android, установленная в эмуляторе: 5.1.1 (см. «О телефоне» в настройках Android, в эмуляторе).
Вопрос
Однако, когда я запускаю свое приложение, пользовательский интерфейс основного действия не исчезает. Знаете почему? Другими словами: почему указанный XML-переход не выполняется? (или почему указанная продолжительность не учитывается?)
Я также пытался переместить <item name="android:windowActivityTransitions">true</item>
из темы MainActivityTheme
(файл: styles.xml) в тему AppTheme
(файл: тот же, , т.е.: styles.xml). Но это не исправило эту ошибку.