I have three ImageViews at the bottom of cell in a ListView item. I would like to attach some Text to the right of these images so that it will stick with the ImageView. I realize I could use Linear and relative layout for this but I thought maybe there is a way to place text next to a ImageView.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use RelativeLayout it work. Simple example:
This will put textview left side = imageview left side and textview right side = imageview right side, so the content from textview will be inside your imageview. You can use all kind of positions, just read relative or linear layouts from android development properties. But i`m not sure what is question at all :) |
||||
|
|
