Home > Blockchain >  Phone skin: round corners and a camera are small compared to the emulated phone screen, how to make
Phone skin: round corners and a camera are small compared to the emulated phone screen, how to make

Time:11-10

I downloaded skin of galaxy A52 from official samsung website: enter image description here

CodePudding user response:

To change that you need to locate to the "Device frame skin definition" folder that you downloaded and pasted before. For me that was this folder:

C:\Program-Files\Android\Android Studio\plugins\android\resources\device-art-resources\Galaxy_A52

You should open "layout" file and see how different frames are set. In my situation I found that fore_port.png was at the forefront. I checked and it had dimensions 324x720. Dimensions of the screen are 1080x2400 so you should google "change dimensions of png" and change them. Then, replace the file. After this, restart android studio and everything works.

Now I have something that looks like this: enter image description here

  • Related