我正在从一个工作正常的 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"
/>
谁能明白为什么会这样?