1

我正在尝试制作一个具有列表视图小部件的程序,该小部件显示我从数据库中获取的一些项目。我为我的列表视图设置了一个数组适配器,它显示了元素,但不会向下或向上滚动。这是我的代码,顺便说一句,我使用的是 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>
4

3 回答 3

1

您的 XML 不包含任何ListView...

于 2011-10-10T14:20:14.880 回答
0

问题是因为程序中的微调器。我知道为什么,但是在我卸下微调器后它就起作用了。

于 2011-10-13T20:05:49.740 回答
0

有一个有趣的情况。代码正在运行,如果我理解的话;唯一的问题是滚动.. :)) (错误的 xml 文件)

于 2011-10-10T14:38:05.987 回答