Kann ich die Übergangsanimation für Android startActivity () ändern?


Antworten:


33

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.


1
Darüber hinaus ist es möglicherweise besser, die standardmäßige kurze Animationszeit zu verwenden:android:duration="@android:integer/config_shortAnimTime"
elimirks

wo istrunFadeAnimation()
Choletski

2
Leute, bitte seid sicher, die richtige Antwort unter diesem Beitrag zu sehen.
Android-Entwickler

Was ist Blabbla? !!
Ali Khaki

288

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);

17
Fügen Sie etwas hinzu wie: @Override public void onBackPressed () {super.onBackPressed (); overridePendingTransition (R.anim.hold, R.anim.fade_out); } zum Hinzufügen von Animationen.
RightHandedMonkey

1
Dies sollte die beste saubere Antwort sein.
Cy198706

1
@RightHandedMonkey Zum Hinzufügen von Back-Animationen überschreiben Sie besser das Finish (); Methode der Aktivität für den Fall, dass die Aktivität mit etwas anderem als der Zurück-Schaltfläche endet (z. B. einer benutzerdefinierten Exit-Schaltfläche ...).
Itiel Maimon

43

Siehe Themen auf Android: http://developer.android.com/guide/topics/ui/themes.html .

Unter Themes.xml sollte sich android:windowAnimationStyledort 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>



3
Beste Lösung .
Abhishek Kumar

Wie würden Sie @android:anim/fade_invom Java-Code aus zugreifen ?
Tamoxin

16

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>

9

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);
    }
}

8

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);

1
overridePendingTransition (android.R.anim.fade_in, android.R.anim.fade_out);
Farid Z

4

Sie können einfach einen Kontext erstellen und Folgendes tun: -

private Context context = this;

Und deine Animation: -

((Activity) context).overridePendingTransition(R.anim.abc_slide_in_bottom,R.anim.abc_slide_out_bottom);

Sie können jede gewünschte Animation verwenden.


0
 // 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);

0

Ich wollte die Lösung styles.xml verwenden, aber sie funktionierte bei Aktivitäten nicht. Es stellt sich heraus, dass ich anstelle von android:windowEnterAnimationund android:windowExitAnimationdie 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>
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.