`

BlackBerry Slider

阅读更多

由于BB项目需要,特定制了Sliderbar,BB上没有这个组件,所以只能自己动手。 请看代码 : Java代码 package

  1. package cc.mdev.seek;   
      
    import net.rim.device.api.math.Fixed32;   
    import net.rim.device.api.system.EncodedImage;   
    import net.rim.device.api.ui.Field;   
    import net.rim.device.api.ui.Graphics;   
    import net.rim.device.api.ui.TouchEvent;   
    import net.rim.device.api.ui.TouchGesture;   
    import net.rim.device.api.ui.component.BitmapField;   
    import net.rim.device.api.ui.component.GaugeField;   
    import net.rim.device.api.ui.container.HorizontalFieldManager;   
      
    /**  
     * Seekbar 可以拖动  
     *   
     * @author Wang XinFeng  
     * @site http://mdev.cc  
     *   
     */  
    public class SeekBar2 extends Field {   
        /**  
         * 水平滑動  
         */  
        public static int HORIZONTAL_SLIDE = 0;   
      
        /**  
         * 垂直滑動  
         */  
        public static int VERTICAL_SLIDE = 1;   
      
        /**  
         * 背景图片  
         */  
        private EncodedImage background;   
      
        /**  
         * 整个Field的高宽度  
         */  
        private int width;   
        /**  
         * 整个Field的高度  
         */  
        private int height;   
      
        /**  
         * 可以拖动的Image  
         */  
        private EncodedImage barImage = null;   
      
        /**  
         * x,y的坐标点  
         */  
        private int x = 0, y = 0;   
      
        /**  
         * 拖动时候的监听器  
         */  
        private OnSlideListener listener = null;   
      
        /**  
         * 刻度的最大值  
         */  
        private int maxValue;   
      
        /**  
         * Seekbar  
         *   
         * @param width  
         *            宽度  
         * @param maxValue 刻度最大值  
         * @param barImage  
         *            可拖动的图片  
         * @param background  
         *            背景  
         * @param listener  
         *            监听器  
         */  
        public SeekBar2(int width,int maxValue,EncodedImage barImage, EncodedImage background,   
                OnSlideListener listener) {   
            this(width, maxValue,barImage, background);   
            this.listener = listener;   
        }   
      
        /**  
         *   
         * @param width  
         *            宽度  
         *    @param maxValue 刻度最大值  
         * @param barImage  
         *            可拖动的图片  
         * @param slideStlye  
         *            滑动方式 垂直或者水平  
         * @param background  
         *            背景  
         */  
        public SeekBar2(int width,int maxValue, EncodedImage barImage, EncodedImage background) {   
            super(FOCUSABLE);   
            this.width = width;   
            this.height = barImage.getHeight();   
            this.background = background.scaleImage32(Fixed32.div(background   
                    .getWidth(), width + barImage.getWidth()), Fixed32.div(   
                    background.getHeight(), height));   
            this.barImage = barImage;   
            this.maxValue = maxValue;   
        }   
           
        public int getCurrentValue(){   
            return(this.x)/(width/maxValue);   
        }   
           
        /**  
         * 设置滑动监听器  
         *   
         * @param listener  
         */  
        public void setOnSlideListener(OnSlideListener listener) {   
            this.listener = listener;   
        }   
      
        protected void layout(int width, int height) {   
            setExtent(this.background.getWidth(), this.height);   
        }   
      
        protected void paint(Graphics graphics) {   
      
            graphics.drawImage(x, 0, width, height, barImage, 0, 0, 0);   
        }   
      
        protected void paintBackground(Graphics arg0) {   
            arg0.drawImage(getPaddingLeft(), getPaddingTop(), this.background   
                    .getWidth(), height, background, 0, 0, 0);   
        }   
      
        protected boolean touchEvent(TouchEvent message) {   
            int e = message.getEvent();   
            // 聚焦时候点击处理   
            if (e == TouchEvent.CLICK && isFocus()) {   
                this.x = message.getX(1);   
                if (listener != null) {   
                    listener.onStart();   
                }   
                if (this.x > this.width) {   
                    this.x = width;   
                }   
      
                if (this.x < 0) {   
                    this.x = 0;   
                }   
                System.out.println("SeekBar2.touchEvent()Click x is :" + this.x);   
                System.out.println("SeekBar2.touchEvent()getCurrentValue is :" + getCurrentValue());   
                this.invalidate();   
                return true;   
            }   
            // 聚焦时候弹起处理   
            if (e == TouchEvent.UP && isFocus()) {   
                if (listener != null) {   
                    listener.onEnd();   
                }   
                return true;   
            }   
      
            // 聚焦时候移动处理   
            if (e == TouchEvent.MOVE && isFocus()) {   
                int x2 = message.getX(1);   
                this.x=x2;   
                if (this.x > this.width) {   
                    this.x = width;   
                }   
                if (this.x < 0) {   
                    this.x = 0;   
                }   
                System.out.println("SeekBar2.touchEvent()MOVE x is :" + this.x);   
                System.out.println("SeekBar2.touchEvent()getCurrentValue is :" + getCurrentValue());   
                this.invalidate();   
                if (listener != null) {   
                    listener.onSlide();   
                }   
                return true;   
            }   
            return false;   
        }   
      
        public static int RGB2HEX(int r, int g, int b) {   
            return r << 16 | g << 8 << b;   
        }   
      
        // 禁用此方法,不讓系統畫出焦點   
        protected void drawFocus(Graphics graphics, boolean on) {   
      
        }   
      
        /**  
         * 滑动监听器  
         *   
         * @author Wang XinFeng  
         *   
         */  
        public static interface OnSlideListener {   
      
            /**  
             * 开始滑动  
             */  
            public void onStart();   
      
            /**  
             * 滑动中  
             */  
            public void onSlide();   
      
            /**  
             * 滑动结束  
             */  
            public void onEnd();   
        }   
    }  
    
     
分享到:
评论

相关推荐

    zepto手机库

    - **跨平台**: Zepto支持多种现代浏览器,包括iOS、Android、BlackBerry等手机浏览器,以及桌面端的Chrome、Firefox、Safari等。 - **API兼容**: Zepto的设计目标是与jQuery保持高度API兼容,使得熟悉jQuery的...

    Zepto-Slide:移动的Zepto滑块

    2. **跨平台兼容**:支持 iOS、Android、Blackberry 等主流移动浏览器。 3. **模块化设计**:通过模块插件扩展功能,如 AJAX、触摸事件等,按需加载,进一步减小体积。 4. **高性能**:利用 CSS3 动画和事件委托来...

    mobiscroll.js和css

    - **跨平台**:支持多种平台,包括 iOS, Android, Windows Phone, Blackberry, Firefox OS, Tizen 等。 - **高度可定制**:用户可以根据需求调整样式、语言、日期格式、事件处理等。 2. **安装与引入** - **文件...

    jQueryMobile HTML5开发框架 v1.5.0 rc1.zip

    这个框架使得开发者能够创建跨平台、响应式且触控友好的 Web 应用程序,支持多种智能手机和平板电脑,如 iOS、Android、Blackberry 和 Windows Phone 等。 在“jQueryMobile HTML5开发框架 v1.5.0 rc1.zip”中,...

    jquery-mobile

    - **1.1版**:这一版本主要关注性能优化和新功能的添加,比如对多页布局的支持更好,引入了更灵活的页面结构,以及更多的组件,如滑块(slider)、网格(grid)和下拉菜单(selectmenu)。同时,修复了一些已知的...

    jquerymobil

    - 窗口小部件:包括页头(header)、页脚(footer)、内容区域(content)、工具栏(toolbar)、按钮(button)、分页(pager)、表单(forms)、滑块(slider)、多选框(checkbox)、单选框(radio button)、...

    jQwidgets 3.6.0

    styles/jqx.blackberry.css: Stylesheet for the Blackberry Theme styles/jqx.android.css: Stylesheet for the Android Theme styles/jqx.mobile.css: Stylesheet for the Mobile Theme styles/jqx.windowsphone....

    详细介绍8款超实用JavaScript框架

    Swipe是一个纯粹的触摸Slider库,它支持1:1的触摸移动、阻力以及防滑。也就是说,用户拖动元素时,元素的移动速度与手指的移动速度保持一致,当手指离开屏幕后,元素由于惯性还会继续移动一段距离,然后慢慢停止。...

Global site tag (gtag.js) - Google Analytics