0
我試圖實現的是在背景圖像上淡入/淡出動畫。列表滾動動畫背景
我有這樣一個活動:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".DayOverview"
xmlns:app="http://schemas.android.com/apk/lib/com.google.ads" >
<ImageView
android:id="@+id/dayOverviewBg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/bg_home" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_alignParentLeft="true" >
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dayOverview_pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginTop="@dimen/px40"
android:layout_marginRight="@dimen/px20"
android:layout_marginLeft="@dimen/px20" />
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/dayOverviewAd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:adSize="SMART_BANNER"
app:adUnitId="xx-xxx-x...xxxxxxxxx" />
</LinearLayout>
</FrameLayout>
,爲ViewPager
片段的每一頁有ListView
,我要的是改變在活動圖像時ListView控件滾動了淡入淡出效果。
我四處尋找這樣的東西,但我能找到的就是如何在android的主屏幕上製作類似parallax effect
的東西。
好,我會試一試,看看它是什麼,我需要:) – Ayoub
當滾動停止時,我仍然無法停止轉換,如何計算動畫的持續時間? – Ayoub
您已經在'startTransition(int duration)'方法中明確提供了動畫持續時間。您是否不斷嘗試更新背景或僅在滾動停止時進行更新? – Saket