I have three icon the a RelativeLayout
, how to make them distributed to screen width?
Since I may add more icon to this line programmatically, I cannot hard code a fixed margin to these icon.
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/icon1"
android:src="@mipmap/icon" />
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/icon2"
android:layout_toRightOf="@id/icon1"
android:layout_alignBottom="@id/icon1"
android:src="@mipmap/icon" />
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/icon3"
android:layout_toRightOf="@id/icon2"
android:layout_alignBottom="@id/icon2"
android:src="@mipmap/icon" />
</RelativeLayout>
Please use
LinearLayout
and use this code, which will work in all resolutions device.