set android object by percentage code example

Example: set android object by percentage

Example:
...
TextView label=findViewById(R.id.label);
Utils.setObjectDimensions(this,label,"TextView",6.27,55,3);
...
this-> Context,
label-> your Android object,
"TextView" -> type of android object,
6.27 -> percentage of height of android device screen,
55 -> percentage of width of android device screen,
3 -> percentage of height of android device used to convert object textsize to its sp value

//
You should provide -1 to height, width and percentage for text accordingly your need of change the object dimensions,

Tags:

Misc Example