You need to create your own layout for your list item, something like this
Example:
textcenter.xml:
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" > <TextView android:id="@id/textItem" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout>
Then, in your code, you have to do it
ArrayAdapter<String> ad = new ArrayAdapter<String>(this, R.layout.textcenter, R.id.textItem, functions); listView.setAdapter(ad);
source share