adnroid——ViewPager製做APP第一次使用時出現的導航介紹

這個已經不是什麼新技術了。今天本身寫了一次。作個簡單的筆記吧。java

上代碼。android

package com.example.viewpargertest;

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

import android.app.Activity;
import android.content.Intent;
import android.graphics.Color;
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.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {

    private ViewPager myViewPager; //頁卡內容

    private List<View> list; // 存放頁卡

    private TextView dot1,dot2,dot3;    //這些點都是文字

    private Button startButton;                 //按鈕,「開始體驗」



    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);
        initDot();
        initViewPager();
    }

    private void initDot(){
        dot1=(TextView) this.findViewById(R.id.textView1);      //這些點都是文字
        dot2=(TextView) this.findViewById(R.id.textView2);
        dot3=(TextView) this.findViewById(R.id.textView3);
    }

    private void initViewPager(){
        myViewPager=(ViewPager) this.findViewById(R.id.viewPager);
        list=new ArrayList<View>();

        LayoutInflater inflater=getLayoutInflater();

        View view =inflater.inflate(R.layout.lay3, null);       //只是爲了等下findviewbuid而獨立拿出來賦給view

        list.add(inflater.inflate(R.layout.lay1, null));
        list.add(inflater.inflate(R.layout.lay2, null));
        list.add(view);

        myViewPager.setAdapter(new MyPagerAdapter(list));

        myViewPager.setOnPageChangeListener(new MyPagerChangeListener());

        startButton=(Button) view.findViewById(R.id.start);                  //與上面對應,獲取這個按鈕

        startButton.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent intent=new Intent(MainActivity.this,Main.class);

                startActivity(intent);

            }
        });


    }

    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) {
        }
    }

    class MyPagerChangeListener implements OnPageChangeListener{


        @Override
        public void onPageSelected(int arg0) {
            // TODO Auto-generated method stub
            switch (arg0) {                           //設置點的顏色
            case 0:
                dot1.setTextColor(Color.WHITE);
                dot2.setTextColor(Color.BLACK);
                dot3.setTextColor(Color.BLACK);
                break;

            case 1:
                dot1.setTextColor(Color.BLACK);
                dot2.setTextColor(Color.WHITE);
                dot3.setTextColor(Color.BLACK);
                break;

            case 2:
                dot1.setTextColor(Color.BLACK);
                dot2.setTextColor(Color.BLACK);
                dot3.setTextColor(Color.WHITE);
                break;

            }
        }

        @Override
        public void onPageScrollStateChanged(int arg0) {
            // TODO Auto-generated method stub

        }

        @Override
        public void onPageScrolled(int arg0, float arg1, int arg2) {
            // TODO Auto-generated method stub

        }



    }
}

每一個頁面都是一張圖片,在xml定義好幾個file,再把它們都實例化inflater爲view,加入到list中。再把list加到適配器PagerAdapter 中。myViewPager綁定適配器。OK。已經完成了。運行能夠手動滑動轉頁了。segmentfault

再下來就是那幾個導航的點。app

上XML。ide


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/RelativeLayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity" > <android.support.v4.view.ViewPager android:id="@+id/viewPager" android:layout_width="fill_parent" android:layout_height="fill_parent"/> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:layout_marginBottom="72dp" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="." android:textColor="#FFF" android:textSize="100dp" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="." android:textSize="100dp" /> <TextView android:id="@+id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="." android:textSize="100dp" /> </LinearLayout> </RelativeLayout>

這裏我用了RelativeLayout 佈局。目的是爲了使這幾個導航點疊加在頁面圖片的上面。佈局

能夠看到,其實這幾個點都是TextView。ui

myViewPager設置監聽OnPageChangeListener,在頁面變化的時候這幾個TextView變一下顏色就能夠了。在最後一個頁面卡添加多一個按鈕 」開始體驗「。到了最後一個,按一按。就能夠開始個人QQ空間生活咯。完工。this

上圖。spa

請輸入圖片描述

請輸入圖片描述

請輸入圖片描述

這裏用到的圖都是QQ空間客戶端截取下來的。有點就是。官方那幾個導航點居然是圖片來的。不是動態的。~呀~~~~~rest

最後那張圖那個按鈕是我本身加上去的。官方的是繼續向右滑動就進入到主界面。額~這個不知道怎麼實現。求大牛指點

———————————————華麗的分割線——————————————

到此結束。歡迎吐槽。其中這裏用到的PagerAdapter我的還不是很能理解。繼續大牛指點指點嗎。~~~~先繼續研究官方API去咯。

———————————————華麗的分割線——————————————

相關文章
相關標籤/搜索