zoukankan      html  css  js  c++  java
  • android studio ViewPager

    使用示例3:ViewPager实现TabHost的效果:

    当然,示例2很多时候,只是中看不中用,实际开发中我们可能需要自行定制这个标题栏, 下面我们就来写个简单的例子来实现TabHost的效果,如果你不知道TabHost是什么鬼的 话,那么,请看效果图!

    实现逻辑解析

    下面我们来讲解下实现上述效果的逻辑,然后贴代码:

    首先是布局:顶部一个LinearLayout,包着三个TextView,weight属性都为1,然后下面跟着 一个滑块的ImageView,我们设置宽度为match_parent;最底下是我们的ViewPager,这里可能 有两个属性你并不认识,一个是:flipInterval:这个是指定View动画间的时间间隔的!
    而persistentDrawingCache:则是设置控件的绘制缓存策略,可选值有四个:

    • none:不在内存中保存绘图缓存;
    • animation:只保存动画绘图缓存;
    • scrolling:只保存滚动效果绘图缓存;
    • all:所有的绘图缓存都应该保存在内存中;
    可以同时用2个,animation|scrolling这样~

    布局代码:activity_four.xml

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/LinearLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context=".MainActivity">
    
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="48dp"
            android:background="#FFFFFF">
    
            <TextView
                android:id="@+id/tv_one"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1.0"
                android:gravity="center"
                android:text="橘黄"
                android:textColor="#000000" />
    
            <TextView
                android:id="@+id/tv_two"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1.0"
                android:gravity="center"
                android:text="淡黄"
                android:textColor="#000000" />
    
            <TextView
                android:id="@+id/tv_three"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1.0"
                android:gravity="center"
                android:text="浅棕"
                android:textColor="#000000" />
        </LinearLayout>
    
        <ImageView
            android:id="@+id/img_cursor"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:scaleType="matrix"
            android:src="@mipmap/line" />
    
        <android.support.v4.view.ViewPager
            android:id="@+id/vpager_four"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_gravity="center"
            android:layout_weight="1.0"
            android:flipInterval="30"
            android:persistentDrawingCache="animation" />
    
    </LinearLayout>

    接着到我们的Activity了,我们来捋下思路:

    • Step 1:我们需要让我们的移动块在第一个文字下居中,那这里就要算一下偏移量: 先获得图片宽度pw,然后获取屏幕宽度sw,计算方法很简单:
      offset(偏移量) = ((sw / 3)-pw) / 2 //屏幕宽/3 - 图片宽度,然后再除以2,左右嘛!
      然后我么你调用setImageMatrix设置滑块当前的位置:
      同时我们也把切换一页和两页,滑块的移动距离也算出来,很简单:
      one = offset * 2 + pw;
      two = one * 2;

    • Step 2:当我们滑动页面时,我们的滑块要进行移动,我们要为ViewPager添加一个 OnPageChangeListener事件,我们需要对滑动后的页面来做一个判断,同时记录滑动前处于 哪个页面,下面自己画了个图,可能更容易理解吧!

    FourActvitiy.java

    public class FourActivity extends AppCompatActivity implements View.OnClickListener,
            ViewPager.OnPageChangeListener {
    
        private ViewPager vpager_four;
        private ImageView img_cursor;
        private TextView tv_one;
        private TextView tv_two;
        private TextView tv_three;
    
        private ArrayList<View> listViews;
        private int offset = 0;//移动条图片的偏移量
        private int currIndex = 0;//当前页面的编号
        private int bmpWidth;// 移动条图片的长度
        private int one = 0; //移动条滑动一页的距离
        private int two = 0; //滑动条移动两页的距离
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_four);
            initViews();
        }
    
    
        private void initViews() {
            vpager_four = (ViewPager) findViewById(R.id.vpager_four);
            tv_one = (TextView) findViewById(R.id.tv_one);
            tv_two = (TextView) findViewById(R.id.tv_two);
            tv_three = (TextView) findViewById(R.id.tv_three);
            img_cursor = (ImageView) findViewById(R.id.img_cursor);
    
            //下划线动画的相关设置:
            bmpWidth = BitmapFactory.decodeResource(getResources(), R.mipmap.line).getWidth();// 获取图片宽度
            DisplayMetrics dm = new DisplayMetrics();
            getWindowManager().getDefaultDisplay().getMetrics(dm);
            int screenW = dm.widthPixels;// 获取分辨率宽度
            offset = (screenW / 3 - bmpWidth) / 2;// 计算偏移量
            Matrix matrix = new Matrix();
            matrix.postTranslate(offset, 0);
            img_cursor.setImageMatrix(matrix);// 设置动画初始位置
            //移动的距离
            one = offset * 2 + bmpWidth;// 移动一页的偏移量,比如1->2,或者2->3
            two = one * 2;// 移动两页的偏移量,比如1直接跳3
    
    
            //往ViewPager填充View,同时设置点击事件与页面切换事件
            listViews = new ArrayList<View>();
            LayoutInflater mInflater = getLayoutInflater();
            listViews.add(mInflater.inflate(R.layout.view_one, null, false));
            listViews.add(mInflater.inflate(R.layout.view_two, null, false));
            listViews.add(mInflater.inflate(R.layout.view_three, null, false));
            vpager_four.setAdapter(new MyPagerAdapter(listViews));
            vpager_four.setCurrentItem(0);          //设置ViewPager当前页,从0开始算
    
            tv_one.setOnClickListener(this);
            tv_two.setOnClickListener(this);
            tv_three.setOnClickListener(this);
    
            vpager_four.addOnPageChangeListener(this);
        }
    
        @Override
        public void onClick(View v) {
            switch (v.getId()) {
                case R.id.tv_one:
                    vpager_four.setCurrentItem(0);
                    break;
                case R.id.tv_two:
                    vpager_four.setCurrentItem(1);
                    break;case R.id.tv_three:
                    vpager_four.setCurrentItem(2);break;}}@Overridepublicvoid onPageSelected(int index){Animation animation =null;switch(index){case0:if(currIndex ==1){
                        animation =newTranslateAnimation(one,0,0,0);}elseif(currIndex ==2){
                        animation =newTranslateAnimation(two,0,0,0);}break;case1:if(currIndex ==0){
                        animation =newTranslateAnimation(offset, one,0,0);}elseif(currIndex ==2){
                        animation =newTranslateAnimation(two, one,0,0);}break;case2:if(currIndex ==0){
                        animation =newTranslateAnimation(offset, two,0,0);}elseif(currIndex ==1){
                        animation =newTranslateAnimation(one, two,0,0);}break;}
            currIndex = index;
            animation.setFillAfter(true);// true表示图片停在动画结束位置
            animation.setDuration(300);//设置动画时间为300毫秒
            img_cursor.startAnimation(animation);//开始动画}@Overridepublicvoid onPageScrollStateChanged(int i){}@Overridepublicvoid onPageScrolled(int i,float v,int i1){}}
     
  • 相关阅读:
    递归
    最简单的基于FFMPEG的音频编码器(PCM编码为AAC)
    最简单的基于FFMPEG的封装格式转换器(无编解码)
    最简单的基于FFMPEG的图像编码器(YUV编码为JPEG)
    视频主观质量评价工具:MSU Perceptual Video Quality tool
    ffmbc——为广播电视以及专业用途量身定制的FFmpeg
    方便使用FFMPEG的经验
    OpenCV提取显示一张图片(或者视频)的R,G,B颜色分量
    avcodec_decode_video2()解码视频后丢帧的问题解决
    HEVC,VP9,x264性能对比
  • 原文地址:https://www.cnblogs.com/mjhjl/p/14902337.html
Copyright © 2011-2022 走看看