android開發實例-ViewPager

以前看到的一些切換頁面採用的方法是重寫onScroll()方法,人工獲取手勢操做,好比滑動的方向速度等等以此來判斷頁面切換的方向。這個例子主要是採用ViewPager的方法在同一個activity裏切換頁面。java

1.主界面的佈局文件main.xmlandroid

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:umadsdk="http://schemas.android.com/apk/res/com.LoveBus"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#FFFFFF" >

        <TextView
            android:id="@+id/text1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1.0"
            android:gravity="center"
            android:text="編輯"
            android:textColor="#000000"
            android:textSize="22.0dip" />

        <TextView
            android:id="@+id/text2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1.0"
            android:gravity="center"
            android:text="內容"
            android:textColor="#000000"
            android:textSize="22.0dip" />


       
    </LinearLayout>

    <ImageView
        android:id="@+id/cursor"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scaleType="matrix"
        android:src="@drawable/a" />

    <android.support.v4.view.ViewPager
        android:id="@+id/vPager"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1.0"
        android:background="#000000"
        android:flipInterval="30"
        android:persistentDrawingCache="animation" />

</LinearLayout>
View Code

 


2.ListActivity.javajson

package com.demo;

import java.util.ArrayList;
import java.util.List;

import android.app.Activity;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.os.Bundle;
import android.os.Parcelable;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPager.OnPageChangeListener;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.TranslateAnimation;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;

/**
 * Tab頁面手勢滑動切換以及動畫效果
 * 
 * @author D.Winter
 * 
 */
