android:background设置蓝色
时间: 2024-09-28 07:14:50 浏览: 38
android_颜色宝典
在Android中,`android:background` 属性用于设置视图的背景颜色。如果你想要设置成纯蓝色,你可以直接使用颜色值或者是十六进制的颜色代码。例如,如果你使用颜色资源ID:
```xml
<view
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/colorPrimaryDark" />
```
这里假设你有一个名为 `colorPrimaryDark` 的蓝色主题色定义在 `colors.xml` 文件中。
如果你想使用十六进制颜色代码,可以这样写:
```xml
<view
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0000FF" />
```
这里的 `#0000FF` 对应于纯蓝色(RGB:0, 0, 255)。
阅读全文