0

リストを機能させようとしています。その場合、拡張されたArrayAdapterで拡張するxml定義のアイテムがあります。しかし、xmlを膨らませた後、imageviewを取得しようとすると、findviewbyidによってnullが返されます...アイテムのxmlは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <TextView 
        android:id="@+id/product_item_textview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="if no image avail show this"
        android:visibility="gone"/>
    <ImageView 
        android:id="@+id/product_item_imageview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:visibility="visible"
        />

</LinearLayout>

アイテムを説明する方法:

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        SimpleListItem item= items.get(position);
        LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View v = vi.inflate(R.layout.product_item, null);
        if(item.getPicture()!=null)
        {
            ImageView imgVw = (ImageView) findViewById(R.id.product_item_imageview);
            String picturePath = item.getPicture();
            Bitmap picture = ImageManager.get(getBaseContext(), picturePath);
            imgVw.setImageBitmap(picture);
        } else {
            TextView txtVw = (TextView) findViewById(R.id.product_item_textview);
            txtVw.setText(item.getText());
            txtVw.setVisibility(View.VISIBLE);
        }
        return v;
    }
4

2 に答える 2

3

それは、

  ImageView imgVw = (ImageView) v.findViewById(R.id.product_item_imageview);

TextView、も同じです

 TextView txtVw = (TextView) v.findViewById(R.id.product_item_textview);

膨張したxmlファイルView vを取得ImageViewおよび取得するために使用します。TextView

于 2012-06-01T12:47:30.707 に答える
1

//ビューvでレイアウトを膨らませているので、

ImageView imgVw = (ImageView)v. findViewById(R.id.product_item_imageview);


TextView txtVw = (TextView)v. findViewById(R.id.product_item_textview);
于 2012-06-01T12:48:56.813 に答える