0

我正在从一个工作正常的 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"
    />

谁能明白为什么会这样?

4

2 回答 2

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为最后一个参数以使用不推荐使用的方法。

于 2013-08-08T21:54:55.730 回答
1

当你说第一个 Textview 为空时,你是在说 headerview 还是列表中的第一项?

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

于 2013-08-08T22:04:12.420 回答