我遵循了以下文档:https://developer.android.com/training/transitions/start-activity#java。
首先,我将向您展示我的实现。您将在本文的结尾找到我的问题。
因此,我修改了4个文件:
<?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>
windowEnterTransition
。请注意,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>
<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
中设置了Enter转换:@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().setEnterTransition(new Fade(Fade.IN)); setContentView(R.layout.activity_main); }
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'
}
仿真器中安装的Android版本为:5.1.1(请参见仿真器中Android设置中的“关于手机”)。
但是,当我启动应用程序时,主活动的UI不会消失。您知道为什么吗?换句话说:为什么不执行XML指定的转换? (或者为什么不考虑其指定的持续时间?)
我还尝试将<item name="android:windowActivityTransitions">true</item>
从主题MainActivityTheme
(文件:styles.xml)移到主题AppTheme
(文件:相同, ie: styles.xml)。但这并不能解决这个错误。
答案 0 :(得分:0)
尝试一下,希望它能起作用
材料设计应用程序中的活动转换通过运动和常见元素之间的转换提供了不同状态之间的可视连接。您可以为进入和退出过渡以及共享元素的过渡 data_
between activities.
也请阅读此问题,这可能对您有帮助 WindowEnterTransition Not Affecting Activity Transition