Different resolution support android

前端 未结 8 1337
北海茫月
北海茫月 2020-11-22 04:21

Edited Question:

Mobile Resolution:
I would like to design different screen dpi like following resolutions.
320x480,
48

8条回答
  •  臣服心动
    2020-11-22 04:48

    First you create the different values folders for different screens.and put the size according to the screens in res->values->dimens.xml file and call the simple font size using "@dimen/text_size".

    res/values/dimens.xml    
    res/values-small/dimens.xml    
    res/values-normal/dimens.xml    
    res/values-xlarge/dimens.xml
    
    //for small    
    
    
       15sp
    
    
    //for normal    
    
    
       20sp
    
    
    //for large    
    
    
       30sp
    
    
    //for xlarge    
    
    
       40sp
    
    

    and retrieve the font size in TextView as given below.

    
    

提交回复
热议问题