Android:获取ImageView的NullPointerException:=(ImageView)findViewById(R.id.image)

时间:2011-05-02 10:53:15

标签: android imageview

我正在为ImageView imag =(ImageView)findViewById(R.id.image)获取Null Pointer Exception。我在 R.layout.screen3 中声明了客户布局,并在 R.layout.custom_row_screen3 中声明了客户列表。每行都有很少的任务,根据它们的状态,每行显示一个图像。

请指导我解决这个问题,因为我是新手。

这是我的代码:::

public class screen3 extends ListActivity{
final ArrayList<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();
...
...
...
TextView tv;
ImageView imag;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.screen3);   
    System.out.println("Screen3");
    ...
    ...
    ...
    SimpleAdapter adapter = new SimpleAdapter(this, list,
            R.layout.custom_row_screen3,
            new String[] { "tname","schedule", "note", "time"}, new int[] { R.id.text1Screen3task,
                    R.id.text2Screen3task, R.id.text3Screen3task, R.id.text4Screen3task});
    populateList();
    setListAdapter(adapter);
}

public void populateList() {
    for(int i = 0; i <numberOfTasks; i++)
    {
        HashMap<String, String> h = new HashMap<String, String>();
        HashMap<String, String> hm = new HashMap<String, String>();
        h = tasks.get(i);
            ...
            ...     
        hm.put("tname", h.get("taskName"));
        hm.put("schedule", h.get("STime")+" - "+h.get("ETime"));

        if(h.get("taskStatus").trim().equals("1")){

            imag = (ImageView) findViewById(R.id.image);//   <<---- NULL RETURNED
            imag.setImageResource(R.drawable.done);
            ...
            ...
        }
        else{
            imag = (ImageView) findViewById(R.id.image);//  <<---- NULL RETURNED
            imag.setImageResource(R.drawable.not);
            ...
            ...
        }
        list.add(hm);
    }
    ...
    ... 
}

screen3 xml          

<ListView android:id="@id/android:list" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:background="#000000"
    android:drawSelectorOnTop="false">
</ListView>

custom_row_screen3 xml

<LinearLayout android:orientation="vertical"
    android:layout_width="0dip" android:layout_weight="1"
    android:layout_height="wrap_content">

    <TextView android:id="@+id/text1Screen3task"
        android:layout_width="wrap_content" android:layout_height="0dip"
        android:layout_weight="1" android:textSize="21sp" android:textStyle="bold"
        android:gravity="clip_horizontal" />

    <TextView android:id="@+id/text2Screen3task"
        android:layout_width="wrap_content" android:layout_height="0dip"
        android:layout_weight="1" android:textSize="16sp" android:gravity="clip_horizontal" />

    <TextView android:id="@+id/text3Screen3task"
        android:layout_width="wrap_content" android:layout_height="0dip"
        android:layout_weight="1" android:textSize="16sp" android:gravity="clip_horizontal" />

    <TextView android:id="@+id/text4Screen3task"
        android:layout_width="wrap_content" android:layout_height="0dip"
        android:layout_weight="1" android:textSize="16sp" android:gravity="clip_horizontal" />
</LinearLayout>
<ImageView android:id="@+id/image" android:layout_width="wrap_content" android:paddingBottom="51dip"
    android:layout_height="wrap_content" android:layout_marginRight="16dip"
    />

由于 Abhinav Tyagi

5 个答案:

答案 0 :(得分:1)

简而言之:您应该编写一个ListAdapter来绘制列表中的视图。您似乎在错误的视图/上下文中使用findViewById()(在screen3 xml布局上)。包含ListAdapter的示例是available at the android developer site

getView()方法基本上应该是这样的:

public View getView(int position, View convertView, ViewGroup parent) {
    View v = convertView;
    if (convertView == null) {
        v = LayoutInflater.from(parent.getContext()).inflate(R.layout.row, null);
    }
    h = tasks.get(i);
    if(h.get("taskStatus").trim().equals("1")){
        imag = (ImageView) v.findViewById(R.id.image);
        imag.setImageResource(R.drawable.done);
    } else { 
        // ...
    }
    return v;
}

答案 1 :(得分:0)

您的布局中的imageview似乎没有指定android:id =“@ + id / image”

编辑:我认为问题是你在ListActivity中的ListView包含你的custom_row之前使用了findViewById,而custom_row是谁拥有ImageView。

尝试在populateList()

之前执行setListAdapter

答案 2 :(得分:0)

检查您的res文件夹中是否有可用的资源。

答案 3 :(得分:0)

populateList()在ListView呈现到屏幕之前运行,因此Activity中不存在custom_row_screen3。

您可以继承SimpleAdapter并覆盖getView()或setViewImage(),但我经常发现匿名实现SimpleAdapter.ViewBinder并将其分配给SimpleAdapter#setViewBinder()更为简单。

在ViewBinder中,如果传入的视图不是ImageView,则返回false。如果是,您可以使用数据映射(作为Object传入)来检查“taskStatus”键的值。

确保在调用setListAdapter()之前执行此操作

adapter.setViewBinder(new SimpleAdapter.ViewBinder () {
  @Override
  boolean setViewValue(View view, Object data, String textRepresentation) {
    if (!(view instanceof ImageView)) return false;

    String taskStatus = ((Map<String, String>) data).get("taskStatus").trim();
    ((ImageView) view).setImageResource(taskStatus.equals("1") ? R.drawable.done :
                                                               R.drawable.not);
  }
});

答案 4 :(得分:0)

谢谢你们所有人 大家都向我指出了我的imageview没有指向我的适配器 我按照http://devblogs.net/2011/01/04/custom-listview-with-image-using-simpleadapter/中的步骤进行操作 它正在工作! 只需要将我的图像放在hashmap中......我正在敲打墙头!!!