How to center vector drawable in layer-list without scaling

后端 未结 4 992
伪装坚强ぢ
伪装坚强ぢ 2020-12-12 17:11

I am attempting to use a VectorDrawable in a LayerList without scaling the vector. For example:


    

        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-12 17:34

    Edited solution that will make your SplashScreen look great on all APIs including API21 to API23

    First of all read this article and follow the GOOD way of making a splash screen.

    If your logo is distorted or wont fit and you are only targeting APIs24+ you can simply scale down your vector drawable directly in its xml file like so:

    
    
    
    

    in the code above I am rescaling a drawable I drew on a 640x640 canvas to be 240x240. then i just put it in my splash screen drawable like so and it works great:

    
    
    
    
    
        
            
            
        
    
    
    
    
    
    
    
    

    my code is actually only drawing the triangle in the picture at the bottom but here you see what you can achieve with this. Resolution is finally great as opposed to the pixelated edges I was getting when using bitmap. so use a vector drawable by all means (there is a site called vectr that I used to create mine without the hasle of downloading specialized software).

    EDIT in order to make it work also on API21-22-23

    While the solution above works for devices runing API24+ I got really disappointed after installing my app a device running API22. I noticed that the splashscreen was again trying to fill the entire view and looking like shit. After tearing my eyebrows out for half a day I finally brute-forced a solution by sheer willpower.

    you need to create a second file named exactly like the splashscreen xml (lets say splash_screen.xml) and place it into 2 folders called drawable-v22 and drawable-v21 that you will create in the res/ folder (in order to see them you have to change your project view from Android to Project). This serves to tell your phone to redirect to files placed in those folders whenever the relevant device runs an API corresponding to the -vXX suffix in the drawable folder, see this link. place the following code in the Layer-list of the splash_screen.xml file that you create in these folders:

    
    
        
        
    
    
    
    
    
        
    
    
    

    For some reason for these APIs you have to wrap your drawable in a bitmap in order to make it work and jet the final result looks the same. The issue is that you have to use the aproach with the aditional drawable folders as the second version of the splash_screen.xml file will lead to your splash screen not being shown at all on devices running APIs higher than 23. You might also have to place the first version of the splash_screen.xml into drawable-v24 as android defaults to the closest drawable-vXX folder it can find for resources.

提交回复
热议问题