有了 Icon
可組合項,即可在根據 Material Design 指南建構的螢幕上輕鬆繪製單一顏色圖示。如要使用 Icon
,請納入 Compose Material 程式庫 (或 Compose Material 3 程式庫)。
舉例來說,如要以 Material Design 預設值載入向量可繪項目,您可以使用 Icon
可組合項,如下所示:
Icon( painter = painterResource(R.drawable.baseline_directions_bus_24), contentDescription = stringResource(id = R.string.bus_content_description) )
根據預設,Icon
可組合項會標記 LocalContentColor.current
,且大小為 24.dp
。另外,它也會提供 tint
顏色參數 (運用與圖片色調一節所述的色調相同的機制)。Icon
可組合項適用於小型圖示元素。您應使用 Image
可組合項提供更多自訂選項。
Material Design 圖示媒體庫也包含一組預先定義的 Icons
,可在 Compose 中使用,無須手動匯入 SVG。如要繪製購物車圖示的圓形版本:
Icon( Icons.Rounded.ShoppingCart, contentDescription = stringResource(id = R.string.shopping_cart_content_desc) )
值得注意的是,您不需要使用 Icon
在螢幕上算繪 VectorDrawable
,而 Icon
實際上則使用 Modifier.paint(painterResource(R.drawable.ic_bus_stop)
) 在螢幕上繪製 Icon
。如要進一步瞭解所有可用圖示,請參閱圖示說明文件。
為您推薦
- 注意:系統會在 JavaScript 關閉時顯示連結文字
- Compose 中的資源
- Compose 中的無障礙功能
- 載入圖片 {:#loading-images}