这是什么意思?我一直在使用ListView
与ArrayAdapter
进行战斗。我写了这个很好的对话框片段,我已经回调给updateUI列表器,因为我想更新ListView
我在DialogFragment
的片段中有ArrayAdapter
,ArrayAdapter<Location> theLocations;
...
//in oncreateview
theLocations = new ArrayAdapter<Location>(mContext, R.layout.location_row, locations);
//here locations is an ArrayList<Location>
是一个复杂的类型我创建的课程:
public void onUIUpdate(Location l) { //called from dialog fragment
locations.add(l);
theLocations.notifyDataSetChanged();
}
然后我有:
String[] locationNames = new String[sizeofLocations];
theLocations=new ArrayAdapter<String>(mContext, R.layout.location_Row, locationNames );
public void onUIUpdate(Location l) {
locations.add(l);
locationNames = new String[locations.size()];
for(locations.size() etc...) {
locationNames [i] = new String(locations.get(i).getName());
}
theLocations.notifyDataSetChanged();
}
然后出现上述错误,所以我将其切换为仅使用
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:layout_width="fill_parent" android:orientation="horizontal">
<TextView android:text="@+id/TextView01" android:layout_height="wrap_content" android:id="@+id/location_name"
android:textSize="15px" android:layout_marginTop="10px" android:layout_width="wrap_content"></TextView>
<TextView android:text="|" android:layout_height="wrap_content"
android:textSize="15px" android:layout_marginTop="6px" android:layout_width="wrap_content"></TextView>
<TextView android:text="@+id/TextView01" android:layout_height="wrap_content" android:id="@+id/location_lat"
android:textSize="15px" android:layout_marginTop="6px" android:layout_width="wrap_content"></TextView>
<TextView android:text="|$" android:layout_height="wrap_content"
android:textSize="15px" android:layout_marginTop="6px" android:layout_width="wrap_content"></TextView>
<TextView android:text="@+id/TextView01" android:layout_height="wrap_content" android:id="@+id/location_lon"
android:textSize="15px" android:layout_marginTop="6px" android:layout_width="wrap_content"></TextView>
</LinearLayout>
这在我的更新方法中没有错误(更新了ui),但它没有更新任何内容。所以我很遗憾如何更新这个ArrayAdapter,我认为notifyChange应该这样做,但它要么什么都不做,要么抛出上面的错误。
我的程序中的其他地方的SimpleCursorAdapters没有问题(只要我的游标保持打开状态,我就会对它们进行重新查询)。
对我做错了什么的任何见解?
根据要求,这是我的R.layout.location_row
的布局{{1}}
答案 0 :(得分:19)
我们可以阅读http://developer.android.com/reference/android/widget/ArrayAdapter.html ArrayAdapter只适用于textviews上的字符串。您可以使用此构造函数
ArrayAdapter(Context context, int resource, int textViewResourceId, List<T> objects)
在布局中指定TextView的id或覆盖
getView(int, View, ViewGroup)
返回自定义类型的视图。