I use this code to set my text by one sp bigger but It increases the size too much...
public void doThis(MenuItem item){
size = text.getTextSize();
text.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (size + 1));
}
I want it to add only one sp...
thanks for help