public class ListActivity extends Activity {
	// ViewPager是google SDk中自帶的一個附加包的一個類,能夠用來實現屏幕間的切換。
	// android-support-v4.jar
	private ViewPager mPager;//頁卡內容
	private List<View> listViews; // Tab頁面列表
	private ImageView cursor;// 動畫圖片
	private TextView t1, t2;// 頁卡頭標
	private int offset = 0;// 動畫圖片偏移量
	private int currIndex = 0;// 當前頁卡編號
	private int bmpW;// 動畫圖片寬度
private EditText title;
private Button save;
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		
		InitImageView();	/* 初始化動畫*/
		InitTextView(); // 初始化頭標
		InitViewPager();

	}

	/**
	 * 初始化頭標
	 */
	private void InitTextView() {
		t1 = (TextView) findViewById(R.id.text1);
		t1.setText("新建");
		t2 = (TextView) findViewById(R.id.text2);
		t2.setText("列表");

		t1.setOnClickListener(new MyOnClickListener(0));
		t2.setOnClickListener(new MyOnClickListener(1));
		
	}
	
	/**
	 * 初始化ViewPager
	 */
	private void InitViewPager() {
		mPager = (ViewPager) findViewById(R.id.vPager);
		listViews = new ArrayList<View>();
		LayoutInflater mInflater = getLayoutInflater();
		listViews.add(mInflater.inflate(R.layout.lay1, null));
		listViews.add(mInflater.inflate(R.layout.lay2, null));
		//listViews.add(mInflater.inflate(R.layout.lay3, null));
		mPager.setAdapter(new MyPagerAdapter(listViews));
		mPager.setCurrentItem(0);//初始頁面爲第一個頁面
		mPager.setOnPageChangeListener(new MyOnPageChangeListener());//添加頁面滑動切換動畫監聽事件
	}

	/**
	 * 初始化動畫
	 * 標題欄下面的小光標的切換動畫
	 *要添加MyOnPageChangeListener事件,小光標才能隨之切換
	 */
	private void InitImageView() {
		cursor = (ImageView) findViewById(R.id.cursor);
		bmpW = BitmapFactory.decodeResource(getResources(), R.drawable.a)
				.getWidth();// 獲取圖片寬度
		DisplayMetrics dm = new DisplayMetrics();
		getWindowManager().getDefaultDisplay().getMetrics(dm);
		int screenW = dm.widthPixels;// 獲取分辨率寬度
		offset = (screenW / 2 - bmpW) / 2;// 計算偏移量
		Log.i("wxpDeb", "屏幕寬度:"+screenW+"圖片寬度:"+String.valueOf(bmpW)+"  偏移量:"+String.valueOf(offset));
		Matrix matrix = new Matrix();
		matrix.postTranslate(offset, 0);
		cursor.setImageMatrix(matrix);// 設置動畫初始位置
	}

	
	
	/**
	 * 頭標點擊監聽
	 */
	public class MyOnClickListener implements View.OnClickListener {
		private int index = 0;
//這是爲標題欄添加點擊事件,設置當前頁面爲index
		//至關於點擊切換頁面
		//注意和下面的MyOnPageChangeListener比較
		public MyOnClickListener(int i) {
			index = i;
		}

	
		public void onClick(View v) {
		
			mPager.setCurrentItem(index);
			

		}
	};
	

	/**
	 * 頁卡切換監聽
	 */
	public class MyOnPageChangeListener implements OnPageChangeListener {
/*這尼瑪實際上就是爲了給小光標添加動畫啊,若是viewpager不添加這個事件照樣能夠切換可是光標卻不滑動,
		也就是不能    顯示    出當前究竟是那個頁面,或許能夠換別的方法提示當前頁面*/
		int one = offset * 2 + bmpW;// 頁卡1 -> 頁卡2 偏移量,bmpw爲圖片寬度,offset爲偏移量
		int two = one * 2;// 頁卡1 -> 頁卡2 偏移量
  
	
		public void onPageSelected(int arg0) {
			Log.w("wxpDeb","one:"+one+";two:"+two+";offset:"+offset);
			Animation animation = null;
			switch (arg0) {
			case 0:
				if (currIndex == 1) {
					animation = new TranslateAnimation(one, 0, 0, 0);
//public TranslateAnimation (float fromXDelta, float toXDelta, float fromYDelta, float toYDelta) 
					//來看看這個構造方法 第一個參數是x的起始位置,第二個參數是x的終止位置
					//假設selected爲第一個頁面,若是當前頁面爲一,表示從one的
				} 
//				else if (currIndex == 2) {
//					animation = new TranslateAnimation(two, 0, 0, 0);
//
//				}//若是有三個頁面時,這段話就要填上去
				Log.w("wxpDeb","arg0爲0時,"+"currIndex:"+currIndex);
				break;
			case 1:
				if (currIndex == 0) {
					animation = new TranslateAnimation(offset, one, 0, 0);
				}
//				else if (currIndex == 2) {
//					animation = new TranslateAnimation(two, one, 0, 0);
//				}//同上
				Log.w("wxpDeb","arg0爲1時,"+"currIndex:"+currIndex);
				break;
				
			}
			currIndex = arg0;//意味選擇哪一個,即設置當前爲哪一個
			Log.w("wxpDeb","currIndex:"+currIndex);
			animation.setFillAfter(true);// True:圖片停在動畫結束位置
			animation.setDuration(300);//這個duration時間是指光標滑動的持續時間
		
			cursor.startAnimation(animation);
			//此處表名小光標的切換動畫並非和頁面切換綁定,
			//(若是不添加MyOnPageChangeListener,點擊標題欄也可切換頁面,可是小光標並不移動)
			//而是和滑動切換事件綁定
		}

	
		public void onPageScrolled(int arg0, float arg1, int arg2) {
		}

		public void onPageScrollStateChanged(int arg0) {
		}
	}
	/**
	 * ViewPager適配器
	 */
	public class MyPagerAdapter extends PagerAdapter {
		public List<View> mListViews;

		public MyPagerAdapter(List<View> mListViews) {
			this.mListViews = mListViews;
		}

		@Override
		public void destroyItem(View arg0, int arg1, Object arg2) {
			((ViewPager) arg0).removeView(mListViews.get(arg1));
		}

		@Override
		public void finishUpdate(View arg0) {
		}

		@Override
		public int getCount() {
			return mListViews.size();
		}

		@Override
		public Object instantiateItem(View arg0, int arg1) {
			((ViewPager) arg0).addView(mListViews.get(arg1), 0);
			return mListViews.get(arg1);
		}

		@Override
		public boolean isViewFromObject(View arg0, Object arg1) {
			return arg0 == (arg1);
		}

		@Override
		public void restoreState(Parcelable arg0, ClassLoader arg1) {
		}

		@Override
		public Parcelable saveState() {
			return null;
		}

		@Override
		public void startUpdate(View arg0) {
		}
	}

	

}

 

3.能夠在各個頁面裏面添加新的佈局文件
  這裏第一個頁面是lay1.xmlapp

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="#158684" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
        android:background="#EEEEEE">

    

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:orientation="horizontal">

    <Button
        android:id="@+id/save"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:background="#3399FF"
        android:text="保存" />

    </LinearLayout>


        <EditText
            android:id="@+id/title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ems="10"
               android:text="new"
           >

        <requestFocus />
    </EditText>
    

    <EditText
        
        android:id="@+id/editcontent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:ems="10"
         android:text=""
            android:gravity="top"  />
   
</LinearLayout>
</LinearLayout>
View Code

第二個頁面是lay2.xmlide

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="#1586FF" >
    
<LinearLayout 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
        android:background="#EEEEEE"
        >
    

    <Button
        android:id="@+id/json"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:background="#3399FF"
        android:text="新建筆記" />

    <ListView
        android:id="@+id/listView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
         android:cacheColorHint="#00000000" >
    </ListView>
</LinearLayout>
</LinearLayout>
View Code

忘了。附圖:佈局

貌似註釋寫的有點渣渣嘛。。。睡覺去了。明天安心看書。post

相關文章
相關標籤/搜索