欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android 手機(jī)衛(wèi)士實(shí)現(xiàn)平移動(dòng)畫示例

 更新時(shí)間:2016年10月13日 08:51:00   投稿:mrr  
這篇文章主要介紹了Android 手機(jī)衛(wèi)士實(shí)現(xiàn)平移動(dòng)畫的實(shí)例代碼,本文介紹的非常詳細(xì),具有參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)現(xiàn)如下幾個(gè)界面之間的平移動(dòng)畫實(shí)現(xiàn)

分析:

導(dǎo)航界面移動(dòng)過(guò)程中,平移動(dòng)畫

上一頁(yè)移入動(dòng)畫 (-屏幕寬度,y)------>(0,y)

上一頁(yè)移出動(dòng)畫 (0,y)-------------->(屏幕寬度,y)

下一頁(yè)移入動(dòng)畫 (屏幕寬度,y)-------------->(0,y)

下一頁(yè)移出動(dòng)畫 (0,y)-------------->(-屏幕寬度,y)

在res文件夾下新建anima文件夾,在文件夾下新建四個(gè)translate.xml類型的文件

相關(guān)的代碼如下:

pre_in_anim.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- -100%p 負(fù)一屏幕的寬度大小值 -->
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="-100%p"
android:toXDelta="0"
android:duration="500">
</translate>

pre_out_anim.xml

<?xml version="1.0" encoding="utf-8"?>
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0"
android:toXDelta="100%p"
android:duration="500">
</translate>

next_in_anim.xml

<?xml version="1.0" encoding="utf-8"?>
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="100%p"
android:toXDelta="0"
android:duration="500">
</translate>

next_out_anim.xml

<?xml version="1.0" encoding="utf-8"?>
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0"
android:toXDelta="-100%p"
android:duration="500">
</translate>

接著在4個(gè)界面的代碼中的按鈕點(diǎn)擊事件中添加下面的代碼

在prePage按鈕中添加:

overridePendingTransition(R.anim.pre_in_anim, R.anim.pre_out_anim);

在nextPage按鈕中添加:

overridePendingTransition(R.anim.next_in_anim, R.anim.next_out_anim);

以上所述是小編給大家介紹的Android 手機(jī)衛(wèi)士實(shí)現(xiàn)平移動(dòng)畫,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評(píng)論