0

画像パスに関係しているように感じますが、画像が検出されていません。ブラックベリーの開発は初めてです。

アプリケーションは実行されますが、画像が表示されません。画像が正しく配置されていない可能性がありますか?

public final class Welcome extends MainScreen
{
    /**
     * Creates a new Welcome object
     */
    public Welcome()
    {        
        // Set the displayed title of the screen       
        setTitle("Select a brand");

        Bitmap bitmapImage = Bitmap.getBitmapResource("/BrowserBlackberry/res/img/Celsian.jpg");
        BitmapField fieldDemo = new BitmapField(bitmapImage);    
        fieldDemo.setBorder(150,getBorder(20));
        fieldDemo.getBackground(Background.POSITION_X_CENTER);

        add(fieldDemo);
    }
}
4

1 に答える 1

2

これを試して

 public Welcome()
{        
    // Set the displayed title of the screen       
    setTitle("Select a brand");

    Bitmap bitmapImage = Bitmap.getBitmapResource("Celsian.jpg");
    BitmapField fieldDemo = new BitmapField(bitmapImage);    
    add(fieldDemo);

}
于 2013-09-06T13:06:47.103 に答える