0
我無法獲取MultiAutoCompleteTextView的下拉列表以滾動到底部。有比內容更多的內容,但是列表不會超出某個特定點。我可以告訴我沒有到達列表的底部,因爲底部看起來在兩個條目之間。向下顯示拖放代碼是在這裏:Android MultiAutoCompleteTextView下拉列表不滾動到底部
public void onClick(View v) {
adapter.getFilter().filter("");
v.showDropDown();
}
});
main.xml中,該元素是:
<MultiAutoCompleteTextView
android:id="@+id/myTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="3.0"
android:ems="10"
android:hint="@string/myViewPrompt" />
有誰知道如何解決這個問題?