使用配置限定符
Android 支援多種配置限定符,允許你根據當前裝置螢幕的特徵控制系統如何選擇備用資源。配置限定符是一個字串,你可以將其附加到 Android 專案中的資源目錄,並指定其內部資源的設計配置。
要使用配置限定符:
- 在專案的 res /目錄中建立一個新目錄,並使用以下格式命名:
<resources_name>-<qualifier>
。<resources_name>
是標準資源名稱(例如 drawable 或 layout)。 <qualifier>
是一個配置限定符,指定要使用這些資源的螢幕配置(例如 hdpi 或 xlarge)。
例如,以下應用程式資源目錄為不同的螢幕大小和不同的 drawable 提供不同的佈局設計。將 mipmap/
資料夾用於啟動器圖示。
res/layout/my_layout.xml // layout for normal screen size ("default")
res/layout-large/my_layout.xml // layout for large screen size
res/layout-xlarge/my_layout.xml // layout for extra-large screen size
res/layout-xlarge-land/my_layout.xml // layout for extra-large in landscape orientation
res/drawable-mdpi/graphic.png // bitmap for medium-density
res/drawable-hdpi/graphic.png // bitmap for high-density
res/drawable-xhdpi/graphic.png // bitmap for extra-high-density
res/drawable-xxhdpi/graphic.png // bitmap for extra-extra-high-density
res/mipmap-mdpi/my_icon.png // launcher icon for medium-density
res/mipmap-hdpi/my_icon.png // launcher icon for high-density
res/mipmap-xhdpi/my_icon.png // launcher icon for extra-high-density
res/mipmap-xxhdpi/my_icon.png // launcher icon for extra-extra-high-density
res/mipmap-xxxhdpi/my_icon.png // launcher icon for extra-extra-extra-high-density