Ich beginne eine Aktivität und hätte lieber ein Alpha-Einblenden für startActivity()
und ein Ausblenden für das finish()
. Wie kann ich im Android SDK vorgehen?
Ich beginne eine Aktivität und hätte lieber ein Alpha-Einblenden für startActivity()
und ein Ausblenden für das finish()
. Wie kann ich im Android SDK vorgehen?
Antworten:
Führen Sie in derselben Anweisung, in der Sie finish () ausführen, auch dort Ihre Animation aus. Führen Sie dann in der neuen Aktivität eine weitere Animation aus. Siehe diesen Code:
fadein.xml
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<alpha android:fromAlpha="1.0"
android:toAlpha="0.0"
android:duration="500"/> //Time in milliseconds
</set>
In deiner Zielklasse
private void finishTask() {
if("blabbla".equals("blablabla"){
finish();
runFadeInAnimation();
}
}
private void runFadeInAnimation() {
Animation a = AnimationUtils.loadAnimation(this, R.anim.fadein);
a.reset();
LinearLayout ll = (LinearLayout) findViewById(R.id.yourviewhere);
ll.clearAnimation();
ll.startAnimation(a);
}
fadeout.xml
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<alpha android:fromAlpha="0.0"
android:toAlpha="1.0"
android:duration="500"/>
</set>
In Ihrer neuen Aktivitätsklasse erstellen Sie eine ähnliche Methode wie die von mir geschriebene runFadeAnimation und führen sie dann in onCreate aus. Vergessen Sie nicht, die Ressourcen-ID in Ausblenden zu ändern.
android:duration="@android:integer/config_shortAnimTime"
runFadeAnimation()
Ab API-Ebene 5 können Sie overridePendingTransition sofort aufrufen, um eine explizite Übergangsanimation anzugeben:
startActivity();
overridePendingTransition(R.anim.hold, R.anim.fade_in);
oder
finish();
overridePendingTransition(R.anim.hold, R.anim.fade_out);
Siehe Themen auf Android: http://developer.android.com/guide/topics/ui/themes.html .
Unter Themes.xml sollte sich android:windowAnimationStyle
dort befinden, wo Sie die Deklaration des Stils in styles.xml sehen können .
Beispielimplementierung:
<style name="AppTheme" parent="...">
...
<item name="android:windowAnimationStyle">@style/WindowAnimationStyle</item>
</style>
<style name="WindowAnimationStyle">
<item name="android:windowEnterAnimation">@android:anim/fade_in</item>
<item name="android:windowExitAnimation">@android:anim/fade_out</item>
</style>
@android:anim/fade_in
vom Java-Code aus zugreifen ?
Verwenden overridePendingTransition
startActivity();
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
fadein.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="500" />
</set>
fadeout.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/anticipate_interpolator"
android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="500" />
</set>
Wenn Sie immer dieselbe Übergangsanimation für die Aktivität verwenden möchten
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
@Override
protected void onPause() {
super.onPause();
if (isFinishing()) {
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
}
}
Fügen Sie dies für fadeIn und fadeOut erst nach super.onCreate (savedInstanceState) in Ihrer neuen Activity-Klasse hinzu. Sie müssen nichts anderes erstellen (kein XML, kein Animationsordner, keine zusätzliche Funktion).
overridePendingTransition(R.anim.abc_fade_in,R.anim.abc_fade_out);
// CREATE anim
// CREATE animation,animation2 xml // animation like fade out
Intent myIntent1 = new Intent(getApplicationContext(), Attend.class);
Bundle bndlanimation1 = ActivityOptions.makeCustomAnimation(getApplicationContext(),
R.anim.animation, R.anim.animation2).toBundle();
tartActivity(myIntent1, bndlanimation1);
Ich wollte die Lösung styles.xml verwenden, aber sie funktionierte bei Aktivitäten nicht. Es stellt sich heraus, dass ich anstelle von android:windowEnterAnimation
und android:windowExitAnimation
die Aktivitätsanimationen wie folgt verwenden muss:
<style name="ActivityAnimation.Vertical" parent="">
<item name="android:activityOpenEnterAnimation">@anim/enter_from_bottom</item>
<item name="android:activityOpenExitAnimation">@anim/exit_to_bottom</item>
<item name="android:activityCloseEnterAnimation">@anim/enter_from_bottom</item>
<item name="android:activityCloseExitAnimation">@anim/exit_to_bottom</item>
<item name="android:windowEnterAnimation">@anim/enter_from_bottom</item>
<item name="android:windowExitAnimation">@anim/exit_to_bottom</item>
</style>