我的代码中出现错误

时间:2011-02-22 08:22:19

标签: android

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.full_image);
    ImageView image = (ImageView) findViewById(R.id.imageView1);
    Bitmap bMap = BitmapFactory.decodeStream(R.drawable.sample_1);
    image.setImageBitmap(bMap);
}

虽然链接已生成,但我无法显示图像。

1 个答案:

答案 0 :(得分:0)

您好,您可以像这样使用

 ImageView image = (ImageView) findViewById(R.id.imageView1);

 image.setImageResource(R.drawable.sample_1);

谢谢。