2

Google PlayニューススタンドアプリCollapsingToolbarLayoutのように複数の画像を定期的に回転させたい

そのアプリの 3 つのスクリーンショットをここにアップロードしました: 最初 2 番目 3 番目

CollapsingToolbarLayout以下のコードを使用して作成しました。

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

        <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/detail_backdrop_height"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" >

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleMarginStart="48dp" >

                <ImageView
                    android:id="@+id/image"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    app:layout_collapseMode="parallax"
                    android:fitsSystemWindows="true"
                    android:scaleType="centerCrop"
                    android:src="@drawable/image" />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

内部で定期的に(特定の間隔の後)画像を変更する方法はCollapsingToolbarLayout

注: 画像を変更しながらImageViewでアニメーションを作成するには、こちらをご覧ください

4

1 に答える 1

3
  1. ImageViewusingへの参照を取得するfindViewById()
  2. Runnableに表示される画像を更新するが必要です。ImageView
  3. HanlderpostDelayed()のメソッドを使用して、コードを定期的に実行できますRunnable

    final Handler handler = new Handler();   
    final Runnable runnable = new Runnable() {
    
        @Override   
        public void run() {   
            //TODO: update image here   
            handler.postDelayed(this, INTERVAL);   
        }   
    }   
    handler.postDelayed(runnable, INTERVAL);
    
于 2015-09-13T13:34:11.943 に答える