溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Activity中怎么實(shí)現(xiàn)頁(yè)面切換效果

發(fā)布時(shí)間:2021-08-03 16:04:05 來(lái)源:億速云 閱讀:112 作者:Leah 欄目:移動(dòng)開(kāi)發(fā)

這篇文章給大家介紹Activity中怎么實(shí)現(xiàn)頁(yè)面切換效果,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

Java 代碼

@Override  public void onCreate(Bundle savedInstanceState) {      super.onCreate(savedInstanceState);      setContentView(R.layout.SplashScreen);      new Handler().postDelayed(new Runnable() {  @Override   public void run() {      Intent mainIntent = new Intent(SplashScreen.this,      AndroidNews.class);      SplashScreen.this.startActivity(mainIntent);      SplashScreen.this.finish();     overridePendingTransition(R.anim.mainfadein,         R.anim.splashfadeout);     }    }, 3000);  }

上面的代碼只是閃屏的一部分。

Java 代碼

getWindow (). setWindowAnimations ( int );

這可沒(méi)有上個(gè)好但是也可以 。實(shí)現(xiàn)淡入淡出的效果
Java代碼

overridePendingTransition(Android.R.anim.fade_in,android.R.anim.fade_out);

由左向右滑入的效果
Java代碼

overridePendingTransition(Android.R.anim.slide_in_left,android.R.anim.slide_out_right);

實(shí)現(xiàn)zoomin和zoomout,即類(lèi)似iphone的進(jìn)入和退出時(shí)的效果
Java代碼

overridePendingTransition(R.anim.zoomin, R.anim.zoomout);

新建zoomin.xml文件

Xml代碼

<?xml version="1.0" encoding="utf-8"?> <set xmlns:Android="http://schemas.android.com/apk/res/android" Android:interpolator="@android:anim/decelerate_interpolator"> <scale Android:fromXScale="2.0" android:toXScale="1.0" Android:fromYScale="2.0" android:toYScale="1.0" Android:pivotX="50%p" android:pivotY="50%p" Android:duration="@android:integer/config_mediumAnimTime" />   </set>

新建zoomout.xml文件

Xml代碼

<?xml version="1.0" encoding="utf-8"?> <set xmlns:Android="http://schemas.android.com/apk/res/android" Android:interpolator="@android:anim/decelerate_interpolator" Android:zAdjustment="top"> <scale Android:fromXScale="1.0" android:toXScale=".5" Android:fromYScale="1.0" android:toYScale=".5" Android:pivotX="50%p" android:pivotY="50%p" Android:duration="@android:integer/config_mediumAnimTime" /> <alpha Android:fromAlpha="1.0" android:toAlpha="0" Android:duration="@android:integer/config_mediumAnimTime"/> <set>

關(guān)于Activity中怎么實(shí)現(xiàn)頁(yè)面切換效果就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI