CopyPastor

Detecting plagiarism made easy.

Score: 0.7531155943870544; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2018-08-10
by Suryakant Bharti

Original Post

Original - Posted on 2013-11-19
by LOG\_TAG



            
Present in both answers; Present only in the new answer; Present only in the old answer;

> I think this should work...
Add `android:dropDownHeight="100dp"` to the `AutoCompleteTextView` tag in your layout file.
> Something like this :
<AutoCompleteTextView android:id="@+id/..." android:layout_width="match_parent" android:layout_height="wrap_content" ... android:dropDownHeight="100dp" ...> </AutoCompleteTextView>
Just adding the `android:dropDownHeight="100dp"` to the `AutoCompleteTextView` tag in your layout file will be the best solution I guess! it will simply controls the hight of drop down hight and allow us to scroll!

<AutoCompleteTextView android:id="@+id/acetxt_assignclient" android:layout_width="fill_parent" android:layout_height="wrap_content" android:dropDownHeight="250dp"> </AutoCompleteTextView>

        
Present in both answers; Present only in the new answer; Present only in the old answer;