我正在尝试制作一个具有列表视图小部件的程序,该小部件显示我从数据库中获取的一些项目。我为我的列表视图设置了一个数组适配器,它显示了元素,但不会向下或向上滚动。这是我的代码,顺便说一句,我使用的是 android 2.3.3 avd。
ListView lv;
lv = (ListView)findViewById(R.id.listView1);
String[] liste = new String[suggestion.size()];
//liste is populated afterwards, there are about 100 items
ArrayAdapter<String> adapterForList = new ArrayAdapter<String>(getApplicationContext(),R.layout.listview,R.id.word,liste );
lv.setAdapter(adapterForList);
这是我的 listview.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TextView
android:id="@+id/word"
style="@android:style/TextAppearance.Large"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
这是活动使用的主要 xml 文件。以上仅适用于 listview 小部件。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Spinner android:id="@+id/spinner1" android:layout_width="wrap_content"
android:layout_height="wrap_content"></Spinner>
<EditText android:id="@+id/etSQL" android:layout_width="fill_parent"
android:layout_height="wrap_content">
</EditText>
</LinearLayout>
<ListView android:layout_width="fill_parent" android:id="@+id/listView1"
android:layout_height="0dp" android:layout_weight="1"></ListView>
</LinearLayout>