当从SQLite数据库填充列表时,为什么列表中的第一个文本视图为空?

时间:2013-08-08 21:30:31

标签: android listview textview

我正在从SQLite数据库中填充一个列表,该数据库工作正常,但第一个文本视图始终为空,我无法弄清楚原因。这导致了我的问题,因为我使用填充的文本视图在单击时显示信息,但由于第一个是空的并且可以单击它导致程序失败。这是我的代码:

public class ShowPhrases extends Activity implements OnInitListener {

SQLiteDatabase database;
NotesDbAdapter md;
CursorAdapter dataSource;
 TextToSpeech tts;


private static final String fields[] = { "phrase", "folang",BaseColumns._ID };

NotesDbAdapter.DatabaseHelper helper = new NotesDbAdapter.DatabaseHelper(
        this);

@Override
public void onCreate(Bundle savedInstanceState) {
    this.requestWindowFeature(Window.FEATURE_NO_TITLE);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.hs);

    //Set volume buttons to music volume instead of ringer
    setVolumeControlStream(AudioManager.STREAM_MUSIC);
    tts = new TextToSpeech(this, this);
    database = helper.getWritableDatabase();

    Cursor data = database.query("notes", fields, null, null, null, null,null);


    dataSource = new SimpleCursorAdapter(this, R.layout.highscores, data, fields, new int[] { R.id.first });

    final ListView lv = (ListView) findViewById(R.id.list_view);

    lv.setHeaderDividersEnabled(true);
    lv.addHeaderView(getLayoutInflater().inflate(R.layout.highscores, null));

    lv.setAdapter(dataSource);

高分xml布局:

android:orientation="vertical" >

<TextView
    android:id="@+id/first"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:layout_marginTop="20dp"
    android:focusable="false"
    android:textColor="#357ae8"
    android:textSize="20dp" />


</RelativeLayout>

hs xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/gerback"
android:orientation="vertical" >

<ListView
    android:id="@+id/list_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    />

有人能看出为什么会这样吗?

2 个答案:

答案 0 :(得分:1)

试试这个:

Cursor data = database.query("notes", fields, null, null, null, null,null);

data.moveToNext();

dataSource = new SimpleCursorAdapter(this, R.layout.highscores, data, fields, new int[] { R.id.first }, 0);

有效吗?

请记住添加0作为最后一个参数,以使用非弃用方法。

答案 1 :(得分:1)

如果您说第一个Textview为空,您是在谈论标题视图还是列表中的第一个项目?

如果您的意思是标题视图,并且第一部分xml(在您的问题中)是一个被充气的(R.layout.highscores),那么问题只是您没有为其分配任何文本显示。标题视图不会被适配器填充,它会随列表一起滚动,因此在您的情况下它将为空白。