我正在尝试使用此LazyAdapter
中的tutorial类填充自定义ListView我想用自定义设计制作列表视图项。布局文件list_row.xml
就在我的布局文件中,就像在教程中一样。这是LazyAdapter
类中稍微修改过的getView函数:
public View getView(int position, View convertView, ViewGroup parent) {
View vi=convertView;
if(convertView==null)
//vi = inflater.inflate(R.layout.list_row, null); //EDITED
vi = inflater.inflate(R.layout.list_row, parent, false);
TextView title = (TextView)vi.findViewById(R.id.title); // title
TextView subtitle = (TextView)vi.findViewById(R.id.subtitle); // artist name
//ImageView thumb_image=(ImageView)vi.findViewById(R.id.list_image);
//This is not needed
//HashMap<String, String> post = new HashMap<String, String>();
HashMap<String, String> post;
post = data.get(position);
// Setting all values in listview
title.setText(post.get("title")); //the code crashes here
subtitle.setText(post.get("subtitle"));
//imageLoader.DisplayImage(song.get(CustomizedListView.KEY_THUMB_URL), thumb_image);
return vi;
}
这段代码在title.setText()
崩溃,因为标题为空。我在某处读到这是有道理的,因为这个LazyAdapter在findViewById
之前调用了setContentView
或其他东西..
那么我该怎么做呢?这段代码对那个人有什么作用?
更新
这是list_row.xml
文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/list_selector"
android:orientation="horizontal"
android:padding="5dip" >
<!-- Title -->
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#040404"
android:typeface="sans"
android:textSize="14sp"
android:textStyle="bold"/>
<!-- Subtitle -->
<TextView
android:id="@+id/subtitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/subtitle"
android:textColor="#343434"
android:textSize="10sp"
android:layout_marginTop="1dip" />
</RelativeLayout>
为节省空间,我只在主活动布局文件中添加ListView
xml:
<ListView
android:id="@+id/feedListView"
android:layout_marginTop="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/volumeControl1">
</ListView>
答案 0 :(得分:1)
尝试在为单元格充气时传入父级。使用此method:
public View inflate(int资源,ViewGroup root,boolean attachToRoot)
vi = inflater.inflate(R.layout.list_row, parent, false);
答案 1 :(得分:1)
这是一个地狱(两个不眠之夜)。谢谢你的帮助,不知为何我修好了! :)
主要是感谢这个问题Null pointer exception in getView() of custom Adapter我创建了新的getView函数:
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder = new ViewHolder();
View vi = convertView;
if (vi == null) {
LayoutInflater inflater = ((Activity)activity).getLayoutInflater();
vi = inflater.inflate(R.layout.list_row, null);
holder.title = (TextView) vi.findViewById(R.id.title);
holder.subtitle = (TextView) vi.findViewById(R.id.subtitle);
vi.setTag(holder);
} else {
holder = (ViewHolder) vi.getTag();
}
HashMap<String, String> post;
post = data.get(position);
holder.title.setText(post.get("title"));
holder.subtitle.setText(post.get("subtitle"));
return vi;
}
持有人只是一个简单的类:
private class ViewHolder {
public TextView title;
public TextView subtitle;
}
我已经完成了,我还在所有可绘制文件夹中复制了xml可绘制文件(全部合并)。所以其中一个动作修正了它,但我不太确定是什么......
答案 2 :(得分:0)
如果你得到android.widget.AbsListView.obtainView(AbsListView.java:1408)异常,那么你返回的getView()视图可能是null。首先检查你是不是返回null视图。