set android:layout_weight = "1"in each of the elements you want to use equal space. This will allow you to work with any screen size.
the setting android:layout_widthwill be the same for all, will NOT work for all screen sizes.
... however usage layout_weightwill automatically distribute each equally regardless of screen size
source
share