我在黑莓屏幕上使用 ButtonField 创建了一个播放按钮,如果单击该按钮,我可以播放我的音频文件。
我的要求是创建音量控制搜索栏(如果我们拖动搜索栏,我们应该能够增加或减少音量)和黑莓屏幕上的播放/暂停按钮(播放/暂停按钮应该放在搜索栏旁边)
这是我的代码:
HorizontalFieldManager hfmSecond = new HorizontalFieldManager();
slider = new SliderField(
Bitmap.getBitmapResource( "slider_thumb_normal.png" ),
Bitmap.getBitmapResource( "slider_progress_normal.png" ),
Bitmap.getBitmapResource( "slider_base_normal.png" ),
Bitmap.getBitmapResource( "slider_thumb_focused.png" ),
Bitmap.getBitmapResource( "slider_progress_focused.png" ),
Bitmap.getBitmapResource( "slider_base_focused.png"),
Bitmap.getBitmapResource( "slider_thumb_pressed.png" ),
Bitmap.getBitmapResource( "slider_progress_pressed.png" ),
Bitmap.getBitmapResource( "slider_base_pressed.png"),
50, 0, 10, 10, FOCUSABLE );
slider.setPadding( 5, 5, 5, 35 );
slider.setBackground( BackgroundFactory.createSolidBackground( 0xD3D3D3 ) );
hfmSecond.add(slider);
hfmSecond.add(_startPlayingButton);
add(hfmSecond);
如果我使用上面的代码,我可以在我的屏幕上显示一个滑动条。
我无法显示按钮,而且我想在屏幕底部显示带有播放/暂停按钮的滑动条?