android的ViewFlipper

activity_main.xml

<LinearLayout 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"
    android:orientation="vertical"
   >
	
    
    
    <ViewFlipper 
        android:id="@+id/viewFlipper_1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
        
        
        
         <LinearLayout 
        android:id="@+id/linearLayout_1_1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
        <ImageView 
            android:id="@+id/imageView_1_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/kobe0"
            />
    </LinearLayout>
    <LinearLayout
        android:id="@+id/linearayout_2_2" 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        
        >
          <ImageView 
            android:id="@+id/imageView_2_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/kobe1"
            />
    </LinearLayout>
     <LinearLayout
        android:id="@+id/linearayout_3_3" 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        
        >
          <ImageView 
            android:id="@+id/imageView_3_3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/kobe3"
            />
    </LinearLayout>
     <LinearLayout
        android:id="@+id/linearayout_4_4" 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        
        >
          <ImageView 
            android:id="@+id/imageView_4_4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/kobe4"
            />
    </LinearLayout>
    
    </ViewFlipper>
   
   

</LinearLayout>

res/anim/in_leftright.xml

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

	</translate>
    
</set>

res/anim/in_rightleft.xml

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

	</translate>
    
</set>

res/anim/out_leftright.xml

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

	</translate>
    
</set>

res/anim/out_rightleft.xml

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

	</translate>
    
</set>

MainActivity

package com.example.viewflipper;

import android.R.integer;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.widget.ViewFlipper;

public class MainActivity extends Activity {
	private ViewFlipper viewFilpper;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		viewFilpper=(ViewFlipper) findViewById(R.id.viewFlipper_1);
	}
	//重寫觸屏事件監聽方法
	float startx=0.0F;
	float endx=0.0F;
	@Override
	public boolean onTouchEvent(MotionEvent event) {
		// TODO Auto-generated method stub
		int action=event.getAction();
		switch (action) {
		case MotionEvent.ACTION_DOWN:
			startx=event.getX();
			break;
		case MotionEvent.ACTION_UP:
			//向右滑動
			if(event.getX()-startx>10){
				viewFilpper.setInAnimation(this, R.anim.in_leftright);
				viewFilpper.setOutAnimation(this, R.anim.out_leftright);
				viewFilpper.showNext();
			}else if(startx-event.getX()>10){
				viewFilpper.setInAnimation(this, R.anim.in_rightleft);
				viewFilpper.setOutAnimation(this, R.anim.out_rightleft);
				viewFilpper.showPrevious();
			}
			
			break;
		default:
			break;
		}
		return super.onTouchEvent(event);
	}
}

wKiom1hRVeHiJjNTABC_NhHUwJU342.gif-wh_50

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章