Androidアプリ開発において、res/drawable-x
配下に異なる解像度の画像ファイルを格納するプラグインの話です。
背景
過去にリソース配下に置く画像は、一種類だけでよいというような話を書いていたのですが、今は、異なる解像度の画像をそれぞれ格納するのがよいと思っています。
異なる解像度の画像を配置するためには、Android Drawable Importer というAndroid Studio用プラグインが便利です。
※画像の縮小コピーにより生成しているため、本来は、事前にデザイナさんに用意してもらえるように依頼しておくことかが望ましいかと思います。
Android Drawable Importer
リンクと機能
Android Drawable Importer - IntelliJ IDEs Plugin | Marketplace
This plugin consists of three main features. You can access them by a right-click anywhere, but not on a file, inside an...
- AndroidIcons and Material Icons Drawable Import
- Batch Drawable Import
- Multisource-Drawable
今回は、2番目の機能の話です。
導入方法
Android StudioのSetting -> Pluginsから「Android Drawable Importer」を検索して、インストールできます。
上のリンクからGetすることでも可能です。
コメント