In android, what are the best ways of creating the user interface, and how do you make them scalable over multiple sized devices?
The best way to create user interface is using a front end frameworks like:
Cordova
React native.
These frameworks helps in developing a hybrid platform so that a single code can be used to develop on both android and ios platform.
How to make it scalable for multiple device:
1) Render controls by always taking the screen width and height using percentage value.
2) Try to use a flexible layout to take over according to the screen size.
3) Avoid using hard coded values for sizes. Use dynamic values instead.
Please rate it if the above solution helps you in any way or if you have any concerns comment it, I will help you through again.
In android, what are the best ways of creating the user interface, and how do you...