I\'m trying to create a button-like component, with a left-aligned ImageView and then 2 TextViews to the right of the ImageView, stacked one above the other and formatted differ
You can add android:duplicateParentState="true" to the ImageView widget. Also you need to make the ImageView's parent clickable and focusable.
android:duplicateParentState="true"
ImageView
The RelativeLayout in the following code will act as a Button:
RelativeLayout
Button