Git Product home page Git Product logo

Comments (3)

Carbs0126 avatar Carbs0126 commented on July 2, 2024

你好,你的意思是不是整个范围都变化?而不是到了一定程度后(即变化到normalsize后),就不变了。
现在的设定是:normalTextsize 和 selectedSize 之间的过渡变化的距离是一个单元,你是想让其显示的区域的textsize都在变化?
当前的做法是在onDraw的时候,在drawContent中判断当前中间点上的item以及此item上下的两个item的位置,然后根据位置调整颜色变化和字体大小,不再判断除此之外的item的字体大小,如果想要调整成整个范围的,可以在drawContent函数中分别计算所有显示出来的item的位置偏移,从而计算出对应的字体大小和颜色

from numberpickerview.

yacyet avatar yacyet commented on July 2, 2024

对,就是未选择的条目离中心越远,textsize越小。现在你的实现是未被选择的字体大小都一样。
行,我尝试改一下,看一下效果咋样。
谢啦

from numberpickerview.

Carbs0126 avatar Carbs0126 commented on July 2, 2024

不客气,现在此view的大体思路就是根据每个item的高度,计算当前显示区域的所有可能看到的各个item的左上角坐标位置,这样就可以求得写文字的位置了。
在drawcontent()中的for循环中绘制每一个可能看得到的item,一般是可显示数目+1

if(i == mShowCount / 2){//this will be picked
                fraction = (float)(mItemHeight + mCurrDrawFirstItemY) / mItemHeight;
                textColor = getEvaluateColor(fraction, mTextColorNormal, mTextColorSelected);
                textSize = getEvaluateSize(fraction, mTextSizeNormal, mTextSizeSelected);
                textSizeCenterYOffset = getEvaluateSize(fraction, mTextSizeNormalCenterYOffset,
                        mTextSizeSelectedCenterYOffset);
            }else if(i == mShowCount / 2 + 1){
                textColor = getEvaluateColor(1 - fraction, mTextColorNormal, mTextColorSelected);
                textSize = getEvaluateSize(1 - fraction, mTextSizeNormal, mTextSizeSelected);
                textSizeCenterYOffset = getEvaluateSize(1 - fraction, mTextSizeNormalCenterYOffset,
                        mTextSizeSelectedCenterYOffset);
            }else{
                textColor = mTextColorNormal;
                textSize = mTextSizeNormal;
                textSizeCenterYOffset = mTextSizeNormalCenterYOffset;
            }

else是除去中间item以及紧邻中间item的上下item以外的

from numberpickerview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.