sonics876
sonics876

Reputation: 957

Adding Arrow Picture in Android ListView

Is there any way to add an image to the right of Android's ListView. It needs to look similar to a type UITableView as shown in Removing the bar in standard UITableView programmatically

Upvotes: 0

Views: 8644

Answers (1)

Willem van Ketwich
Willem van Ketwich

Reputation: 5994

You can get an image to the right of the text on a row by putting the ListView, TextView and ImageView in a RelativeLayout and setting android:layout_alignParentLeft="true" for the TextView and android:layout_alignParentRight="true" for the ImageView. I have blogged about this here.

Upvotes: 7

Related Questions