android - Strange Spinner. How to fix it? -
this code populate spinner. looks strange , ugly.
@override protected void onpostexecute(final list<string> result) { system.out.println("result: " + result); final spinneradapter adapter = new arrayadapter<string>(searchtopactivity.this, android.r.layout.simple_spinner_dropdown_item, new string[]{"test1", "test2"}); countryspinner.setadapter(adapter); } <spinner android:id="@+id/countryspinner" android:layout_width="match_parent" android:layout_height="wrap_content" /> 
how fix this

(searchtopactivity.this, android.r.layout.simple_spinner_dropdown_item, new string[]{"test1", "test2"}) change
android.r.layout.simple_spinner_dropdown_item android.r.layout.simple_spinner_item refer http://developer.android.com/resources/tutorials/views/hello-spinner.html
Comments
Post a Comment