view-text-in-the-center-of-the-spinner-when-select-from-the-drop-down-list
I want to align the view text of spinner to center. I google it but didn\
You need to set your own layout for spinner item.
SpinnerAdapter adap = new ArrayAdapter(this, R.layout.spinner_item, new String[]{"A", "B", "C"}); spriner.setAdapter(adap);
Where R.layout.spinner_item is a layout with content: