res中drawable与values的用法
2018-02-25 本文已影响66人
Jowney
Drawable文件夹
1.在drawable文件夹中新建xml文件,该xml文件也可以被当做drawable使用。
xml文件写好以后,就可以直接用了
values文件夹
(先看看该文件夹下面都有啥)里面可以定义数组,颜色,字符串,主题风格
下图是在values中新建xml的方法
各个xml的写法如下:
- 数组
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="books">
<item>手动阀</item>
<item>胜多负少</item>
<item>范德萨</item>
<item>额外的</item>
<item>浮点数</item>
<item>官方网</item>
<item>官方网</item>
<item>官方网</item>
<item>手动阀</item>
<item>胜多负少</item>
<item>范德萨</item>
<item>额外的</item>
<item>浮点数</item>
<item>官方网</item>
<item>官方网</item>
<item>官方网</item>
</string-array>
</resources>
- 颜色
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
</resources>
- 字符串
<resources>
<string name="app_name">AdapterDemo</string>
</resources>
- 主题风格
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>