Android(OPhone) 学习笔记 - HelloWorld资源

来源:互联网 发布:外贸原单女装淘宝店 编辑:程序博客网 时间:2024/06/04 19:07
二、资源
在AndroidManifest.xml文件中,多次用到资源:
<application android:icon="@drawable/icon" android:label="@string/app_name">

在工程的res文件夹下,可以看到所提供调用的资源文件


icon即为在桌面上显示的程序图标。

这是strings文件的内容,提供了若干静态字符数据,可以被调用:


这是main文件的内容,指出该程序框架具备的主要内容:


原创粉丝点击