随记

作者: HenryM | 来源:发表于2018-02-26 17:51 被阅读6次

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 申明
<ListView
android:id = "@android:id/list"
xxxx
/ListView>

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

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

6、<activity android:configChanges="orientation|screenSize|keyboardHidden"/>
告诉系统忽略掉横竖屏切换|屏幕大小变化|键盘隐藏的时候对生命周期的影响

7、<activity android:screenOrientation="portrait" />
设置页面的方向

相关文章

网友评论

      本文标题:随记

      本文链接:https://www.haomeiwen.com/subject/gjuksxtx.html