Activity的生命周期
Fragment生命周期
android nine-patch图片编译失败
边缘黑线必须连续
限定符
具体用法:
比如为layout文件夹生成large版本,只需在同目录下创建layout-large文件夹即可,注意是'-'而不是'_'
View相关类关系
View的绘制流程
自定义view需要重写的函数
public mView1(Context context) public mView1(Context context, AttributeSet attrs) public mView1(Context context, AttributeSet attrs, int defStyleAttr)在此基础上可以加上
protected void onDraw(Canvas canvas) public boolean onTouchEvent(MotionEvent event)
自定义view中onDraw未被调用:
setWillNotDraw(false)//放在mView1的构造函数中