a梦幻星空z 2015-01-23 11:19 采纳率: 0%
浏览 1527

有CCScrollView滚动视图中添加滚动条示例

就像手机QQ或者微信聊天界面似的左边那条滚动条,当你滑动页面的时候滚动条就显示在当前文本的具体位置,不滑动的时候滚动条就消失,滚动条还随着文本内容的多少而发生长短变化

  • 写回答

2条回答 默认 最新

  • shiter 人工智能领域优质创作者 2015-01-23 14:14
    关注
     class CCBarScrollView:public ScrollView
    {
    public:
        static CCBarScrollView* create(Size size, Node* container = NULL);
        static CCBarScrollView* create();
    
    
    
        using Node::addChild;
        void setBarImage(Scale9Sprite* barBg,Scale9Sprite* barImage);
        virtual void addChild(Node * child, int zOrder, int tag) override;
    
    
        void setContentOffset(Point offset, bool animated = false);
    
        void setAutoHidden(bool autoHidden); //设置是否自动隐藏
    
        virtual bool onTouchBegan(Touch *touch, Event *event);
        virtual void onTouchEnded(Touch *touch, Event *event);
    protected:
    
        void deaccelerateScrolling(float dt);
        void updateBarPos();
        Scale9Sprite* barBg;       //滚动条背景
        Scale9Sprite* barImage;    //滚动条
        bool isAutoHidden;         //滚动条是否自动隐藏
    };
    
    
    
    
    设置滚动条背景和滚动条
    void CCBarScrollView::setBarImage(Scale9Sprite* barBg, Scale9Sprite* barImage)
    {
    
        Size contentSize = this->getContentSize();
        auto layer1 = LayerColor::create(Color4B(255, 0, 255, 255), contentSize.width, contentSize.height);
        layer1->setCascadeColorEnabled(false);
        layer1->setPosition( Point(0, 0));
        this->addChild(layer1);
    
        Size viewSize = this->getViewSize();
    
        this->barBg = barBg;
    
        this->barBg->setContentSize(Size(20,viewSize.height));
        this->barBg->setPosition(Point(viewSize.width - 10,viewSize.height/2));
        this->barImage = barImage;
        Layer::addChild(this->barBg);
        Layer::addChild(this->barImage);
    
        this->barImage->setContentSize(Size(20,viewSize.height*(viewSize.height/contentSize.height)));
    
        this->updateBarPos();
    }
    
    
    
    
    设置滚动条是否自动隐藏
    
    void CCBarScrollView::setAutoHidden(bool autoHidden)
    {
        this->isAutoHidden = autoHidden;
    
        if(this->barImage != nullptr && this->isAutoHidden == true)
        {
            this->barImage->setVisible(false);
        }
    }
    
    

    这段代码是否可以实现?

    评论

报告相同问题?

悬赏问题

  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示