美文网首页Android Demo
仿慕课APP的导航栏指示器

仿慕课APP的导航栏指示器

作者: 飞奔吧牛牛 | 来源:发表于2019-12-09 13:41 被阅读0次
仿慕课APP的导航栏指示器

分析:一条线段,在标题之间移动,移动到两个标题中间时长度最长,反之,移动到标题正下方时最短。也就是说,该线段在水平位移的同时,长度也随之变化,接近左边标题时,长度与位移成正相关,接近右边标题时,长度与位移成负相关。这本质上是两个二元一次方程,求系数和常数项的问题。起点终点都有值,可解。


import android.content.Context;
import android.graphics.Color;
import android.util.AttributeSet;
import android.util.Log;
import android.util.SparseArray;
import android.util.SparseIntArray;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.widget.LinearLayout;
import android.widget.TextView;

import androidx.viewpager.widget.ViewPager;

import com.sony.dtv.moocnavbar.R;

import java.util.List;

public class MoocNavBar extends LinearLayout {

    private List<String> titles;
    private Context context;
    private View indictor;
    private SparseIntArray toLeftMap = new SparseIntArray();//title到left的距离
    private int defaultPos = 0; //默认pos
    private int minW = 15;  //指示器的最小width

    public MoocNavBar(Context context) {
        this(context, null);
    }

    public MoocNavBar(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public MoocNavBar(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        this.context = context;
        setOrientation(VERTICAL);
    }

    public void setTitle(List<String> title) {
        this.titles = title;
        //titles
        LinearLayout titleContainer = new LinearLayout(context);
        titleContainer.setOrientation(HORIZONTAL);
        LayoutParams titleLP = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
        titleContainer.setLayoutParams(titleLP);
        fillTitle(titleContainer, title);
        addView(titleContainer);
        //indictor
        indictor = new View(context);
        LinearLayout.LayoutParams indictorLP = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
        indictorLP.bottomMargin = 10;
        indictorLP.width = minW;
        indictorLP.height = 6;
        indictor.setLayoutParams(indictorLP);
        indictor.setBackgroundResource(R.drawable.nav_indictor_bg);
        addView(indictor);
    }

    private void fillTitle(final LinearLayout titleContainer, List<String> titles) {
        for (int i = 0; i < titles.size(); i++) {
            String s = titles.get(i);
            final TextView titleItemView = new TextView(context);
            LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
            titleItemView.setLayoutParams(params);
            titleItemView.setText(s);
            titleItemView.setTextColor(Color.BLACK);
            titleItemView.setPadding(30, 10, 30, 10);
            final int finalI = i;
            titleItemView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout() {
                    titleItemView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
                    int left = titleItemView.getWidth() / 2 + titleItemView.getLeft();
                    Log.e("TAG", finalI + " : " + left);
                    toLeftMap.append(finalI, left);
                    if (finalI == defaultPos) {
                        //
                        moveIndictor(finalI, 0);
                    }
                }
            });
            titleContainer.addView(titleItemView);
        }
    }

    public void setViewPager(ViewPager viewPager) {
        viewPager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
            @Override
            public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
                moveIndictor(position, positionOffset);
            }
        });
    }

    //根据页面切换过程,改变指示器位置和大小
    private void moveIndictor(int position, float positionOffset) {
        //在某两个page之间滑动时,获取对应的两个title的中点位置
        int l1 = toLeftMap.get(position);
        int l2 = toLeftMap.get(position + 1);
        //两点间距
        int datL = l2 - l1;
        //指示器中点应该在哪个位置
        int middle = (int) (l1 + datL * positionOffset);
        //指示器宽度最大值
        int maxW = datL / 3 * 2;
        //指示器最大最小值差距
        int datW = maxW - minW;
        //实际宽度
        int realW;
        if (positionOffset <= 0.5) {
            realW = (int) (minW + 2 * positionOffset * datW);
        } else {
            realW = (int) (minW + (1 - positionOffset) * 2 * datW);
        }
        //设置左右位置
        indictor.setLeft(middle - realW / 2);
        indictor.setRight(middle + realW / 2);
    }

}

相关文章

  • 仿慕课APP的导航栏指示器

    分析:一条线段,在标题之间移动,移动到两个标题中间时长度最长,反之,移动到标题正下方时最短。也就是说,该线段在水平...

  • 微信小程序:自定义可滑动导航栏

    app一般会有这样的导航栏,标题下的指示器(横线)会随着页面的移动而移动。 最近要做一个小程序,也需要一个导航栏,...

  • Flutter学习笔记--仿闲鱼底部导航栏带有中间凸起图标

    霸图镇楼 仿闲鱼底部导航栏带有中间凸起图标 需求情景: 需要实现一个类似闲鱼APP的底部导航栏的实现 Demo地...

  • Android

    顶部导航栏 仿京东搜索 顶部导航栏 今日头条导航栏 导航栏快速实现 瀑布流 搜索框带历史记录 tablayout ...

  • Tailwind Navbar

    导航栏 PC导航栏仿Airbnb导航条 PC导航条添加图标 PC导航条上图下字 移动端导航条

  • BottomNavigationView的属性设置

    底部导航栏 底部导航栏的使用比较常见,目前常用的APP几乎都是使用底部导航栏将内容分类。底部导航栏的实现也比较简单...

  • iOS自定义导航栏-导航栏联动(二)

    iOS自定义导航栏-导航栏联动(一)iOS自定义导航栏-导航栏联动(二) 前言 最近通过对一些APP的观察发现,现...

  • iOS自定义导航栏-导航栏联动(一)

    iOS自定义导航栏-导航栏联动(一)iOS自定义导航栏-导航栏联动(二) 前言 最近通过对一些APP的观察发现,现...

  • 使用 TabLayout 制作底部导航栏

    国内大部分应用使用底部导航栏, 底部导航栏 是国内 APP 常见的导航方式, 历经: TabActivity -...

  • Android 常用开源框架

    1、沉侵式状态栏和导航栏栏2、滑动返回3、复杂布局4、banner5、自定义TabLayout,指示器和文本宽度一...

网友评论

    本文标题:仿慕课APP的导航栏指示器

    本文链接:https://www.haomeiwen.com/subject/bezcgctx.html