问题
Existing code and xml The code
fromAutoComplete = new AutoComplete(
this, R.layout.fromautocomplete,
R.id.fromautocomplete);
fromAutoComplete.setNotifyOnChange(true);
fromAddress = (AutoCompleteTextView) findViewById(R.id.fromAddress);
fromAddress.setAdapter(fromAutoComplete);
fromAddress.setOnItemClickListener(this);
fromAddress.setOnFocusChangeListener(this);
fromAddress.setOnClickListener(this);
The xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fromautocomplete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="none"
android:maxLines="2"
android:minLines="2"
android:singleLine="false"
android:text="sample text, a lot of text to encourage wrap text"/>
I need the autocomplete to wrap text, on the listview. So I add a LinearLayout around my autocomplete. This works. The listview on the autocomplete now has wrapped text. but on selection non of my call backs are not called.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/fromautocomplete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:minLines="2"
android:scrollHorizontally="false"
android:singleLine="false"
android:text="sample text, a lot of text to encourage wrap text"/>
</LinearLayout>
回答1:
Got it working,
Fixes
- Gave a
id
to myLinearLayout
- Used the layout
id
in myonItemClick
- Used
R.layout.<file>
in the constructor
XML (R.layout.fromautocomplete)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toautocompleteLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/toautocomplete"
Code
fromAutoComplete = new AutoComplete(this,
R.layout.fromautocomplete,
R.id.fromautocomplete);
fromAutoComplete.setNotifyOnChange(true);
OnItemClick
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
if (view.getId() == R.id.fromautocompleteLayout) {
回答2:
You need to get Textview from LinearLayout
@Override
public void onItemClick (AdapterView<?> parent, View view, int position, long id) {
View v = (TextView)((LinearLayout )view).getChildAt(0);
String s = ((TextView) v).getText().toString();
//Do something with string s
}
来源:https://stackoverflow.com/questions/25751648/autocompletetextview-stops-listening-to-onitemclick