我有
PSD
,分辨率為
1080X1920
,其中包含一个
Dot
分辨率為
22X22
的圖像
我裁剪了该圖像並將其放在我的
res
中
檔案夹。
我的問题是Android如何知道该圖像適用於
1080X1920
螢幕.它將在
small
中打開较大的同一圖像
螢幕和在
2560x1440
中较小
分辨率。
Is there a way other than putting different images for each screen sizes to tell android to use the image for specific screen size and scale for other
screens
最新回復
- 5月前1 #
- 5月前2 #
Android Studio在您的Android Studio中安裝了一个名為"批處理可绘製"的插件.這有助於建立不同大小的圖像。
匯入步骤: 檔案->設置->插件->瀏覽儲存庫->單击安裝按钮。
重新啟動Android Studio,然後您將可以在Android Studio的檔案選單中找到"批處理可绘製"。
鏈接:https://github.com/winterDroid/android-drawable-importer-intellij-plugin
- 5月前3 #
將大型圖像放入可绘製檔案夹.
- 5月前4 #
您無需做其他任何事情,只需將不同分辨率的檔案放入不同的drawable-xxx檔案即可.請記住,所有圖片都必须具有相同的名稱,但是Android不会自動匹配每个圖片的螢幕尺寸,因為檔案名不匹配.祝你好運!
直接使用https://romannurik.github.io/AndroidAssetStudio/
您必须建立不同的dimen,layout,圖像和圖標檔案以支援所有設備。
changes in screen density.
Make this layout files, so that it will be same for all devices
根据設備提供填充,邊距,字型和所有屬性。
For Layout ,
For Images
For Icon
For Launcher icon
結帐尺寸和 支援多屏官方文件。