我从数据库中获取了一个对象列表,同时它有两个参数 - title和datetime。 我在main.xml和item.xml中为列表中的每一行创建了一个listView。 我获取所有列表,将其放置到ArrayList(Map(String,Object)),并且数组列表在放入适配器时包含所有数据。
private void getAllNotesLocal () {
manager = new NotesManager(this);
lstNotes = manager.getAllNotes();
ArrayList<Map<String, Object>> _notesList = new ArrayList<Map<String, Object>>(lstNotes.size());
Map<String, Object> _map;
for (NoteObj currNote : lstNotes) {
_map = new HashMap<String, Object>();
_map.put(Constants.ATTRIBUTE_NAME_TITLE, currNote.getName());
_map.put(Constants.ATTRIBUTE_NAME_DATE, currNote.getDate());
_notesList.add(_map);
}
String[] from = {Constants.ATTRIBUTE_NAME_TITLE, Constants.ATTRIBUTE_NAME_DATE};
int[] to = { R.id.tv_name, R.id.tv_date};
SimpleAdapter sAdapter = new SimpleAdapter(this, _notesList, R.layout.item, from, to);
lvAllNotes = getListView();
lvAllNotes.setAdapter(sAdapter);
}
但屏幕上没有任何反应。 当我使用arrayAdapter时,Everythin是正常的,除了我可以放入每行的一个参数。 有效的代码在这里:
ListView lvAllNotes = = getListView();
ArrayList<NoteObj> lstNotes = manager.getAllNotes();
ArrayAdapter<NoteObj> adapter = new ArrayAdapter<NoteObj>(this, R.layout.item, R.id.tv_name, lstNotes);
setListAdapter(adapter);
main.xml:
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
item.xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="10dp" >
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|left"
android:layout_marginLeft="5dp"
android:ellipsize="end"
android:lines="1"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="@string/empty"
android:textSize="18sp" />
<TextView
android:id="@+id/tv_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_marginRight="5dp"
android:text="@string/empty"
android:textSize="9sp"
android:textStyle="italic" >
</TextView>
</FrameLayout>
答案 0 :(得分:0)
我建议您使用SimpleCursorAdapter
,因为数据来自数据库,而listitem只包含2个textview。
ListAdapter adapter = new SimpleCursorAdapter(
this, android.R.layout.two_line_list_item, mCursor,
new String[] {COLUMN1_NAME, COLUMN2_NAME},
new int[] {android.R.id.text1, android.R.id.text2});
mList.setListAdapter(adapter);
或者您可以设置一个扩展BaseAdapter
或ArrayAdapter
的新适配器。这是给你的链接。
答案 1 :(得分:0)
我认为框架布局是个问题。 这是因为框架布局只向用户显示单个视图。所有剩余视图将隐藏在第一个布局下方。 这样的问题 有兴趣知道我的解决方案有助于解决问题。