[Solved] Layout used on different resolution devices
Try not to use marginTop on all the views. Instead set the top most view with a marginTop and then all the images below them can be placed by android:layout_below=”<imagView id>” and with some marginTop relative to the view above and not the parent. You can check this answer solved Layout used on different resolution … Read more