当前位置:编程学习 > wap >>

调用SAVE

大神们,帮忙看看,怎么储存本页的操作呢?


package com.samples.device.PUKEZYM;

import com.samples.PUKE.component.*;

import net.rim.device.api.system.*;
import net.rim.device.api.ui.component.*;


public class UIExampleSliderScreen extends UIExampleScreen
{
    
    public UIExampleSliderScreen() {
        super( 0 );
        setTitle("Slider Example");
        
        new ButtonField();
        
        LabelField sliderLabel = new LabelField( "Slider. Composed of a background stretched to fit, and a thumb image. Divided into n positions. " );
        sliderLabel.setPadding(5, 5, 5, 5);
        add( sliderLabel );
        
        Bitmap slider_back = Bitmap.getBitmapResource("slider.png");
        Bitmap slider_focus = Bitmap.getBitmapResource("slider_focus.png");
        Bitmap slider_thumb = Bitmap.getBitmapResource("slider_thumb.png");
        SliderField fifthSlider = new SliderField( slider_thumb, slider_back, slider_focus, 8 , 4, 10, 10 );
        fifthSlider.setPadding( 15, 5, 15, 5 );
        add( fifthSlider );

        SliderField sixthSlider = new SliderField( slider_thumb, slider_back, slider_focus, 8 , 4, 10, 10 );
        sixthSlider.setPadding( 15, 5, 15, 5 );
        add( sixthSlider );
    }
} SAVE 黑莓开发保存
补充:移动开发 ,  BlackBerry
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,