0

我正在使用来自http://developer.android.com/guide/market/expansion-files.html的 APK 扩展文件

代码 :

String[] path= getAPKExpansionFiles(this,2,0);
ZipResourceFile expansionFile;
try {
        expansionFile = new ZipResourceFile(path[0]);
        InputStream fileStream = expansionFile.getInputStream("assets/Tablet/Chester_the_cat/chester_the_cat_2.png");
        Bitmap bit=BitmapFactory.decodeStream(fileStream);
            iv_new=(ImageView)findViewById(R.id.iv_new);
            iv_new.setImageBitmap(bit);

我在这一行得到这个 NullPointerException

   iv_new.setImageBitmap(bit);

在 XML 中,我的 ImageView 是:

 <ImageView android:id="@+id/iv_new"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>
4

1 回答 1

2

setContentView(View)用包含 ImageView 的布局调用了吗?

于 2012-05-25T06:16:42.847 回答