I have a list view in an Android application used to display an ArrayList containing Strings and I can\'t find any properties of the ListView that would allow me to align th
The answer depends on how exactly do you build the list. If you use the the standard ArrayAdapter then you could use the constructor:
ArrayAdapter
ArrayAdapter(Context, R.layout.aligned_right, values);
where R.layout.aligned_right is a xml layout like this:
R.layout.aligned_right