Hello其他Android程序员,
今天我想用自定义适配器创建一个简单的AutoCompleteTextView,它在模拟器上运行得非常好。但是,如果我现在在我的三星Galaxy Young上运行整个东西并且我在ACTextView中输入一些文本,它会向我显示应有的一切,但是我无法单击键盘右下角的“确定”按钮正在出现。
如果我翻转智能手机并改变方向,我摆脱了烦人的键盘,但我不能以任何其他方式关闭它。解决方案?这是使用的代码和xml:
<AutoCompleteTextView
android:id="@+id/vereinAutoComplete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:hint="@string/vereinHint"
android:inputType="textNoSuggestions">
</AutoCompleteTextView>
适配器的Java代码(它是自定义的):
rootView = inflater.inflate(R.layout.verein_layout, container, false);
AutoCompleteTextView acTextView = (AutoCompleteTextView)rootView.findViewById(R.id.vereinAutoComplete);
acTextView.setAdapter(new SuggestionAdapter(getActivity(),acTextView.getText().toString()));
acTextView.addTextChangedListener(new TextWatcher(){
public void afterTextChanged(Editable s) {
我在Fragment中使用了整个东西,所以不要怀疑rootView等等...... 监听器有一些代码,但我不认为这对我的问题很重要。