在Android中使用自定义AutoCompleteTextView导致错误

时间:2012-09-01 12:37:38

标签: android autocompletetextview

我在android中扩展了AutoCompleteTextView。当我在XML布局文件中使用新的自定义AutoCompleteTextView时,Eclipse会显示错误消息:

  

在尝试显示弹出窗口之前,必须通过调用setContentView()来指定有效的内容视图。 Window>中记录了异常详细信息。显示视图>错误记录“`。

编辑的XML文件是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.mypackage.MyAutoCompleteTextView
android:id="@+id/countries_list_custom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionHint="Test">
<requestFocus />
</com.mypackage.MyAutoCompleteTextView>
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>

只需从XML中取出我的自定义视图,布局就可以了。

非常感谢任何帮助,谢谢。

0 个答案:

没有答案