随记

1、
R.layout 从自定义资源中获取 R.layout.activity_main
android.R.layout 从系统模板中获取 android.R.layout.simple_list_item_1

2、拼接字符串,字符串占位符是 s%
==例: = String.format("姓名: %s","呵呵");

3、继承自ListActivity的activity如果要重新写listView,必须有以下 id 申明
android:id = "@android:id/list"
xxxx
/ListView>

4、资源解释器,可通过资源id获取到对象
LayoutInflater.from(context).inflate(resId,null)

5、布局层次的优化
include
merge
ViewStub

6、
告诉系统忽略掉横竖屏切换|屏幕大小变化|键盘隐藏的时候对生命周期的影响

7、
设置页面的方向

你可能感兴趣的:(随记)