friends,
can any one guide me how to create editable spinner in android?
any help would be appriciated.
friends,
can any one guide me how to create editable spinner in android?
any help would be appriciated.
Have you tried reading any tutorials?
For example: http://developer.android.com/guide/tutorials/views/hello-spinner.html http://www.designerandroid.com/?p=8
and so forth. Google for android spinner tutorials.
0 down vote favorite
Hello,
I changed the ArrayAdapter method of spinner and i got my custom Spinner. just change the parameter of this method like
Spinner spinner = (Spinner) findViewById(R.id.Spinner01); ArrayAdapter adapter=ArrayAdapter.createFromResource(This,R.array.statename,R.layout.mylayout); spinner.setAdapter(adp);
In Which the mylayout file contains
I hope this will helps you.