Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here i develope one Android application, which can run on all screen size and resolution devices. but one problem is there my TextView's Fontsize is same on all the Screen-Size. I want to change FontSize according to Different ScreenSize and Screen Resolution.

Thanks in Advance.

share|improve this question
Put some code so we'll know. – userIsAMonkey May 17 '12 at 7:10
1  
1. use sp 2. check stackoverflow.com/questions/2617266/… – user1434303 Jun 5 '12 at 10:36

6 Answers

Use the code from Screen Category or use getSize() method like:

Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;

as described here to get the screen size and and then set the font size accordingly using setTextSize() method, you can also consider using sp unit for font size.

share|improve this answer

one way to do this is make necessary folders like layout-large, layout-small, layout-normal,layout-xlarge in res folder . and put your xmls into those folder and then change whatever you want to do with text view and anything

share|improve this answer

First, if you have not done so already, you should read this

http://developer.android.com/guide/practices/screens_support.html

To provide any resource, including styles that could apply to text, you should read the section Using configuration qualifiers

Another useful document here http://developer.android.com/guide/topics/resources/more-resources.html#Dimension should help you with selecting the right unit of measure for text, ideally you want to use sp's as explained in the excerpt:

sp

Scale-independent Pixels - This is like the dp unit, but it is also scaled by the user's font size preference. It is recommend you use this unit when specifying font sizes, so they will be adjusted for both the screen density and the user's preference.

Hope that helps.

share|improve this answer

you should use sp unit for font sizes instead of dip or dp. sp is scale independent pixels which adjust themselves according to screen pixel density. here is the exact difference.

dp

Density-independent Pixels - an abstract unit that is based on the physical density of the screen. These units are relative to a 160 dpi screen, so one dp is one pixel on a 160 dpi screen. The ratio of dp-to-pixel will change with the screen density, but not necessarily in direct proportion. Note: The compiler accepts both "dip" and "dp", though "dp" is more consistent with "sp".

sp
Scale-independent Pixels - this is like the dp unit, but it is also scaled by the user's font size preference. It is recommend you use this unit when specifying font sizes, so they will be adjusted for both the screen density and user's preference.

share|improve this answer

Go to your xml file and add textsize as:

android:textSize="20sp" 

This will increase your font size

share|improve this answer

Hi create the folders as below in your resources folder and then copy your XML files in to it now you can check the palette window it will show the screens for different sizes based on that u can modify the screen size .

layout-large, layout-small, layout-xlarge ,

Now it supports to all types of screen sizes and your Font size will be clear based on screen size. For more information regarding to Supporting Multiple Screens check the android documentation .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.