I have 2 image views in a linear layout like so:
<LinearLayout
style="@style/home_icon_row"
android:orientation="horizontal">
<ImageView
android:id="@+id/ibtn_home_bus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ico_bus_selector" />
<ImageView
android:id="@+id/ibtn_home_butoday"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ico_butoday_selector" />
</LinearLayout>
How can i align the two images so that they are evenly placed within the linear layout. Something similar to "justified text" so that it has equal spacing on the left and right of the image from each other and the border of the screen.