码迷,mamicode.com
首页 > 其他好文 > 详细

第一行代码第一章

时间:2015-03-03 11:58:58      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

1.android逻辑和视图分离

在布局文件中编写界面,在activity中引入。比如

activity中的onCreate()的setContentView()

protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       Log.d(TAG, "onCreate(bundle) called");
       setContentView(R.layout.activity_main);
       }

2.android一般把字符串定义在res/values/strings.xml中,然后可以在布局文件中引用。

首先,我们看看strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">HelloWorld</string>
    <string name="edit_message">here shows questions</string>
    <string name="action_settings">Settings</string>
    <string name="correct">correct!</string>
    <string name="title_activity_display_messgae">DisplayMessgaeActivity</string>
    <string name="hello_world">Hello world!</string>
    <string name="incorrect">incorrect!</string>
    <string name="correct_toast">your answer is Correct!</string>
    <string name="incorrect_toast">your answer is not Correct!</string>
    <string name="next_question">next question</string>
    <string name="question_zhoujie">zhoujie\‘s age is 22</string>
    <string name="question_zhangwei">zhangwei\‘s age is 24</string>
    <string name="question_majian">majian\‘s age is 26</string>
    <string name="last_question">last question</string>
    <string name="action_search">search</string>
</resources>
这些string在这里具体写,在布局文件中引用就可以了。
相当于在那边写一个名字,具体使用的时候根据名字找到真身
3.使用strings中的字符串有两种方法
在代码中:
R.string.edit_message

在xml中
@string/edit_message

4.android的日志工具类 Log(androdi.util.Log)
Log.v()-----verbose   日志安全级别最低的
Log.d()-----打印一些调试信息 和debug的级别对应
Log.i()-----打印一些重要数据 ,对应级别为info,比debug高一级
Log.w()----打印警告信息,对应级别为warn
Log.e()----打印错误信息
为什么不使用system.out.print()?
因为日志打印不能控制,打印时间无法确定,不能添加过滤器,日志没有级别区分。
 

 

第一行代码第一章

标签:

原文地址:http://my.oschina.net/u/2275839/blog/381744

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!