さて、SurfaceViewの背景をJPGファイルに設定しようとしています。しかし、それは画像を描きたくないようで、私が得るのは黒い画面だけです。
ここに:私のコード:
public class FloorplanActivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
MapView mapView = new MapView(getApplicationContext());
setContentView(mapView);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.floorplan, menu);
return true;
}
class MapView extends SurfaceView{
Rect testRectangle1 = new Rect(0, 0, 50, 50);
Bitmap scaled;
int x;
int y;
public MapView(Context context) {
super(context);
}
public void surfaceCreated(SurfaceHolder arg0){
Bitmap background = BitmapFactory.decodeResource(getResources(), R.drawable.floorplan);
float scale = (float)background.getHeight()/(float)getHeight();
int newWidth = Math.round(background.getWidth()/scale);
int newHeight = Math.round(background.getHeight()/scale);
scaled = Bitmap.createScaledBitmap(background, newWidth, newHeight, true);
}
public void onDraw(Canvas canvas) {
canvas.drawBitmap(scaled, 0, 0, null); // draw the background
}
drawable-mdpiフォルダーに保存した「フロアプラン」画像が描画されない理由がわかりません。
誰か提案がありますか?
ありがとう。
編集:ブレークポイントを使用してデバッグを行った後、「scaled」変数が何らかの理由で「Infinity」になり、newWidth変数とnewHeight変数が0未満になり、アプリケーションがクラッシュしたようです。
これは、surfaceCreated全体をコンストラクターに移動した場合のみです。コードをここに残しておくと、黒い画面が表示される以外に何も起こりません。
何が原因でそれが行われているのかわかりません...