最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Insert carousel above Main Screen Behind Slider Control in Kivy - Stack Overflow

programmeradmin1浏览0评论

I am a seasoned VBA coder and have now found the need to convert my Windows OS App I developed in Excel into an Android App... No previous Python or Kivy experience...

Demo

I am about half way through... I am needing to insert a carousel which will house the library for my bottles behind the slider in front of the background image...

I am certain it is a level issue but just can't figure it out... The demo video will give you an idea of what I am trying to accomplish...

<EzLaunchScreen>:     
    name: 'EzLaunch'

    val_text: ToT_label
    slide_text: slider_label

    # This is for the BackGround Image
    canvas.before:
        Rectangle:
            #background_color: 50, 0, 0, 0
            pos: self.pos
            size: self.size
            source: 'Images\launchscreen.png'               
           
   
    BoxLayout:
        orientation: 'vertical'       
        size: root.width, root.height       

    Slider:
        min: 0
        max: 30
        step: .25
        orientation: 'vertical'
        on_value: root.slide_it(*args)

    Widget:
        size_hint: (.05, 0.905)
        pos_hint: {'center_x': 0.50, 'center_y': .490}
        Carousel: 
            direction: 'right'          
            Button:
                Image:
                    source: 'Images\Carousel\Jose-Cuervo.png'
            Button
                Image:
                    source: 'Images\Carousel\Absolut.png'   
          

Trusting for some direction...Any advice will be appreciated...

This is the output I am getting...

Current Output

Thanks guys & gals...

Tried so many variations...

Cross posted HERE

SOLVED-----> HERE

发布评论

评论列表(0)

  1. 暂无评论