我想打電話從方法的位圖在我的主類和我不確定如何做到這一點 -如何調用另一個類的方法中定義的位圖?
我有一個方法:
private void detectFaces() {
Bitmap bitmap565 = Bitmap.createBitmap(width, height,
Config.RGB_565);
if (facesFound < 1) {
Intent k = new Intent(main.this, False.class);
startActivity(k);
,在我False.class我:
super.onCreate(savedInstanceState);
setContentView(R.layout.detectfalse);
ImageView imageView = (ImageView) findViewById(R.id.false_view);
TextView textView = (TextView) findViewById(R.id.badPicText);
textView.setText(R.string.noFace);
imageView.setImageBitmap(bitmap565);
所以基本上,我如何將位圖放在我的主類中的detectFaces方法中,並在我的false類中將其作爲位圖傳遞給imageview中的位圖?
謝謝!
這不是它應該完成的方式,但爲了回答,只需將'bitmap565'設爲'public static'變量即可。然後,您可以使用'Main.bitmap565'訪問它。 – st0le 2010-11-19 18:57:45