布局问题上的游标适配器

时间:2013-01-13 19:04:34

标签: java android

希望这是一个简单的!

有谁可以告诉我为什么我的列表显示在列表视图中而不是我的实际返回数据?

例如,如果我的数据库中有两个名为'John'的名称,我从'EditText'发送名称'John'来查询数据库,会生成正确数量的listview单元格,但它会再次显示布局两次而不是返回的细节!

输出问题与listview中的重复编辑文本和按钮:

我的数据库中有一个名为'Dave'的人,因此它在列表视图中显示正确的结果编号,即'1',但问题是它应该显示他们的姓名,联系人号码,电子邮件和评论,不是再次布局!

i

搜索XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/inputSearchName"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/txtsearch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Type Name To Search:"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<EditText
    android:id="@+id/inputName"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10" >

    <requestFocus />
</EditText>

<Button
    android:id="@+id/btnSearchName"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Search" />

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

</LinearLayout>

搜索代码:

    search.open();
Cursor cursor = search.searchOnName(searchedName);

startManagingCursor(cursor);

@SuppressWarnings("static-access")
String [] from = new String [] {DBsearchRef.KEY_NAME, DBsearchRef.KEY_TEL, DBsearchRef.KEY_EMAIL, DBsearchRef.KEY_COMMENTS};
int [] to = new int [] {R.id.txtNameList, R.id.txtTelList, R.id.txtEmailList, R.id.txtCommentsList};

@SuppressWarnings("deprecation")

SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(this, R.layout.search, cursor, from, to);
searchedListResults.setAdapter(cursorAdapter);

问题是我的'搜索'类布局正在listview中显示....但由于listview是这个类的一部分,我认为这将是正确的引用?

1 个答案:

答案 0 :(得分:1)

  

有谁可以告诉我为什么我的列表显示在列表视图中而不是我的实际返回数据?

传递给适配器的XML布局,在这里:

SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(this, R.layout.search, cursor, from, to);

是否将在每一行中使用的布局。显然,您不想使用search.xml,只需将R.layout.search更改为您要使用的布局。


<强>加成
试试这段代码,它可能会帮助您理解差异:

@SuppressWarnings("deprecation")
SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(this, 
        android.R.layout.simple_list_item_1, 
        cursor, 
        new String[] {DBsearchRef.KEY_NAME}, 
        new int[] {android.R.id.text1});
searchedListResults.setAdapter(cursorAdapter);