I want to support my android screen in multiple screen sizes but i can do it with maintaining multiple xml layout file\'s
but according to requirement it i supposed to b
May be you can try below library which manages all the screen size resolution automatically.
compile 'com.intuit.sdp:sdp-android:1.0.4'
You need to just add the dependency in your build.gradle file and you are done.
You need to specify like:
android:layout_height="@dimen/_10sdp"
Instead of usual:
android:layout_height="@dimen/10dp"