一、前言
昨天完成了fragment的巢狀使用。
今天學習了android中的動畫的簡單使用,將部分資源進行整合。遇到的困難:整合過程中部分功能無法實現。
明天將目前的資源整合完畢,將發布功能實現。
二、成果展示
三、**
zoom_in.xml
xml version="1.0" encoding="utf-8"view code?>
<
set
xmlns:android
="">
<
rotate
android:duration
="500"
android:fromdegrees
="0"
android:interpolator
="@android:anim/accelerate_decelerate_interpolator"
android:pivotx
="50%"
android:pivoty
="50%"
android:todegrees
="+360"
>
rotate
>
<
scale
android:duration
="500"
android:fromxscale
="0.1"
android:fromyscale
="0.1"
android:interpolator
="@android:anim/accelerate_decelerate_interpolator"
android:pivotx
="50%"
android:pivoty
="50%"
android:toxscale
="1.0"
android:toyscale
="1.0"
>
scale
>
<
alpha
android:duration
="500"
android:fromalpha
="0.1"
android:toalpha
="1.0"
>
alpha
>
set>
zoom_out.xml
xml version="1.0" encoding="utf-8"view code?>
<
set
xmlns:android
="">
<
rotate
android:duration
="500"
android:fromdegrees
="0"
android:interpolator
="@android:anim/accelerate_decelerate_interpolator"
android:pivotx
="50%"
android:pivoty
="50%"
android:todegrees
="-360"
>
rotate
>
<
scale
android:duration
="500"
android:fromxscale
="1.0"
android:fromyscale
="1.0"
android:interpolator
="@android:anim/accelerate_decelerate_interpolator"
android:pivotx
="50%"
android:pivoty
="50%"
android:toxscale
="0"
android:toyscale
="0"
>
scale
>
<
alpha
android:duration
="500"
android:fromalpha
="1.0"
android:toalpha
="0.1"
>
alpha
>
set>
通過以下黃色部分**實現activity跳轉動畫效果
case四、今日團隊鏈結r.id.sign_iv:
startactivity(
new intent(mainactivity.this, sendactivity.class
)); overridependingtransition(r.anim.zoom_in,r.anim.zoom_out);
break;
團隊專案 第一階段衝刺8
說在前面,昨天我完成新增資訊和修改資訊的實現,在新增資訊之前,會獲取當前使用者的使用者id,然後用獲取到的使用者id先去使用者資訊資料表中查詢,如果已存在此使用者的使用者id,那麼當使用者點 擊新增資訊按鈕時,系統會提示使用者已存在,無法新增資訊,如果使用者未新增使用者資訊,點選提 交可以實現新增資...
團隊專案 第一階段衝刺7
說在前面,昨天完成了我的介面的主介面資料展示以及實現了新增資訊和修改密碼的介面展示 以及它們和我的主介面之間的跳轉 今天我完成新增資訊和修改資訊的實現,在新增資訊之前,會獲取當前使用者的使用者id,然後用 獲取到的使用者id先去使用者資訊資料表中查詢,如果已存在此使用者的使用者id,那麼當使用者點選...
團隊開發衝刺第一階段 3
一 昨天的工作 昨天寫了關於截圖區域放大鏡的 遇到的問題就是滑鼠所在的區域不能實際的更新,但是在昨天已經解決。今天寫的是關於截圖區域的縮放,因為在昨天看過有關方面的資料,是在擷取的矩形內設定八個點,因此 也相對來說比較容易實現的。二 今天做過的 截圖區域的縮放 三 明天要做的 明天的計畫是,在擷取的...