2

我正在尝试使用 ant everything 构建一个 apk,但编译失败并显示以下错误消息:

[javac]  type parameters of <T>void cannot be determined; no unique maximal instance exists for type variable T with upper bounds android.widget.ListAdapter,android.widget.Filterable
[javac]             currentAddressTextView.setAdapter(null);

在 eclipse 中它编译得很好,当我删除这部分代码时,它也会在 ant 构建期间编译。

4

1 回答 1

5

你可以试试下面:

     ArrayAdapter<String> adapter = null;
     currentAddressTextView.setAdapter(adapter);
于 2012-11-21T15:21:58.140 回答